The Gift of Processing

This Christmas, I got an awesome gift from a friend, it was this book:

I have never really played with processing, but programming for the sole purpose of a creative outlet sounds awesome to me. I’ve created a couple little sketches already, one is very similar to my old Particle Accelerator app.

I hope to replace the infinitely useless “Links” page with a processing “Sketches” page in the near future. Hey, and maybe I will even make the RSS feeds work… hmm, maybe not. :)

Thanks man!

Update 12/31/2008: the Sketches page is up!

Tagged Tags: , on December 29, 2008 at 7:42 pm

Dust Bowl Video

I had to do a creative project for the Environmental History class I took last semester, I decided to make a video collage. Everything in the video was “found” on the internet. After it was done, I thought it was interesting to see the diversity (or lack there of) of people represented. Enjoy:

Tagged Tags: , on December 29, 2008 at 7:23 pm

Logo major mode for Emacs

At the time of this posting, it’s still pretty rough, but it does basic syntax highlighting for very common functions (only a small fraction of them). It also associates “.lg” files with logo-mode.

To make it load every time you start emacs, you can either copy the source into your .emacs file, or load the file (again in the .emacs file):

(load “~/logo-mode.el”)

Assuming you saved it in your home directory.

If you just want to run it once and check it out, open the file, then select “evaluate buffer” from the emacs-list menu. Then open a “.lg” file, and it should automatically highlight.

(load “~/logo-mode.el”)

Let me know if you find any bugs or have any requests.

Download: Logo-Mode

Tagged Tags: , , on December 3, 2008 at 8:54 am

Emacs, syntax highlighting

I’ve always been partial to VI, but I’ve been forced to use Emacs for a class I’m taking this semester, and it turns out that I really love Emacs – even more than VI. The stateless model of editing is what I’ve been accustom to (coming from Windows), and it just makes more sense to me. I generally don’t think, “now I’m in edit mode, it’s ok to type.” Not that I think this is wrong, it’s just not natural for me.

Also, I’ve recently made a Emacs “Major Mode” for Berkeley Logo. It was amazingly easy, I actually made it last night in about 2 hours. It is essentially a set of regular expressions bound to keyword types that Emacs knows, written in Lisp. I wrote it with Berkeley Logo in mind, but there’s nothing that should stop it from working for any version of Logo.

I will post it as soon as I get the kinks worked out.

Tagged Tags: , on December 2, 2008 at 8:30 am