I GIVE TERRIBLE ADVICE

403
Reputation
101 views

Registered User

Name I GIVE TERRIBLE ADVICE
Member for 1 year
Seen 19 hours ago
Website
Location Saguenay, Qc
Age 21

Web dude who is kind of ok.

Nov
12
comment What’s your take on the programming language Go?
Go doesn't have exceptions. A huge part of Erlang is its handling of failures, errors and exceptions. They don't really compare on other points than message passing.
Nov
11
comment Help me improve this Erlang?
I don't think tail recursion will make it that much faster (assuming we rarely calculate billions in roman numerals, which can be a pretty big assumption)
Nov
8
awarded  Yearling
Nov
5
comment Where is Erlang used and why?
CouchDB is not an OO database, it's a document-oriented database.
Nov
5
comment erlang: uuid generator
Why do you import random if you use random:uniform? You don't need to do that in Erlang.
Nov
5
answered Help me improve this Erlang?
Aug
27
comment What are five things you hate about your favorite language?
When returning an empty array, PHP will evaluate it to false with its loose typing. Returning the array itself would still let you like "if($matches = preg_match_all($regexp,$str)){...}". Adding 'or' after sounds like a pretty bad reason to have the return values that way.
Aug
9
awarded  Commentator
Aug
9
comment What’s a good Functional language to learn first?
Erlang can have static type analysis through type inference with the help of TypEr and Dialyzer. Better than that, they can even analyze already compiled code you wish to integrate with and find errors in running applications. erlang.org/doc/man/dialyzer.html erlang.org/eeps/eep-0008.html erlang.se/workshop/2005/…
Jul
17
answered Unique constraint in Mnesia