Category Archives: Uncategorized

Visual Studio is a Pretender!

Can I just rant at you for a minute, gentle reader? The editor in Visual Studio is from the stone ages. Really – it’s retarded (I don’t mean that in a derogatory sense – it really is retarded). Sure, it … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Crack in the ‘Golden Spike’

I love the description Marty Manly uses over at ‘Jam Side Down’: So you have Google with all the software needed to replace Outlook in every respect except syncing contact and calendars to an iPhone or a Blackberry and you … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Lisping in Bed

I happen to have an ssh client on my iPhone 3G, and while I was in bed the other night I thought to try and log in to a box, fire up emacs and get a slime repl. It worked … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

My Hiatus

Dear readers (all none of you), I’ve been away from my blog for a while now because of life circumstances that required my attention to be invested elsewhere. Hopefully, I will now be able to post something on a semi-regular … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Dedicated window-buffer mapping with Emacs

I use CScope to navigate source code from within Emacs. It’s very, very useful and integrates will into Emacs. However, I’ve been wanting a way to control how cscope updates the buffer/window mappings as it locates search results for you. … Continue reading

Posted in Uncategorized | Tagged , , | 1 Comment

pre-commit script for submodule hygiene

Our team at work is using git submodules to track re-usable code across projects, and it’s been pretty good so far, but we have hit minor snags along the way (such as the absence of a ‘git submodule rm’ command!). … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

submodule moment

Seems that new features and concepts appear in Git at such a steady pace that it’s difficult for the jargon to keep up. I don’t follow the git mailing list as closely as I should: it’s too high-traffic and I … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Extended Git Submodule Status

At work I’m involved in some projects that will very likely make heavy use of submodules. The reason is that submodules make it very convenient to make use of a set of “common” code without a ton of duplication. We’re … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Lisp: no easy download

Over at LispCast, eric’s got a new post up called No easy download. In it he talks about the difficulty of being new to Lisp, wanting to learn, and not knowing where to start. He’s right. It’s way too hard … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

Smarter Git Prompt

After posting my git prompt shell snippets, someone pointed out on news.YC pointed out my daftness. All you need is the following in your .bashrc: PS1 = ‘$(git branch &>/dev/null; if [ $? -eq 0 ]; then echo "\[\033[00m\]{$(git branch … Continue reading

Posted in Uncategorized | Leave a comment