├── .gitignore ├── modeling_data_in_haskell ├── Makefile ├── hero.hs ├── modeling_data.md └── worksheets.tex ├── monad_transformers ├── Makefile └── transformers.md ├── moot ├── Makefile ├── book_of_monads.png ├── moot.md └── moot.pdf ├── newtype_type_safety ├── Makefile └── typesafety.md └── rank_n_types_talk ├── .gitignore ├── Makefile ├── examples.hs ├── exist.hs ├── muchnicer.png ├── painitself.png ├── rankn.md ├── rankn.pdf ├── ranks.hs └── tuple.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/.gitignore -------------------------------------------------------------------------------- /modeling_data_in_haskell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/modeling_data_in_haskell/Makefile -------------------------------------------------------------------------------- /modeling_data_in_haskell/hero.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/modeling_data_in_haskell/hero.hs -------------------------------------------------------------------------------- /modeling_data_in_haskell/modeling_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/modeling_data_in_haskell/modeling_data.md -------------------------------------------------------------------------------- /modeling_data_in_haskell/worksheets.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/modeling_data_in_haskell/worksheets.tex -------------------------------------------------------------------------------- /monad_transformers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/monad_transformers/Makefile -------------------------------------------------------------------------------- /monad_transformers/transformers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/monad_transformers/transformers.md -------------------------------------------------------------------------------- /moot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/moot/Makefile -------------------------------------------------------------------------------- /moot/book_of_monads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/moot/book_of_monads.png -------------------------------------------------------------------------------- /moot/moot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/moot/moot.md -------------------------------------------------------------------------------- /moot/moot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/moot/moot.pdf -------------------------------------------------------------------------------- /newtype_type_safety/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/newtype_type_safety/Makefile -------------------------------------------------------------------------------- /newtype_type_safety/typesafety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/newtype_type_safety/typesafety.md -------------------------------------------------------------------------------- /rank_n_types_talk/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /rank_n_types_talk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/Makefile -------------------------------------------------------------------------------- /rank_n_types_talk/examples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/examples.hs -------------------------------------------------------------------------------- /rank_n_types_talk/exist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/exist.hs -------------------------------------------------------------------------------- /rank_n_types_talk/muchnicer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/muchnicer.png -------------------------------------------------------------------------------- /rank_n_types_talk/painitself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/painitself.png -------------------------------------------------------------------------------- /rank_n_types_talk/rankn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/rankn.md -------------------------------------------------------------------------------- /rank_n_types_talk/rankn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/rankn.pdf -------------------------------------------------------------------------------- /rank_n_types_talk/ranks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/ranks.hs -------------------------------------------------------------------------------- /rank_n_types_talk/tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitemyapp/presentations/HEAD/rank_n_types_talk/tuple.hs --------------------------------------------------------------------------------