Haskell: Difference between revisions
imported>Rmarko (more links) |
imported>Rmarko (moar) |
||
Line 28: | Line 28: | ||
* https://hackage.haskell.org/package/pipes-4.2.0/docs/Pipes-Tutorial.html | * https://hackage.haskell.org/package/pipes-4.2.0/docs/Pipes-Tutorial.html | ||
* http://www.yesodweb.com/blog/2014/03/network-conduit-async | |||
==== Shell programming ==== | ==== Shell programming ==== | ||
* https://hackage.haskell.org/package/turtle-1.2.8/docs/Turtle-Tutorial.html | * https://hackage.haskell.org/package/turtle-1.2.8/docs/Turtle-Tutorial.html | ||
==== Networking === | |||
* http://jacob.stanley.io/2010/08/12/ip-addresses-and-mac-addresses-in-haskell/ | |||
Revision as of 19:02, 9 November 2016
Resources for learning Haskell
General
- http://book.realworldhaskell.org/
- http://learnyouahaskell.com/
- http://dev.stephendiehl.com/hask/
- https://github.com/NICTA/course
- https://www.schoolofhaskell.com/
Topics
Parsing
- http://book.realworldhaskell.org/read/using-parsec.html
- https://www.schoolofhaskell.com/school/starting-with-haskell/libraries-and-frameworks/text-manipulation/attoparsec
- https://hbtvl.wordpress.com/2015/11/19/efficient-parsing-of-large-text-files-part-1/
Databases
APIs
Streaming
- https://hackage.haskell.org/package/pipes-4.2.0/docs/Pipes-Tutorial.html
- http://www.yesodweb.com/blog/2014/03/network-conduit-async
Shell programming
= Networking