Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flbulgarelli/elixir-playground
https://github.com/flbulgarelli/elixir-playground
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flbulgarelli/elixir-playground
- Owner: flbulgarelli
- Created: 2014-05-01T19:09:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-23T18:42:49.000Z (over 9 years ago)
- Last Synced: 2024-10-17T14:28:20.878Z (29 days ago)
- Language: Elixir
- Size: 248 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
elixir-playground
=================Random thoughts, samples and experiments while learning Elixir and Erlang
Pending things to test
=========================
* Macros
* Records
* Protocols (seem very Haskell-like but ok)
* Monitors & Supervisors
* throws, errors and exits
* HTTP interaction
* OTP
* gen_server
* gen_event
* gen_fsm
Proposed excersises
====================
* KV Store
* Extend the btree with balancing
* Games?
* Extend the events model
Documentation and Links
======================
* http://learnyousomeerlang.com/what-is-otp#the-basic-server
* http://www.erlang.org/doc/design_principles/gen_server_concepts.html
* http://www.erlang.org/doc/man/gen_server.html
* http://www.erlang.org/doc/reference_manual/processes.html#id82744
* http://marcelog.github.io/articles/erlang_link_vs_monitor_difference.html
* http://www.erlang.org/doc/getting_started/robustness.html
* http://www.erlang.org/doc/design_principles/sup_princ.html
* http://elixir-lang.org/docs/stable/GenServer.Behaviour.html
* http://learnyousomeerlang.com/designing-a-concurrent-application
* http://devintorr.es/blog/2013/06/11/elixir-its-not-about-syntax/