QuickLinks vom 2. Juni bis zum 16. Juni

Meine delicious.com-Links vom 2. Juni bis zum 16. Juni:

QuickLinks vom 10. September

Meine delicious.com-Links vom 10. September:

  • pptPlex – is a plug-in that explores an alternate method for presenting a PowerPoint slide deck. Using pptPlex, you can present your slides as a tour through a zoomable canvas instead of a series of linear slides.
  • mycrocosm – a web service that allows you to share snippets of information from the minutiae of daily life in the form of simple statistical graphs…
  • XML Notepad 2007 – provides a simple intuitive user interface for browsing and editing XML documents.
  • iMouseFix – is a very simple program that will allow you to regain control of the mouse acceleration in Mac OS X
  • Cuckoo – brings hourly clock chimes to Mac OS X. Play a beep on the hour. Or on the half-hour, or any combination of five-minute intervals.
  • Like Slime, for Vim – Turn Vim into an IDE for almost anything using GNU screen…

Compile xlhtml on Mac OS X

Wenn man eine Excel-Tabelle auf einem unixoiden Betriebssystem in eine nutzbare Form bringen möchte, kann man das sehr simpel mit xlhtml erledigen.

Das Programm ist unter Linux sehr einfach zu installieren da es in so gut wie jeder Distribution fertige Pakete von xlhtml gibt.

Unter OS X muss man sich dagegen an den klassischen Unix-Dreischritt (configure, make, make install) halten und das Programm von Hand installieren:

$ tar xzvf xlhtml-0.5.tgz $ cd xlhtml-0.5 $ configure $ make $ make install

configure läuft auch sauber durch, bei make wird aber der Fehler

cole/Makefile.am: required file `./depcomp' not found

ausgeworfen. Das kann wie folgt behoben werden:

$ tar xzvf xlhtml-0.5.tgz $ cd xlhtml-0.5 $ aclocal; autoconf; automake --add-missing $ make $ make install

Und gut is…