Just got access to Gmail's priority inbox :) I expect this to be quite useful. I used to have a similar thing on my home computer and it was a great time saver.

I have reason to suspect that certain websites are using Facebook Connect for shady things - I mean, more than the obvious shady things. Consider disabling it with Ghostery.

Facebook is getting desperate, it's showing me the same item twice on the home page.

Just figured out a new and cool way to manage the website using Git!

Sometimes programming drives me crazy... time to kick back with some light reading on string theory.

Kudos to Netflix for clearly showing the changes at each revision of their terms of service

I just changed the URL structure for blog posts and I have to apologize to the one person who's commented on one post: I lost the comment. I'll keep my eyes open for a way to get it back.

Somehow I never bothered to put up a download link for Modulo... silly me. See the project page for info.

Apparently I've made $6.48 from Google AdSense. Without even trying.

I've been getting mysterious Internal Server Errors lately, related to Clearsilver. I will make them go away at some point. http://www.ellipsix.net/devweb/bugs/report.189.html

Website maintenance with git, the pro way

Since the beginning of version control, people have been using VCSs to manage websites. It works pretty well, because the process of web development is similar to the process of programming. Heck, with the advent of dynamic websites these days, often half of web development is programming. But web developers have one peculiar requirement that most...

WTF is an einbein anyway?

I just realized that in my last post I sort of neglected to address the main question. So what is an einbein? Turns out the answer is on the next page of the Green, Schwartz, and Witten textbook: the einbein is the induced metric, normally written h_{\alpha\beta}, where \alpha and \beta range over the coordinates in the parametrization of the worldline/worldsheet/whatever. A...

The origin of the einbein

You know that feeling you get when you're reading a textbook and the authors start pulling equations out of thin air on the second page of the second chapter? No? Well then, my congratulations on having a life.

But seriously, I came across a gem of this sort in Superstring Theory volume 1 by Green,...

Running GUI apps as root

I just ran into a funny problem where I was unable to run GUI apps as root, although I had no trouble using KDE and its applications as my normal non-root user. I'd get various sorts of error messages, like "unable to open display :0" or "cannot...

More Python voodoo: optional-argument decorators

I've just been doing something that probably should never be done in Python (again), and I figured it might be useful to record this little snippet for posterity. Many Python programmers are probably familiar with decorators, which modify functions by wrapping them with other functions. For example, if you want to print 'entering' and 'exiting' to...