Erlang
- 29 juillet 2021
Stuff Goes Bad: Erlang in Anger
This book intends to be a little guide about how to be the Erlang medic in a time of war. It is first and foremost a collection of tips and tricks to help understand where failures come from, and a dictionary of different code snippets and practices that helped developers debug production systems that were built in Erlang.
- 22 juin 2021 Mnesia and CAP. We start out with the TL;DR treatise… | by Jesper L. Andersen | Medium
- 14 juin 2021
Joe Armstrong at MostlyErlang - Side Notes
great quotes from Joe Armstrong
- 11 mars 2021 🐍 How we use Python within Elixir | by Martin Cabrera Diaubalick | Stuart Engineering | Mar, 2021 | Medium
- 11 février 2021
Elixir: Practical Concurrency Cookbook | Functional Works
In this post, my intention is to highlight some common scenarios where we can leverage Erlang’s concurrency model as well as Elixir’s abstractions to build better, faster and more secure software. Think of it like… A cookbook.
- 30 juin 2014
Learn You Some Erlang for great good!
Hey there! This is Learn You Some Erlang for great good! This book is for you if you’ve got some programming experience and if you’re not too familiar with functional programming. It can still be useful if you’re too good for that, as we progressively go into more and more advanced topics.
The book started as a free online guide, and you can still read it that way. If you prefer the soft touch of paper, the delicious smell of a real book, the possibility to physically hug a document, or just want to boast by padding your bookcase, you can buy a few copies too (and e-books are also available).
- 28 novembre 2012 exmpp - Erlang XMPP Library
- 7 avril 2011
{{ mustache }}
Available in Ruby, JavaScript, Python, Erlang, PHP, Perl, Objective-C, Java, .NET, Android, C++, Go, Lua, ooc, ActionScript, ColdFusion, Scala, Clojure, Fantom, CoffeeScript, D, and for node.js.
Works great with TextMate, Vim, Emacs, and Coda.
- 16 décembre 2010
Reia Programming Language
Reia is a Ruby-like scripting language for the Erlang virtual machine. Reia brings you the best of both worlds between Ruby’s friendly syntax, reflection, metaprogramming, and the amazing power of blocks, and Erlang’s immense abilities for concurrency, distribution, hot code swapping, and fault tolerance.
- 16 mars 2010 Erlang Community - ErlangParis - Trapexit
- 2 juillet 2009 erls3 - Google Code
- 2 juillet 2009
osmos - Google Code
Osmos provides on-disk ordered key-value tables for Erlang, based on a sort-merge machine with user-defined merging semantics. This allows a very high volume of updates to be handled efficiently while still supporting a variety of useful operations with transactional safety, e.g., adding to a counter, taking the union of sets, or simply replacing a record.
Osmos is ideal for situations where updates are much more frequent than queries, for example, collecting statistics for reporting, and periodically generating reports.
- 19 juin 2009
flatula - Google Code
flatula is a simple write-once database for Erlang that provides an easy way to remember a piece of data, then look it up later using a compact identifier. See FlatulaHowTo for a brief introduction and tutorial.
- 3 juin 2009
mochiweb - Google Code
MochiWeb is an Erlang library for building lightweight HTTP servers.
- 3 juin 2009
scalaris - Google Code
Scalaris is a scalable, transactional, distributed key-value store. It can be used for building scalable Web 2.0 services.
- 19 mai 2009
mojombo's erlectricity at master - GitHub
Erlectricity allows a Ruby program to receive and respond to Erlang messages sent over the Erlang binary protocol.
- 19 mai 2009 Ruby Polyglot: Talking with Erlang - igvita.com
- 20 mars 2009
plists - Google Code
plists is a drop-in replacement for the Erlang module lists, making most list operations parallel. It can operate on each element in parallel, for IO-bound operations, on sublists in parallel, for taking advantage of multi-core machines with CPU-bound operations, and across erlang nodes, for parallizing inside a cluster. It handles errors and node failures. It can be configured, tuned, and tweaked to get optimal performance while minimizing overhead.
- 20 mars 2009
Pragmatic Programming Techniques: Exploring Erlang with Map/Reduce
Map/Reduce
- 20 mars 2009 Pragmatic Programming Techniques