Viewing profile — elibarzilay
elibarzilay
HN member- Joined
- Fri, Mar 13, 2009, 1:49 AM UTC
- HN karma
- 6
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About elibarzilay
Recent public activity
-
comment
Comment #15211179
I don't know what this refers to, but it doesn't ring a bell. The most I might have said is that the community in general is not too interested; but personally, this kind of dynami…
-
comment
Comment #14257614
You could have used the scribble reader (the @-expression syntax, not to be confused with the full documentation system). But you'd also then find that there is a more robust way t…
-
comment
Comment #10105188
That's the first time I hear of Racket being accused of being too small... Looking at http://perldoc.perl.org/index-functions-by-cat.html#Function... I count about 30 functions (in…
-
comment
Comment #10105171
From http://racket-lang.org/new-name.html -- "Racket is a Scheme". The name change was about very different things than "basic scheme routines", and it would be hard to find any ba…
-
comment
Comment #5156128
Not just now -- this library has been up for a number of years.
-
comment
Comment #4777797
Right. Perhaps a better way to summarize this is that: * Lisp made the first giant step of having code representable as data for meta-programming, and chose sexprs to do so * Commo…
-
comment
Comment #4770722
You should be careful here, and not lump together "many Schemes" and "Racket" (or other specific Scheme implementations). The thing is that Scheme standards have traditionally avoi…
-
comment
Comment #3976762
Um, when I write code in Typed Racket (and I have a whole course using it), the code tends to be much more similar to ML than to conventional Lisps. When I write code in Lazy Racke…
-
comment
Comment #3968379
All of this sounds like you're one of these people who see parens and run away screaming "LISP!". Yes, the default Racket syntax uses S-expressions, but concluding that it's in som…
-
comment
Comment #3967194
These days Racket is on a similar performance level as many lisps, and it also has three kinds of concurrency for you to choose from.
-
comment
Comment #2134146
Racket now includes a new facility -- "features" -- which are essentially a lightweight OS-level thread. There's also another -- "places" -- which is a more separated heavy threads…
-
comment
Comment #1412681
Not a standalone book, but there's a guide for doing practical things: http://docs.racket-lang.org/more/
-
comment
Comment #1412675
5.0.0.1 is the version of the repository -- it's a development version that should not be considered stable.
-
comment
Comment #1412673
That's up to the linux packagers. It took them a while to settle on "plt-scheme" in the past, so it will probably take some time now too.
-
comment
Comment #514417
PLT Scheme is not "interpreting" code. More than that, Arc adds a bunch of huge overheads that could make things substantially faster. I had some patches lying around that made thi…
-
comment
Comment #514410
Something that could be done for now, is to write a piece of mzscheme code that "marshalls" the data in (utf-8-encoded) byte-strings. Assuming that most of the 2gb is made of strin…
-
comment
Comment #514402
In general, 3m is performing very well, much better than the conservative collector plt used to use by default (the boehm gc). As for the jit: many of the benefit of the jit are ir…