Author Archives: jcs

CSS By Example

Via Jean-Philippe Paradis, I came across this CSS tutorial by Xah Lee. It’s nice because the page shows several examples of CSS effects. When you click on an effect, it takes you to a short tutorial that discusses the effect … Continue reading

Posted in Programming | Tagged , | Leave a comment

Reformatting JSON

A long time ago, I wrote about a way to prettify JSON. It had the advantage that it didn’t require you to load a heavyweight package such as js2-mode when all you wanted was to reformat some JSON in a … Continue reading

Posted in General | Tagged | Leave a comment

Metadata and You

I know it’s preaching to the choir and even to me it seems like the gazillionith time I’ve written about it but we really must convince our friends and neighbors that metadata isn’t some harmless bit of information that’s on … Continue reading

Posted in General | Tagged | Leave a comment

An Org Mode Cookbook

As you all know, I’m always talking up Org Mode and encouraging people to try it out. Org is so flexible that I spend a large percentage of my Emacs time in it. Where others might use a spreadsheet, I … Continue reading

Posted in General | Tagged , | 3 Comments

Emacs Focus Hooks

Bozhidar Batsov continues his excellent series on the upcoming Emacs 24.4 release with a post about new hooks for when frames go in or out of focus. As Batsov explains, that allows you to easily save the current file or … Continue reading

Posted in General | Tagged | Leave a comment

Variadic Comparisons in Emacs Lisp

One of the ways that Emacs Lisp differs from other Lisps is that it doesn’t support multiple arguments for comparisons. That is, you can’t write things like (if (= a b c) do-this else-do-that) or (when (< a b c) … Continue reading

Posted in Programming | Tagged | 1 Comment

Cory Doctorow on the Politics of Copyright

Cory Doctorow appears in an interesting video where he discusses the politics of copyright and how our current policies just don’t make any sense. He repeatedly applies those policies to other areas where everyone can see how ridiculous they are. … Continue reading

Posted in General | Tagged | 1 Comment

Tutorial on Using Org Mode to Write Papers

Arne Babenhauserheide has posted another great how-to on using Org Mode. This time it’s on using Org to write technical papers for publication. As with his previous post that I wrote about, this one can be exported to HTML or … Continue reading

Posted in General | Tagged , | 1 Comment

Emacs 24.4 Desktop-Save-Mode

Like many Emacs users, I keep Emacs running continuously on my machines. To maintain the illusion of a constantly running Emacs, I use desktop-save-mode to maintain my configuration across invocations of Emacs or even reboots. Other than things like forgetting … Continue reading

Posted in General | Tagged | 1 Comment

Superword- and Subword-Mode in Emacs 24.4

If you like—or are forced to use—camelCaseWords, Emacs has subword-mode that will cause word-based cursor movements to stop at each of the individual words. This can sometimes be useful when you repeatedly need to move to one of the constituent … Continue reading

Posted in General | Tagged | 2 Comments