This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name | Tab | Quantity | Price | Total | |
---|---|---|---|---|---|
Domination Scarab of Teachings | 4729053 | 34 | 10.67 | 362.78 | |
Reliquary Scarab of Vision | 4729053 | 2 | 164.25 | 328.5 | |
Breach Scarab | 4729053 | 74 | 3.56 | 263.44 | |
Horned Scarab of Awakening | 4729053 | 4 | 60 | 240 | |
Ambush Scarab of Containment | 4729053 | 4 | 59.73 | 238.92 | |
Harvest Scarab of Doubling | 4729053 | 27 | 8.3 | 224.10000000000002 | |
Horned Scarab of Glittering | 4729053 | 5 | 40 | 200 | |
Essence Scarab of Calcification | 4729053 | 5 | 40 | 200 | |
Breach Scarab of Snares | 4729053 | 24 | 8 | 192 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module DatasheetParser | |
( parseDatasheet | |
, Datasheet (..) | |
, Table (..) | |
, Row (..) | |
, Cell (..) | |
, Column (columnName) | |
, ColumnType | |
) where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module DatasheetParser | |
( parseDatasheet | |
, Datasheet (..) | |
, Table (..) | |
, Row (..) | |
, Cell (..) | |
, Column (columnName) | |
, ColumnType | |
) where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Part of SWI-Prolog | |
Author: Jan Wielemaker | |
E-mail: J.Wielemaker@vu.nl | |
WWW: http://www.swi-prolog.org | |
Copyright (c) 2012-2018, VU University Amsterdam | |
CWI, Amsterdam | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env swipl | |
:- use_module(library(shell)). | |
:- use_module(library(option)). | |
:- use_module(library(crypto)). | |
:- use_module(library(random)). | |
:- use_module(library(http/http_host)). | |
:- use_module(library(http/http_error)). | |
:- use_module(library(http/html_write)). | |
:- use_module(library(http/http_files)). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
db: | |
image: postgres | |
restart: always | |
environment: | |
POSTGRES_PASSWORD: 12345 | |
ports: | |
- 5432:5432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAj0MkuRJWItL7k8p1Rwfdd6wG+BVun8/YH1niJcRXUu [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCkoaXtUpjRkzvt55lp/fXRCTssk5JgjHdk5nl1l1vwCyAt6pno6FbdOy5Ov+a25/BRdNPMtyIen1vGPAcMiUsXV5PsJXdyN7cstY3svMCfXmqXTyogHOELZGnrnA9ybZEBcP+QUhFqerkiHIih7nWY0JVfW5F0stH6s5Jenwd9FVBxtb2kPqM48zvUE15cdTm8LPQuiNiRr9wsII11mQObl/2hvzdx3kbDTFCOXBugZLUkkrXF5+Tb+dZGabs5qGVi7gvLKwpouzvlB3JcMVovxYkJVmEeIv5tpRHozvB5jxxOmzcMDgK341ezZusXVCCZmzNkoUjv89yL6aPXqIe+7Itf84yS56T9EkHjS94sx9nI+Z/Lt5/Qv/ymRrx18vxvOAe7Z4Pa2T+JgHJ+UwXlgiywTCdR/XVGupu/2r39yAiVTqP1ii3pCI1C5fssUevmhMEa8gs6bGSXetzXzf07glFG6BJmkTDFRPkycbxf5h9iIz42AlKq7fw9IF/RCzndrZZC0DYMpwLaRY42eFBsD5q23WZAba1fRVNYWwT59PTo5bOEQikvGmuRDT99cW0PppQrhnS5rB8f7vSiWedkkE2biyhgz3k3FPd+58NLyMHSPt0cgVg2GgAz6hHRqoY18MFlytybt/iHEExlXuENkiXKRQ0tp1TuY2KFCYz8ow== paul@hentai |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
module Main where | |
import Control.Monad.IO.Class | |
import qualified Control.Monad.Random as R | |
import Data.Aeson | |
import qualified Data.ByteString.Lazy.UTF8 as BS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# uguush - command-line uploader for uguu.se and others | |
# | |
## CONFIGURATION | |
# colors | |
c0="$(tput sgr0)" | |
c1="$(tput setaf 1)" |
NewerOlder