..........GG......
..........GG......
......NNNNPGG.....
......NNNNCGG.....
......NNNNCGG.....
......NNNNPGG.....
..........GG......
..........GG......
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
601.2g. If the total cost includes a mana payment, the player then has a | |
chance to activate mana abilities (see rule 605, "Mana Abilities"). Mana | |
abilities must be activated before costs are paid. | |
601.2h. The player pays the total cost in any order. Partial payments | |
are not allowed. Unpayable costs can't be paid. | |
605.3. Activating an activated mana ability follows the rules for | |
activating any other activated ability (see rule 602.2), with the | |
following exceptions: |
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
@online{certitrans, | |
author = "Certificate Transparency Team", | |
title = "How Log Proofs Work", | |
url = "https://www.certificate-transparency.org/log-proofs-work", | |
keywords = "security,authenticated data structures,tls" | |
} | |
@paper{algorand, | |
author = "Silvio Micali", | |
title = "ALGORAND The Efficient Public Ledger", | |
keywords = "cryptocurrency,non-pow,decentralized,distributed", |
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
resolver: lts-3.19 | |
packages: | |
- '.' | |
- scotty-hastache | |
extra-deps: [] | |
flags: {} |
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
import qualified System.IO.Strict as StrictIO | |
import qualified System.Directory as Dir | |
import qualified Data.Text as T | |
:set +m | |
:set prompt "\ESC[1;34m%s\n\ESC[0;34mλ> \ESC[m" | |
:set -XNoMonomorphismRestriction | |
:set -XRankNTypes | |
:set -XOverloadedStrings |
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
{ nixpkgs ? (import <nixpkgs> {}) }: | |
nixpkgs.stdenv.mkDerivation { | |
name = "aliester-shell"; | |
buildInputs = []; | |
shellHook = | |
'' | |
export ANYTHING=666 | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 |
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
---. ,-----, --, | |
/\\\\\ \OOO0\ /OO0\ | |
\/\\\\\ \OOO0\ /OOOO\ | |
\/\\\\\ \OOO0\ /OOOO/ | |
\/\\\\\ \OOO0\/OOOO/ | |
-------\/\\\\\--------- \OOOOOOOO/ | |
///////////////////////\\ \OOOOOO/ | |
/\\\\\\\\\\\\\\\\\\\\\\\\\\ \OOOO0\ | |
**************************** \00000\ |
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
data AttrNS = AttrNS { localName :: String | |
, value :: String | |
, legacyName :: String | |
, namespaceURI :: Nullable String | |
, prefix :: Nullable String | |
, legacySpecified :: Boolean } | |
-- | |
toAttrNS :: forall r. { localName :: String | |
, value :: String | |
, namespaceURI :: Nullable String |
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
fmapNullable :: forall a b. (a -> b) -> (Nullable a) -> (Nullable b) | |
fmapNullable f x = g f $ toMaybe x | |
where | |
g f Nothing = toNullable Nothing | |
g f (Just v) = toNullable $ Just (f v) |
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
d <- doc' | |
b <- body' | |
img <- ND.createElement "img" d | |
b1 <- N.appendChild (e2n img) (e2n b) |
NewerOlder