Mostly λazy…a Clojure podcast

Episode 0.0.3: Chris Granger at Clojure Conj 2011

Advertisements

Recorded November 12th, 2011, second in a series of conversations from Clojure Conj 2011.

I had a chance to sit down with Chris Granger on the last night of the Conj.  It’s been fun to watch him over the past months put out a set of really pleasant-to-use and extraordinarily well-documented and well-packaged libraries, and he’s turned into a great presence around the Clojure sphere in general.  Chris works with Clojure daily for his current employer, ReadyForZero — a Y Combinator-funded startup that helps people get out of debt — where he helped port a Python & Django codebase over to be 100% Clojure.  (Yup, the big tagline for this episode is, “Y Combinator startup bets business on Clojure!” 😉  In addition, he has a unique history, having recently worked as a program manager Microsoft, working on Visual Studio…so, our discussion was wide-ranging.

After we recorded this, it was announced that Chris will be teaching two training sessions on Clojure web development at the new Clojure/West conference in March.  If you’re new to Clojure and want to jump-start your skills for it in the web space, signing up for one of those sessions would likely be a good way to get further faster.

Enjoy!

(BTW, don’t miss the notes on the Overtone-produced intro and outro below…)

Listen:

Or, download the mp3 directly.

Discrete Topics

Bumpers

Last episode, I put the call out for people to send in Overtone-produced sounds to serve as intro and outro pieces.  Here’s some info on the clips used in this episode.

Intro

coded up bell sounds from scratch using Overtone’s sine-wave ugens, and then composed them to produce a rendition of , the fourth movement of Lieutenant Kije by Sergei Prokofiev.  The code itself ended up being added as an example in the core Overtone repo, and was discussed at some length on the Overtone mailing list .

(Note: when I recorded the results of Jen’s code, I used a bell metronome with a beat of 250; perhaps that’s not “correct”, but it suited my personal taste for the tune. 🙂

Outro

Produced by Damion Junk, the intro was part of a longer track generated by a bracketed L-system, which is “a variant of a formal grammar, most famously used to model the growth processes of plant development”.  Damion used a library he wrote for working with L-systems to produce generated data for Overtone.  Here’s the source for the specific L-system he used for the intro track:

(def descending-moon {:v "RN+-<>[]"
                      :omega ">>>[-----N][++N][++++++N][<< ">"
                                    \< "<"
                                    \+ "+"
                                    \- "-"
                                    \[ "["
                                    \] "]"}})
 
Advertisements

Advertisements