learnyouahaskell.github.io
learnyouahaskell.github.io copied to clipboard
A community version of the renowned "Learn You a Haskell" (LYAH) tutorials collection!
The `syntax-in-functions` page includes a BMI example that may benefit from being rewritten. The two options I'm aware of would be: * Keeping using BMI as the example, but change...
[Chapter 3](https://learnyouahaskell.github.io/types-and-typeclasses.html#typeclasses-101) has an example that `read "4"` produces an "ambiguous type variable" error. However, this is not the case anymore, since GHCi disables the [`MonomorphismRestriction`](https://downloads.haskell.org/ghc/latest/docs/html/users_guide/exts/monomorphism.html#extension-NoMonomorphismRestriction), it now throws a...
I would like all of the images anti-aliased with transparency so that they look good on a dark background. I would use those for https://github.com/jamesdbrock/learn-you-a-haskell-notebook
*Some* HTML files had *some* DOS line endings (CRLF instead of LF). I used - `dos2unix docs/*.html` to convert line endings - `sed -i 's/[ \t]*$//' docs/*.html` to remove trailing...
The `style`/`reset` css files in `docs` and in `docs/assets/css` were the same. As most files reference the css files in `docs`, I removed the other ones.
Some images seem to be included in `docs`, but many are still linked to `amazonaws.com`. I think it would be a good idea to include the complete artwork in the...
This is awesome, thank you for starting this project. I know it's early, but is there any chance for an EPUB version that I can put on my e-reader?
Thanks for all your effort in this important project! I think it would be great to have the book‘s content as markdown files instead of HTML files: **Pros**: 1. It...
**Describe the bug** The layout is too narrow on mobile. - The vertical colored bands could be removed - links at the bottom of the page are too small **To...
This is a pain point that I still remember from when I first learned Haskell using Learn You a Haskell probably almost 5 years ago. ## Is your content edit...