New HDR tool for Linux  
Tuesday, May 29, 2007, 05:35 PM - Everything Else
Previosly I've been using a long toolchain consisting of UFRAW, a cinepaint beta-build, qpfstmo and finally Gimp to process my HDR shots. Now finally someone has made a single program for doing both HDR bracketing and tone-mapping in linux!




qtpfsgui is clearly standing on the shoulder of giants, and is building on qpfstmo, but apart from being completely inpronouncable it's an excellent tool. It supports 16 bit TIFFs and all the tone-mappings of qpfstmo (you have to set the exposure values for your TIFFs yourself though)

[ add comment ]   |  permalink  |   ( 3 / 1356 )
Toasted computer scientists  
Tuesday, May 29, 2007, 12:52 PM - Coding
I think this is really old, but it's too good not to spread:


How Computer Scientists Would Design a Toaster




[ add comment ]   |  permalink  |   ( 3 / 3043 )
Backporting N3 to 1990  
Monday, May 14, 2007, 04:27 PM - RDF
(X)emacs is an evil evil disease. Despite a great selection of other text-editors, I can never work as comfortably or quickly as with xemacs, and the xemacs keybindings are so deeply embedded in my soul that I've come to realise that I will never forget them, nor can I override them by learning something new. Therefore I bit into the sour apple that is emacs-lisp and made n3-mode for xemacs!



It's crappy, and does syntax highlighting and comment support only. It didn't take as long as I thought since I recycled the regexps from my previous three efforts:


If you want to take part in the glorious double-fun that is xemacs N3 editing:

  • Download n3mode.el into ~/.xemacs/
  • Add the following lines to ~/.xemacs:

(load "~/.xemacs/n3mode.el")
(setq auto-mode-alist (cons '("\\.n3$" . n3-mode) auto-mode-alist))
(add-hook 'n3-mode-hook 'turn-on-font-lock)

  • Open an N3 file and enjoy!

Now maybe I can finally get around to editting those N3 files, and stop wasting my time.

[ add comment ]   |  permalink  |   ( 3 / 3257 )
Weird Email  
Friday, May 11, 2007, 09:51 AM - Everything Else
Yesterday I got an odd email to my gmail account:

From: Master Doofus <masterdoofus at the domian of gmail.com>
Subject: Hey gromgull, consider getting a new e-mail address

Apparently, your email address happens to have a really high PageRank
value for a Google search for E-mail addresses, making you more
susceptible spam like this that use lame Perl scripts. Feel free to
reply to this mail. Thanks.


WTF? What do I make of this? Do I trust the anonymous person who identifies himself as Master Doofus? Do I break the holy rules of spam prevention and reply? And most importantly, where can I get my own lame perl script?

[ add comment ]   |  permalink  |   ( 3 / 3056 )
N3 Syntax highlighting for gtksourceview  
Thursday, May 10, 2007, 10:24 AM - RDF
Since finding a decent mode for N3 in xemacs seems impossible, and writing a new mode is non-trivial I decided to face the fact that there is more than one editor out there, and I dug out this N3 language definition I did for gtksourceview, the component uses in gedit and various other gnome applications.



Download the .lang file here and put it in /usr/share/gtksourceview-1.0/language-specs or ~/.gnome2/gtksourceview-1.0/language-specs. Now the N3 mode is available from the View->Highlight Mode->Markup menu.
To automatically highlight all .n3 files add:

<mime-type type="text/rdf+n3">
<comment>N3</comment>
<glob pattern="*.n3" />
</mime-type>

to ~/.local/share/mime/packages/Override.xml.



[ add comment ]   |  permalink  |   ( 3 / 3084 )

Back Next