2
votes
3answers
63 views
Erlang: What logger do you use?
For example, ejabberd and couchdb use own logger. Question is what logger do you use? Own or what?
Thank you!
4
votes
8answers
219 views
Help me improve this Erlang?
So I'm really interested in Erlang. I can't find an excuse to use it for anything big, but I try to use it for toy problems from time to time.
Right now, I'm implementing a Roman …
1
vote
2answers
106 views
How to convert numbers to words in Erlang?
I found this interesting question about converting numbers into "words":
http://stackoverflow.com/questions/309884/code-golf-number-to-words
I would really like to see how you wo …
-3
votes
1answer
61 views
erlang otp download
what is the different download from http://code.google.com/p/otp-base/ and http://www.erlware.org/?
15
votes
12answers
855 views
Where is Erlang used and why?
I would like to know a list of the most common application/websites/solutions where Erlang is used, successfully or not.
Explaining why it is used into a specific solution instead …
1
vote
4answers
85 views
How do I split strings in Erlang?
I've been playing around with the splitting of atoms and have a problem with strings. The input data will always be an atom that consists of some letters and then some numbers, for …
1
vote
3answers
66 views
Erlang Pattern matching with aliases
Hi, is there a possibility to match in a function definition do some subset of a touple and still get get complete touple in the method ?
What I would like to do is something like …
5
votes
6answers
163 views
How to do Erlang pattern matching using regular expressions?
When I write Erlang programs which do text parsing, I frequently run into situations where I would love to do a pattern match using a regular expression.
For example, I wish I cou …
0
votes
3answers
73 views
Process dictionary or loop parameters?
When should I use process-wide dictionary and when should my process state be in the parameters of the loop function?
This:
loop() ->
receive
{From, subscribe} ->
…
2
votes
2answers
107 views
What does this Erlang statement do?
I have this Erlang code:
not lists:any(fun(Condition) ->Condition(Message) end, Conditions).
Can anyone please explain the entire statement in layman's terms? For your info …
1
vote
3answers
66 views
pattern match in formal parameter of function definition
Here's something I've seen in erlang code a few times, but it's a tough thing to google and I can only find this example (the first code block in link below):
http://www.process-o …
0
votes
4answers
54 views
How to get the current node name in an erlang cluster?
I have a function named "message/2" in my module named "message_passing",This function is called in another function hash/1;;;now here is the problem. I need 3 nodes named node1,no …
1
vote
3answers
107 views
erlang: uuid generator
What module/library do you use to generate uuid?
3
votes
3answers
96 views
erlang list manipulation
I have a list of tuples:
L = [{1, [a, b, c]}, {2, [d, e, f]}, {3, [[h, i, j], [k, l, m]]}]
this is what I have
lists:map(fun({_, B}-> B end, L).
the output is
[[a, b, c] …
1
vote
2answers
71 views
erlang emakefile explain
i have an emakefile look like below
%% --
%%
%% --
{'/Users/user/projects/custom_test/trunk/*', [debug_info, {outdir, "/Users/user/projects/custom_test/trunk/ebin"}, {i, "/Users …
