
Erlang is a great distributed concurrent programming ecosystem that has annoyances. This is my top "pid peeve" list. ("pid peeve" = "erlang pet peeve")1. Improved Record Syntax (dead horse beaten to death, but still!)
Advantages: It is easy to search code for use cases.
Disadvantages: Most of the typical idioms that fit on one line in other programming languages requires a great deal of typing in Erlang.
There is also a problem with the record_info psuedo-function in that I cannot use it at runtime. Converting to a property list requires a bit of a hassle.
2. Better Documentation Framework
Three main problems:
- There are a lot of rarely used libraries that seem to be highlighted at the expense of what would otherwise have been useful real-estate.
- The organization is like a stack of mystery meat navigation. Compare the picture of the menu at right with the concept defined here.
- The docs are left over from the days when people cared about cover pages and actually used tables of content.
Although this has been solved wonderfully with clever stuff like http://erldocs.com/R13B04 one would expect the main distribution to present a most useful delivery.
(On the other hand we want the people behind Erlang building great concurrent libraries and not so much great viz.)

No comments:
Post a Comment