HTML5 and all that

Clojure So.. Firstly a quick update re: clojure. I’m still using it, productively and occasionally frustraitedly. Most frustration comes from my lack of available time and the relative newness of the language. Now Clojure is 2 years old there are often libraries are available to do things in a way idiomatic to Clojure rather than just using Java libraries directly, however there’s no a great deal of documentation of examples for these libraries....

Sun Jan 10 2010 · Geoffrey J. Teale

TrueType fonts in GNU Emacs

Listing installed TrueType fonts in Emacs In this new fangled age of TrueType support in Emacs it’s really useful to know the names of the Monospace fonts installed on your system in the format that Emacs understands. If you are on a Linux/UNIX system running Xorg with fontconfig installed then add this function to your .emacs file (defun list-monospace-truetype-fonts () "Provide a list of available monospaced truetype fonts on this machine" (interactive) (set-buffer (get-buffer-create "Monospaced Fonts")) (call-process-shell-command "fc-list :spacing=mono:scalable=true family | sort" nil t) (setq buffer-read-only t) (switch-to-buffer-other-window (current-buffer))) You can set these fonts in a number of ways, currently I am getting the most joy using this form:...

Thu Jul 3 2008 · Geoffrey J. Teale