Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flbulgarelli/elixir-playground


https://github.com/flbulgarelli/elixir-playground

Last synced: 17 days ago
JSON representation

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/