This file contains 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 Tuple a b = Tuple a b | |
snd :: Tuple a b -> b | |
snd = \tuple -> case tuple of Tuple _a b -> b | |
data List a = Cons a (List a) | Nil | |
foldr :: (a -> b -> b) -> b -> List a -> b | |
foldr = |
This file contains 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 | |
ExistentialQuantification, | |
MultiParamTypeClasses, | |
FunctionalDependencies, | |
FlexibleInstances, | |
TypeOperators, | |
RankNTypes | |
#-} | |
module ExistentialGhosts where |
This file contains 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 Tile = Empty Position | Wall Position | |
data Position = Position Double Double | |
tiles :: [Tile] | |
tiles = | |
[Wall (Position 0 0), Wall (Position 0 1), Wall (Position 0 2)] | |
tilesFiltered r = [tile | tile <- tiles, norm tile < r] | |
norm :: Tile -> Double |
This file contains 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 Tile = | |
Empty {position :: Position} | | |
Wall {position :: Position} | |
data Position = | |
Position | |
{ | |
x :: Double, | |
y :: Double | |
} |
This file contains 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 | |
FlexibleInstances, | |
MultiParamTypeClasses, | |
OverloadedLabels, | |
DuplicateRecordFields, | |
DataKinds, | |
UndecidableInstances, | |
TypeFamilies, | |
TemplateHaskell | |
#-} |
This file contains 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
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 2604:1380:4641:a100::1... | |
* TCP_NODELAY set | |
* Connected to www.haskell.org (2604:1380:4641:a100::1) port 443 (#0) | |
* ALPN, offering h2 | |
* ALPN, offering http/1.1 | |
* successfully set certificate verify locations: | |
* CAfile: /etc/ssl/cert.pem |
This file contains 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
// ==UserScript== | |
// @name htwk_english | |
// @match https://webcourses.htwk-leipzig.de/tt/index.php?* | |
// @require https://code.jquery.com/jquery-3.5.1.min.js | |
// @grant none | |
// ==/UserScript== | |
$("input[type='radio']").eq(0).trigger("focus"); | |
// https://api.jquery.com/on |
This file contains 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
"main" 4 | |
"condition" 16 | |
"alternative" 22 | |
"false" 28 | |
"true" 34 | |
"not" 40 | |
"negate" 47 | |
"|" 54 | |
"&" 64 | |
"+" 74 |
This file contains 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
main = | |
if condition | |
then 69 | |
else alternative; | |
condition = false; | |
alternative = 42;" |