Main Page

From Erlang Community

Your Erlang Community Site

Welcome to trapexit.org, the Erlang community site where you can read news and weblogs related to Erlang/OTP, discuss projects, issues and ideas with other Erlang developers, and read and publish articles and HowTos related to Erlang/OTP.

Trapexit News

Erlang Open Source crawler!

Trapexit is proud to announce its own Erlang open source crawler. We crawl the web for you, gathering searchable information on all open source Erlang projects from all the major repositories. You can discuss these projects in the forum, add documentation in the trapexit wiki or rate the various contributions. To view our new project index repository, visit http://projects.trapexit.org.

What is Erlang and OTP?

Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's runtime system has built-in support for concurrency, distribution and fault tolerance. Originally developed at Ericsson, it was released as open source in 1998.

OTP is set of Erlang libraries and design principles providing middle-ware to develop these systems. It includes its own distributed database, applications to interface towards other languages, debugging and release handling tools. These tools and applications distributed by Ericsson are complemented by numerous other open source projects.

Here is an example of Erlang code:

-module(beersong).
-author('BillClementson').
-export([sing/0]).
-define(TEMPLATE_0, "~s of beer on the wall, ~s of beer.~n"
                    "Go to the store and buy some more," 
                    "99 bottles of beer on the wall.~n").
-define(TEMPLATE_N, "~s of beer on the wall, ~s of beer.~n"
                    "Take one down and pass it around, ~s"
                    " of beer on the wall.~n~n").

create_verse(0)      -> 
    {0, io_lib:format(?TEMPLATE_0, phrase(0))};
create_verse(Bottle) -> 
    {Bottle, io_lib:format(?TEMPLATE_N, phrase(Bottle))}.

phrase(0)      -> ["No more bottles", "no more bottles"];
phrase(1)      -> ["1 bottle", "1 bottle", "no more bottles"];
phrase(2)      -> ["2 bottles", "2 bottles", "1 bottle"];
phrase(Bottle) -> 
     lists:duplicate(2,integer_to_list(Bottle) ++ " bottles") ++ 
                     [integer_to_list(Bottle-1) ++ " bottles"].
bottles() -> lists:reverse(lists:seq(0,99)).
sing() ->
    lists:foreach(fun spawn_singer/1, bottles()),
    sing_verse(99).
spawn_singer(Bottle) ->
    Pid = self(), 
    spawn(fun() -> Pid ! create_verse(Bottle) end).
sing_verse(Bottle) ->
    receive
	{_, Verse} when Bottle == 0 ->
	    io:format(Verse);
	{N, Verse} when Bottle == N ->
	    io:format(Verse),
	    sing_verse(Bottle-1)
    after 
	3000 ->
	    io:format("Verse not received after 3 seconds"
                      " - re-starting singer~n"),
	    spawn_singer(Bottle),
	    sing_verse(Bottle)
    end.


Starter

Good places to start on trapexit.org

HowTo documents - Tutorials and Guides for Erlang developers
Erlang Cookbook - A collection of Erlang solutions to specific problems
Erlang Concepts - Articles dealing with specific Erlang aspects
Erlang Best Practices - Articles dealing with best practices in Erlang
Erlang Articles - Articles of interest to Erlang developers and testers
ErlangJobs - Erlang and Erlang related Jobs
Links to Erlang related sites outside Trapexit
RSS Feeds related to Erlang, including blogs and software development

Latest Forum Posts

Erlang

HRL Files and best practice
  (Fri Feb 05, 2010 12:10 am)
why can fail gen_tcp:controlling_process?
  (Wed Feb 03, 2010 10:39 am)

Open Telecom Platform (OTP)

RE: YAWS/Erlang’s maximum number of simultaneous open ports?
  (Tue Feb 02, 2010 1:51 pm)
YAWS/Erlang’s maximum number of simultaneous open ports?
  (Sun Jan 24, 2010 5:21 pm)

Advanced Erlang/OTP

RE: OTP SNMP Manager & Community string
  (Fri Feb 05, 2010 1:15 pm)
RE: OTP SNMP Manager & Community string
  (Wed Feb 03, 2010 7:46 pm)

Open Source Projects

Which Mysql Library?
  (Sun Dec 06, 2009 8:26 am)

User Contributions

RE: Lightweight HTTP client
  (Thu Jan 21, 2010 12:53 pm)

Trapexit Forums

RE: Spam in Ywas Mailing List
  (Sun Jan 03, 2010 8:22 pm)

Latest Planet Entries

Erlang Factory News: New confirmed speakers for the Erlang Factory SF Bay Area
  (Mon Feb 01, 2010 12:47 pm)
LShift on Erlang: RabbitMQ-shovel: Message Relocation Equipment
  (Mon Feb 01, 2010 12:13 pm)
Simon Willison's Weblog: Hot Code Loading in Node.js
  (Sun Jan 31, 2010 1:57 pm)
Trapexit's Erlang Blog Filter: Erlang Factory SF Bay Area 2010
  (Sat Jan 30, 2010 9:29 pm)
Erlang Inside: Erlang Factory SF Bay 2010 ? Francesco Cesarini on the Conference and Old-School vs New-School Erlangers
  (Sat Jan 30, 2010 6:19 pm)

Latest Wiki Changes

User talk:Lowcostwebhost
  (Fri Feb 05, 2010 10:15 am)

Mailing Lists Posts

Erlang questions mailing list

Venkat Submramaniam Talks on Erlang at India's No.1 Forum
  (Thu Jan 21, 2010 4:46 am)

Yaws mailing list

Yaws/yapps newbie questions
  (Mon Feb 08, 2010 9:55 am)

Erlang Web mailing list

RE: [Erlangweb-users] Mnesia schema change, tutorial adding fiel
  (Mon Dec 07, 2009 8:24 am)

Ejabberd mailing list

RE: ejabberd high performance configuration
  (Fri Feb 05, 2010 8:35 pm)

RabbitMQ mailing list

RE: Streaming stock prices to long-polling clients
  (Fri Feb 05, 2010 4:40 pm)


Erlang/OTP Projects
Personal tools