Letter | Word |
---|---|
A | Azathoth |
B | B’gnu-Thun |
C | Cthulhu |
D | D’endrrah |
E | Ei'lor |
F | Fhtagn |
G | Gi-Hoveg |
H | Hastur |
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
def comp(*gs) | |
id = -> x { x } | |
gs.inject(id) do |f,g| | |
-> x do | |
f.to_proc.call g.to_proc.call x | |
end | |
end | |
end | |
times_2 = -> x { x * 2 } |
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
let f x = | |
let a = | |
let c = 2 | |
let d = 3 | |
c + d*x | |
a + a | |
printfn "%d" (f 1) |
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
<html> | |
<head> | |
<style type="text/css"> | |
body { | |
width: 966px; | |
margin: auto; | |
background-color: gray; | |
} | |
.button-section { |
I hereby claim:
- I am qxjit on github.
- I am qxjit (https://keybase.io/qxjit) on keybase.
- I have a public key ASCALGoHUAO-MjrvhbXp6a4UHaKnvz1x62r6Z70FYIh6RAo
To claim this, I am signing this object:
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 RelationalMapExample where | |
import qualified Data.Int as Int | |
import qualified Data.Text as Text | |
import qualified Database.Orville as O | |
data Update key = Update | |
{ updateId :: key | |
, updateLocation :: Text.Text |
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
{- | |
Goal: Turn this bar into a liquor stock market | |
## Add Feature | |
- Get prices from the a market | |
- define the market | |
- pass it through everywhere | |
- Adjust the market based on orders |
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
{- | |
Goal: | |
- Recover from OverpricedDrinkErrors and continue charging for drinks | |
- Simulate a NetworkError | |
- Use finally to ensure the CreditCardAPIConnection is closed in the event | |
of an error | |
-} | |
module StockLiquorT 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
Version 2.9.1, Git revision 409d56031b4240221d656db09b2ba476fe6bb5b1 x86_64 hpack-0.35.0 | |
2022-12-15 11:06:14.483184: [debug] Checking for project config at: /home/qxjit/work/heb/stack-bug-test/stack.yaml | |
2022-12-15 11:06:14.483328: [debug] Loading project config file stack.yaml | |
2022-12-15 11:06:14.486134: [debug] (SQL) SELECT COUNT(*) FROM "last_performed" WHERE ("action"=?) AND ("timestamp">=?); [PersistInt64 1,PersistUTCTime 2022-12-14 17:06:14.486109085 UTC] | |
2022-12-15 11:06:14.486406: [debug] Using package location completions from a lock file | |
2022-12-15 11:06:14.487679: [debug] Loaded snapshot from Pantry database. | |
2022-12-15 11:06:14.644524: [debug] Running hpack on /home/qxjit/work/heb/stack-bug-test/package.yaml | |
2022-12-15 11:06:14.646648: [debug] hpack output unchanged in /home/qxjit/work/heb/stack-bug-test/stack-bug-test.cabal | |
2022-12-15 11:06:14.646781: [debug] Prefetching git repos: [] | |
2022-12-15 11:06:14.646803: [debug] [] |
OlderNewer