Mickey Scheme is an incomplete, slow and buggy implementation of R7RS Scheme small.
Tag: Lisp
Great post on Elisp hacking in Emacs
parenface-plus Package for Emacs
This is How Easy it is to Make Changes to DrRacket
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:
- Assuming that DrRacket is already installed. This is a normal installation using the installer; you do not typically have to check out the Git repo to make changes.
- Asked Robby how to make the change. Robby is super everybody knows that, he explained the fix. The check for enabling the feature is in module-language.rkt. Here are the steps
-
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
- Now the online compilation indicator shows up and errors are automatically flagged.
- It works fine on a 1.6GHz Pentium with 2GB of RAM.
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 for the Truly Impatient V02
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”
On Lisp and Paris
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)
RWind: The Beginnings of a Racket Based Window Manager
Check it out here.
Introduction to Racket
Here is a nice introduction to the inspiring parts of Racket and it’s culture (of Racketeers).
Generic Types in Racket
Here is a nice post about generic data types in Racket.