Haskell » History » Version 42
Grigoriy Volkov, 08/02/2019 02:15 PM
1 | 1 | Grigoriy Volkov | h1. Haskell |
---|---|---|---|
2 | |||
3 | 10 | Alexey Demakov | h2. Изучение |
4 | |||
5 | Денис Москвин. Функциональное программирование на языке Haskell. stepik.org, видеокурс |
||
6 | > "Часть 1.":https://stepik.org/course/75/syllabus |
||
7 | > "Часть 2.":https://stepik.org/course/693/syllabus |
||
8 | |||
9 | "О Haskell по-человечески":https://www.ohaskell.guide |
||
10 | "Learn You a Haskell for Great Good!":http://learnyouahaskell.com |
||
11 | "Real World Haskell by Bryan O'Sullivan, Don Stewart, and John Goerzen":http://book.realworldhaskell.org |
||
12 | |||
13 | "ru.haskell— сообщество русскоговорящих Haskell-разработчиков":https://ruhaskell.org |
||
14 | > "Полезные ссылки":https://ruhaskell.org/links.html |
||
15 | |||
16 | "ru.haskell wiki":https://github.com/ruHaskell/ruhaskell/wiki |
||
17 | > "Настройка редакторов для поддержки Haskell":https://github.com/ruHaskell/ruhaskell/wiki/%D0%9D%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0-%D1%80%D0%B5%D0%B4%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D0%BE%D0%B2-%D0%B4%D0%BB%D1%8F-%D0%BF%D0%BE%D0%B4%D0%B4%D0%B5%D1%80%D0%B6%D0%BA%D0%B8-Haskell |
||
18 | |||
19 | 4 | Grigoriy Volkov | "Haskell Cheatsheet":http://bxt.github.io/Ludus/haskell-cheatsheet/ |
20 | 7 | Grigoriy Volkov | "haskell-trainings":https://github.com/google/haskell-trainings/releases |
21 | 14 | Grigoriy Volkov | "Stack cookbook":https://guide.aelve.com/haskell/stack-cookbook-ai0adh03 |
22 | 42 | Grigoriy Volkov | "The Haskell Phrasebook":https://typeclasses.com/phrasebook |
23 | 4 | Grigoriy Volkov | |
24 | 40 | Alexey Demakov | h2. Best practices |
25 | |||
26 | * "Import modules properly":https://wiki.haskell.org/Import_modules_properly |
||
27 | |||
28 | 5 | Grigoriy Volkov | h2. snippets |
29 | |||
30 | * [[HaskellMaybeChecks]] |
||
31 | * [[HaskellTypeLevelMachine]] |
||
32 | |||
33 | 9 | Grigoriy Volkov | h2. ghci debugging |
34 | |||
35 | <pre> |
||
36 | :set -fbreak-on-error -fbreak-on-exception |
||
37 | :trace machineMain |
||
38 | :force _exception |
||
39 | :hist |
||
40 | :back |
||
41 | </pre> |
||
42 | |||
43 | 1 | Grigoriy Volkov | h2. libs |
44 | |||
45 | 16 | Grigoriy Volkov | * "co-log":https://kowainik.github.io/posts/2018-09-25-co-log |
46 | 12 | Grigoriy Volkov | * "named":https://github.com/monadfix/named arguments |
47 | 1 | Grigoriy Volkov | * "concat":https://github.com/conal/concat ("z3cat":https://github.com/jwiegley/z3cat/blob/master/test/Main.hs || "smt example":https://github.com/conal/concat/blob/master/examples/src/ConCat/SMT.hs) — *"Compiling to categories":http://conal.net/papers/compiling-to-categories/* — compiler plugin for translating normal Haskell functions (on standard types) to SMT, etc. |
48 | * "SBV: SMT Based Verification":https://leventerkok.github.io/sbv/ — translates Haskell functions on custom symbolic types |
||
49 | * "refined":http://nikita-volkov.github.io/refined/ — refinement types <pre>type ProperFraction = Refined (And (Not (LessThan 0)) (Not (GreaterThan 1))) Double</pre> |
||
50 | * "hedgehog":https://github.com/hedgehogqa/haskell-hedgehog — random test gen (QuickCheck) |
||
51 | 13 | Grigoriy Volkov | * "dejafu":https://github.com/barrucadu/dejafu — concurrency testing |
52 | 2 | Grigoriy Volkov | * "GHC.Stack":https://hackage.haskell.org/package/base-4.10.0.0/docs/GHC-Stack.html — can get code position for DSL |
53 | * "Data.Sequence":http://hackage.haskell.org/package/containers-0.6.0.1/docs/Data-Sequence.html — list with fast append on both sides |
||
54 | 34 | Grigoriy Volkov | * "bound: Making de Bruijn Succ Less":https://hackage.haskell.org/package/bound — convenient combinators for working with "locally-nameless" terms. These can be useful when writing a type checker, evaluator, parser, or pretty printer for terms that contain binders like forall or lambda |
55 | 41 | Grigoriy Volkov | * "type-spec: type level testing eDSL":https://hackage.haskell.org/package/type-spec |
56 | * "should-not-typecheck":https://github.com/CRogers/should-not-typecheck |
||
57 | 34 | Grigoriy Volkov | * Constraints: |
58 | ** https://github.com/ekmett/constraints |
||
59 | ** https://github.com/mikeizbicki/ifcxt |
||
60 | ** https://github.com/rampion/constraint-unions |
||
61 | * HKD: |
||
62 | ** https://github.com/jcpetruzza/barbies |
||
63 | ** https://github.com/i-am-tom/higgledy |
||
64 | 1 | Grigoriy Volkov | ** https://hackage.haskell.org/package/rank2classes |
65 | 36 | Grigoriy Volkov | * *REVERSIBLE PARSING!!* |
66 | 35 | Grigoriy Volkov | ** https://hackage.haskell.org/package/syntax |
67 | ** https://hackage.haskell.org/package/binary |
||
68 | 3 | Grigoriy Volkov | |
69 | h2. exts |
||
70 | |||
71 | 16 | Grigoriy Volkov | * "Existential Quantification":https://ocharles.org.uk/guest-posts/2014-12-19-existential-quantification.html |
72 | 3 | Grigoriy Volkov | * "RebindableSyntax":https://ocharles.org.uk/guest-posts/2014-12-06-rebindable-syntax.html — overloading built-in operators / do notation |
73 | * "NullaryTypeClasses":https://ocharles.org.uk/posts/2014-12-10-nullary-type-classes.html — global implementation of one thing |
||
74 | 5 | Grigoriy Volkov | * "DataKinds":http://ponies.io/posts/2014-07-30-typelits.html , TypeFamilies (+ GHC.TypeLits) — type-level annotations |
75 | ** "Basic Type Level Programming in Haskell":https://www.parsonsmatt.org/2017/04/26/basic_type_level_programming_in_haskell.html |
||
76 | ** "Parsing type-level strings in Haskell":https://kcsongor.github.io/symbol-parsing-haskell/ |
||
77 | ** "Servant, Type Families, and Type-level Everything":https://arow.info/blog/posts/2015-07-10-servant-intro.html |
||
78 | ** "Haskell Type Names as Strings":http://www.mchaver.com/posts/2017-12-12-type-name-to-string.html |
||
79 | 8 | Grigoriy Volkov | |
80 | h2. other |
||
81 | |||
82 | 34 | Grigoriy Volkov | * https://github.com/cohomolo-gy/haskell-resources |
83 | 11 | Grigoriy Volkov | * "ST Monad":https://medium.com/permutive/having-your-cake-and-eating-it-9f462bf3f908 for imperative algorithms |
84 | 15 | Grigoriy Volkov | * "A Rosetta Stone for Haskell Abstractions":http://reduction.io/essays/rosetta-haskell.html Applicative, StateT, Lens |
85 | 18 | Grigoriy Volkov | * "Is it possible to place inequality constraints on haskell type variables?":https://stackoverflow.com/questions/6939043/is-it-possible-to-place-inequality-constraints-on-haskell-type-variables |
86 | 19 | Grigoriy Volkov | * "Practical uses of the Tardis monad?: 'build a packet ... where the fixed-length lengths and offsets of some variable length data are sent out before the actual data themselves'":https://www.reddit.com/r/haskell/comments/b5g70h/practical_uses_of_the_tardis_monad/ejdogtt/ |
87 | 20 | Grigoriy Volkov | * "Comonadic builders":https://chshersh.github.io/posts/2019-03-25-comonadic-builders |
88 | 38 | Alexey Demakov | * Tagless Final: |
89 | 39 | Alexey Demakov | ** "Introduction to Tagless Final":https://serokell.io/blog/tagless-final |
90 | 38 | Alexey Demakov | ** "Tagless Final Encoding in Haskell":https://jproyo.github.io/posts/2019-03-17-tagless-final-haskell.html |
91 | ** "Typed final (aka, ``tagless-final'') style":http://okmij.org/ftp/tagless-final/ is a general method of embedding domain-specific languages (DSL) |
||
92 | 33 | Grigoriy Volkov | * "Control.Monad.Trans.Cont":https://hackage.haskell.org/package/transformers-0.5.2.0/docs/Control-Monad-Trans-Cont.html / "CC-delcont":https://wiki.haskell.org/Library/CC-delcont / "Delimited continuations in Haskell":http://okmij.org/ftp/continuations/Haskell-tutorial.pdf / "A Monadic Framework for DelimitedContinuations":https://www.cs.indiana.edu/~dyb/pubs/monadicDC.pdf |
93 | 1 | Grigoriy Volkov | * "Haskell's continuation monad":https://github.com/quchen/articles/blob/master/cont_monad.md |
94 | 33 | Grigoriy Volkov | * "GHC's Specializer: Much More Than You Wanted to Know":https://reasonablypolymorphic.com/blog/specialization/ |
95 | 1 | Grigoriy Volkov | * "Type Classes and Constraints":https://gist.github.com/Icelandjack/5afdaa32f41adf3204ef9025d9da2a70 |
96 | * "Overloading lambda":http://conal.net/blog/posts/overloading-lambda |
||
97 | * TypeFamilies: |
||
98 | 27 | Grigoriy Volkov | ** "Associated Types and Haskell":http://amixtureofmusings.com/2016/05/19/associated-types-and-haskell/ |
99 | ** "Partially applied type families GHC Proposal":https://github.com/ghc-proposals/ghc-proposals/pull/52 |
||
100 | 33 | Grigoriy Volkov | ** "On the arity of type families":https://ryanglscott.github.io/2019/05/26/on-the-arity-of-type-families/ + "Higher-order Type-level Programming in Haskell":https://www.microsoft.com/en-us/research/uploads/prod/2019/03/ho-haskell-5c8bb4918a4de.pdf |
101 | 29 | Grigoriy Volkov | ** "Type Class Instances for Type-Level Lambdas in Haskell":ftp://ftp-sop.inria.fr/indes/TFP15/TFP2015_submission_19.pdf |
102 | 30 | Grigoriy Volkov | ** "Defunctionalization for Haskell Type Families":https://free.cofree.io/2019/01/08/defunctionalization/ |
103 | 33 | Grigoriy Volkov | ** "Haskell with only one type family":https://blog.poisson.chat/posts/2018-08-06-one-type-family.html |
104 | * HKD: |
||
105 | 34 | Grigoriy Volkov | ** "Functor Functors":http://web.archive.org/web/20190501095522/https://www.benjamin.pizza/posts/2017-12-15-functor-functors.html |
106 | ** "Higher-Kinded Data":https://reasonablypolymorphic.com/blog/higher-kinded-data/ |
||
107 | ** "Deriving instances for higher-kinded data":https://stackoverflow.com/questions/49618667/deriving-instances-for-higher-kinded-data |