1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-08-15 07:20:49 +03:00
Applied Functional Programming Course - Move from exercises to a working app!
Go to file
2020-02-05 11:26:59 +10:00
exe the bonnet is up and we're on bricks. Fix it. (#71) 2018-12-07 10:16:13 +10:00
files dbName: firstapp -> app_db.db 2018-11-29 14:06:03 +10:00
nix Expand versions, bump nixpkgs snapshot 2020-01-23 14:49:44 +10:00
src Uncomplete Level01 core 2020-02-05 07:59:27 +10:00
tests the bonnet is up and we're on bricks. Fix it. (#71) 2018-12-07 10:16:13 +10:00
.gitignore Add new line before app_db.db 2018-11-29 14:04:31 +10:00
.travis.yml Update travis GHC 8.6.2 -> 8.6.4 2019-03-10 17:24:34 +10:00
applied-fp-course.cabal Expand versions, bump nixpkgs snapshot 2020-01-23 14:49:44 +10:00
applied-fp-course.nix the bonnet is up and we're on bricks. Fix it. (#71) 2018-12-07 10:16:13 +10:00
cabal.project Disable documentation in cabal.project. 2019-03-01 09:31:41 +10:00
changelog.md Full Course Layout Change with a shuffle. (#54) 2018-05-08 09:02:51 +10:00
course-overlays.nix Update the pinned nixpkgs, upgrade pkgs. (#74) 2019-02-28 14:29:08 +10:00
default.nix Expand versions, bump nixpkgs snapshot 2020-01-23 14:49:44 +10:00
For_Facilitators.md Add document for facilitators 2019-09-18 13:34:10 +10:00
FUTURE_PLANS.md Issue Fixes & More feedback driven development 2018-01-22 11:40:11 +10:00
INSTRUCTOR_NOTES.md Updated instructor notes. 2018-05-09 13:51:39 +10:00
LICENCE Added LICENCE in accordance with CoC 2017-09-12 11:46:04 +10:00
README.md Fix monospace quoting 2020-01-23 14:46:52 +10:00
shell.nix Expand versions, bump nixpkgs snapshot 2020-01-23 14:49:44 +10:00
stack.yaml Bump stackage LTS version 2020-02-05 11:26:59 +10:00
stack.yaml.lock Bump stackage LTS version 2020-02-05 11:26:59 +10:00

Applied Functional Programming Course

Build Status

CSIRO's Data61 Logo

This is a new course, so there are going to be rough edges. We invite you to submit issues or pull requests if you find errors or have suggestions on how to improve it.

This course is designed to be run in a class room with instructors, but we would like to make it suitable for self-study as well. Although undertaking this course outside of the workshops will increase the difficulty somewhat, we do not discourage it and invite suggestions on how to make the course more approachable.

If you do attempt this on your own and find yourself completely lost, then you may come find us on IRC on Freenode in #qfpl or #fp-course.

You:

  • Have completed, or are capable of completing, the Data61 FP Course.
  • Have a few months self-study to your name.
  • Want to know how to build larger applications with statically typed FP.
  • Are willing to accept that a web application is a sufficient choice.
  • Can write the canonical function of type: Applicative f => [f a] -> f [a]

We:

  • Have constructed a sequence of goals of increasing difficulty.
  • Have provided a framework within which to apply these goals.
  • Have included relevant components of larger applications:
    • Package dependencies
    • Project configuration
    • Application testing & building
    • Encoding / Decoding messages (JSON & Binary)
    • Persistent storage integration
    • App state & configuration management
    • Error handling & reporting
  • Will utilise both type & test driven development techniques.
  • Will explain architectural and design trade-offs when appropriate.

Setup build tools:

Each level is a self-contained Haskell module, containing incomplete, or as yet undefined, data types and functions.

We recommend using a nix-shell, but it is not required.

Cabal

If you're using a version of Cabal that is >=2.0 (use cabal --version to find out), then you can use the new-* commands and you don't need a sandbox:

$ cd path/to/applied-fp-course
$ cabal new-configure --enable-tests
$ cabal new-build <levelN>-exe
$ $EDITOR src/<LevelN>/README.md

If you don't have a version of Cabal that is >=2.0 then we recommend using cabal sandboxes. They provide a contained Haskell environment for a given project. They're also easy to clean up and any installed packages won't conflict with any other sandboxed project you may be working on.

$ cd path/to/applied-fp-course
$ cabal sandbox init
$ cabal install --only-dependencies --enable-tests
$ cabal build
$ $EDITOR README.md

To delete a sandbox:

$ cd path/to/applied-fp-course
$ cabal sandbox delete

Nix

If you would like to use a Nix Shell:

$ cd path/to/applied-fp-course
$ nix-shell
$ cabal new-build <levelN>-exe
$ $EDITOR src/<LevelN>/README.md

Once that completes you will be in a nix-shell environment with all the tools required to work through the course.

Stack

Stack yaml configuration is provided and checked by our CI system for successful builds. However the authors do not use stack, so we cannot promise to be able to resolve stack related issues that may arise. Though we will do our best. :)

Please note...

These lessons are designed to be completed with an instructor as part of the Data61 Applied Functional Programming Course. You are of course welcome to clone the repository and give it a try, but you may find the tasks more difficult. If you have any questions we can be contacted in the Freenode #qfpl or #fp-course IRC channel. You can use the free WebChat client.

Subsequent lessons may contain spoilers, don't cheat yourself out of the experience!

There is a README.md file in each Level module folder that will provide instructions about what the goal is for that specific level.

  • Level 01 : Simple hello world web app.
  • Level 02 : Define our application spec with types!
  • Level 03 : Testing & tools
  • Level 04 : Database layer (sqlite-simple)
  • Level 05 : Better error handling through ExceptT
  • Level 06 : Add some flexible configuration
  • Level 07 : ReaderT & refactoring

-- In Development...

  • Level 08 : Lenses & "classy mtl" monad transformers

-- Maybe...

  • Level 09 : Add session controls (login, logout) and a protected route. So we can have something that resembles application state. For the purposes of modelling the state machine and implementing some property based tests.