Viewing profile — RootDynasty
RootDynasty
HN member- Joined
- Mon, Jun 09, 2014, 8:45 PM UTC
- HN karma
- 22
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About RootDynasty
No profile information was provided.
Recent public activity
-
comment
Comment #9496245
Is your editor open source? It looks really interesting.
-
comment
Comment #9484293
In my opinion the most important part of functional programming is the purity of functions. There is a great quote about this on one of the Clojure doc pages "If a tree falls in th…
-
comment
Comment #9455932
The language part of the Wolfram Language is still really kludgy to use and quite slow. Even doing simple things like writing a function or an if statement is painful. What it does…
-
comment
Comment #9436602
Does Atomontage have support for real time shadows? All of that information seems to be pre-baked into the voxel models. This would severely limits its "everything is destructible"…
-
comment
Comment #9379018
I agree that worrying about the time complexity of the non-parallel portions of pmap is unlikely to be an issue for most use cases. It's still interesting to think about the tradeo…
-
comment
Comment #9376850
One thing to note is that the the parallel map consisting of two mapping operations has a different hidden overhead. If a message is received by a process that does not pattern mat…
-
comment
Comment #9376361
Here is another cool version of parallel map in Erlang that uses a fold instead of two parallel maps. parallel_map(Fun, List) -> Last = lists:foldl(fun(Value, Parent) -> spawn(fun(…
-
comment
Comment #8818155
English version: https://www.youtube.com/watch?v=sKxj-Jh9pmY
-
comment
Comment #7870410
Is using relx in conjunction with rebar a standard thing to do? Is there an easier/standard way to start the app with rebar or relx in development without building an entire releas…