haskellguide / haskellguide-study-plan

A complete functional programming study plan to become a haskell engineer.

Home Page:https://haskellguide.com/learn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Haskell Study Guide

What is it?

This is a multi-week study plan for going from web developer (self-taught, no experience with functional programming) to a software developer that is proficient in haskell.

Table of Contents

Why use it?

"list=refl functor=lift a function into a context, eg list applicative=same but the function can have any number of args monad=functor but you're allowed to squish it when nested. Use it to chain exprs with functor results comonad=you don't need it traversable=the FP cheat code"

How to use it

How to use it

Everything below is an outline, and you should tackle the items in order from top to bottom.

I'm using Github's special markdown flavor, including tasks lists to check progress.

Create a new branch so you can check items like this, just put an x in the brackets: [x]

Fork a branch and follow the commands below

git checkout -b progress

git remote add jwasham https://github.com/haskellguide/haskell-study-guide

git fetch --all

Mark all boxes with X after you completed your changes

git add .

git commit -m "Marked x"

git rebase jwasham/master

git push --force

More about Github-flavored markdown

Don't feel you aren't smart enough

What you won't see covered

These are prevalent technologies but not part of this study plan:

  • SQL
  • Javascript
  • HTML, CSS, and other front-end technologies

The Daily Plan

Some subjects take one day, and some will take multiple days. Some are just learning with nothing to implement.

Prerequisite Knowledge

Prerequisite Knowledge
  • Learn C
    • C is everywhere. You'll see examples in books, lectures, videos, everywhere while you're studying.
    • C Programming Language, Vol 2
      • This is a short book, but it will give you a great handle on the C language and if you practice it a little you'll quickly get proficient. Understanding C helps you understand how programs and memory work.
      • answers to questions

LICENSE

CC-BY-SA-4.0

learning modules

excercises

  • acronym
  • accumulate
  • all-your-base
  • allergies
  • alphametics
  • anagram
  • armstrong-numbers
  • atbash-cipher
  • bank-account
  • binary-search-tree
  • beer-song
  • bob
  • binary
  • bracket-push
  • bowling
  • clock
  • change
  • connect
  • complex-numbers
  • collatz-conjecture
  • crypto-square
  • custom-set
  • difference-of-squares
  • diamond
  • dominoes
  • dnd-character
  • food-chain
  • etl
  • gigasecond
  • forth
  • grade-school
  • go-counting
  • hamming
  • grains
  • hexadecimal
  • hello-world
  • isbn-verifier
  • house
  • largest-series-product
  • kindergarten-garden
  • isogram
  • leap
  • linked-list
  • lens-person
  • matrix
  • luhn
  • list-ops
  • minesweeper
  • meetup
  • nucleotide-count
  • nth-prime
  • octal
  • ocr-numbers
  • pangram
  • palindrome-products
  • perfect-numbers
  • pascals-triangle
  • parallel-letter-frequency
  • pig-latin
  • phone-number
  • pov
  • poker
  • proverb
  • protein-translation
  • prime-factors
  • rail-fence-cipher
  • queen-attack
  • pythagorean-triplet
  • raindrops
  • rna-transcription
  • robot-name
  • robot-simulator
  • roman-numerals
  • rotational-cipher
  • run-length-encoding
  • saddle-points
  • say
  • scrabble-score
  • secret-handshake
  • sgf-parsing
  • series
  • sieve
  • simple-linked-list
  • simple-cipher
  • spiral-matrix
  • space-age
  • sublist
  • strain
  • triangle
  • transpose
  • sum-of-multiples
  • twelve-days
  • trinary
  • wordy
  • word-count
  • zipper
  • zebra-puzzle

applications

misc

foundational papers

other study plans

language extensions

papers

About

A complete functional programming study plan to become a haskell engineer.

https://haskellguide.com/learn

License:Other