Future World Orchestra - Desire (1982), via Boing Boing:
A modern electronica duo can only dream of being as good as Future World Orchestra. [via Robert Popper]
Future World Orchestra - Desire (1982), via Boing Boing:
A modern electronica duo can only dream of being as good as Future World Orchestra. [via Robert Popper]
[Flash 9 is required to listen to audio.]
Younger Brother - Halloween Mix:
The Twilight zone
Crystalline
your friends are scary
weird on a monday night
I am a Freak
Pound a Rhythm
Pound a Rhythm ( ruff electronic mix)
Safety in Numbers
Safety in numbers ( ruff electronic mix)
All I Want
Train
Tetris
Bed Time Story
There are a bunch of tutorials floating around online on how to get started with an emacs/slime setup for clojure on windows, but—not surprising given the rapid rate of changes in the clojure ecosystem—I wasn’t able to find one that wasn’t outdated or ran without throwing esoteric errors on installation. After a lot of trial-and-error, I managed to get a proper workflow up and running, and decided to document it in case I forget.
I’ve added a few extra steps to make sure nothing is stored in C:\ (which makes it easy for me when I need to reinstall the OS) that you’ll likely need to change/ignore depending on your partition setup, but on the whole I’m happy with this checklist. As always, YMMV and all that; I frankly don’t expect this to last a few months from now, but it might at least be a starting point:
~/.emacs.d/ and ~/.emacsA:\leinA:\lein to $PATHLEIN_HOME environment variable to D:\.lein to make Leiningen store its executables there (instead of %USERPROFILE%\.lein)%USERPROFILE%\.m2 pointing to D:\.m2 so that the Maven local repository is stored in D:\:junction.exe %USERPROFILE%\.m2 D:\.m2lein self-install, which fetches the lein jar fileA:\emacs\. Don’t open emacs yet!HOME environment variable to D: to make emacs pick up its config files from D:\D:\git clone git://github.com/technomancy/emacs-starter-kit.git .emacs.dM-x package-list-packagesI to mark for installation:
clojure-modeclojure-test-modeslimeslime-replX to install the selected packagesC-X C-C to quit emacslein plugin install swank-clojure 1.3.2 (or whatever’s the latest version recommended at the project site)lein new project-name), open one of the files in emacsM-x clojure-jack-in~/.emacs, after installing color-theme and color-theme-zenburn using M-x package-list-packages:
(load "~/.emacs.d/init.el")
(set-default-font "Consolas-11")
(eval (color-theme-zenburn))
runemacs.exe, which launches Emacs without the background console window that you’d get when running emacs.exe directly. However, runemacs.exe and emacs.exe have different GUIDs, and therefore, you end up with two buttons for Emacs in the taskbar when you try to pin either one and try to use it. Not really a problem, but annoying in a vague sort of way. This can be fixed by pinning the emacs.exe process first, right-clicking the taskbar shortcut to get the Close/Unpin/emacs… menu, then right-clicking the emacs option to get to its Properties window, and changing the target from …emacs.exe to …runemacs.exe.