Viewing profile — hraberg
hraberg
HN member- Joined
- Thu, May 13, 2010, 1:59 AM UTC
- HN karma
- 33
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About hraberg
No profile information was provided.
Recent public activity
-
comment
Comment #9519244
http://typedrummer.com/1m4q5x
-
comment
Comment #8329772
I started a project to port Emacs (the C parts) manually to Clojure, with the Emacs Lisp automatically transpiled into Clojure in 2012, most of the work was done in early 2013: htt…
-
comment
Comment #5506622
I have a feeling Markus is referring to typing in machine code (in a totally opaque way) using DATA statements combined with a small loader written in Basic.[1] Here's an article d…
-
comment
Comment #4421459
Thanks! I actually had a quick look at this, and Kickstarter funding is for US residents only. Indiegogo seems like an alternative (guess there are a lot of opinions on what crowd …
-
comment
Comment #4421428
The Emacs Lisp emulator is necessary, otherwise it won't be Emacs. This part will work similar to how shen.clj[1] works. This is itself an interesting project, but as people have s…
-
comment
Comment #4418992
Author here. Thanks for the support everyone! Seems like there is an interest in such a thing, so I'll better start hacking on this again. There are two parts to this. First, pure …
-
comment
Comment #3144027
With Enumerable.java you can use Guava like this (+ static imports): List strings = transform(list("hello", "world"), function(s, s.toUpperCase())); assertEquals(list("HELLO", "WOR…
-
comment
Comment #2075330
Enumerable.java ( http://enumerable.org ) is not really a functional library, but it does support limited closures: boolean b = a.any(λ(s, s.equals(s.toLowerCase())); s and λ are s…
-
comment
Comment #1342993
If you're still interested in closures for Java, my port of Ruby's Enumerable module, Enumerable.java, has a limited version for valid Java 5. The current release is 0.2.4, but thi…