Another great PLT effort for the backlog:
How do we teach students the essential ideas behind garbage collection?
Another great PLT effort for the backlog:
How do we teach students the essential ideas behind garbage collection?
The Guile folks are looking for programmers curious about contributing, having some fun, and possibly winning a monetary reward for their work! Details here.
Excellent for use with Racket. Get it here.
Here is how to do it courtesy of TonyG.
Schluessel is an R5RS Scheme implementation based on Java. Schluessel can manipulate Java libraries by using reflection. Scheme applications written by Schluessel can also embed in Java applications.
Mickey Scheme is an incomplete, slow and buggy implementation of R7RS Scheme small.
DrRacket is open-source (LGPL) editor for Racket. Sometimes you want to make changes to it. For example today I wanted to enable online compilation on single-core machines. Here is how easy it is to do it:
cd /opt/racket/5.3.1/collects/drracket/private/
sudo cp module-language.rkt module-language.rkt-ORG
# Made the change
# View it
diff module-language.rkt module-language.rkt-ORG
1329,1330c1329
< ;;(> (processor-count) 1))
< (> (processor-count) 0))
---
> (> (processor-count) 1))
1348,1349c1347
< ;;(> (processor-count) 1))
< (> (processor-count) 0))
---
> (> (processor-count) 1))
# Tell Racket to recompile that collection (aka library)
sudo raco setup -l drracket
# Restart DrRacket
Hope this gave you a taste of how easily and quickly you can try new stuff out in DrRacket itself.
Here is how it looks with it turned on:
DrRacket is a wonderful editor. It is so feature rich that the first time you begin using it, you may end up missing out on how powerful and pleasant it is to use due to the multitude of options and features. The following is my attempt to share the most useful and interesting features and get a new-user up and running and feeling really good about it as quickly as possible.
Continue reading “DrRacket for the Truly Impatient V02”
Regarding Lisp and its warts…
and Paris has pickpockets, but that doesn’t make it any less magnificent
I made a correction on the spelling of magnificent.
(via mahmud_ on reddit)
Check it out here.