1. September 2010 | Tags: android, audio, bind, blog, calculator, code, converter, css, design, dig, dns, download, dvr, excel, firewall, git, graphic, gtd, howto, html, image, internet, ios, ip, ipad, iphone, iptables, linux, mac, mathe, mp3, networking, numbers, online, osx, panorama, photo, poster, print, proxy, python, shell, simplenote, ssh, sync, sysadmin, tcp, theme, tunnel, txt, unix, versioncontrol, video, vpn, web, webdesign, windows, wordpress, youtube
Meine delicious.com-Links vom 25. August bis zum 31. August:
- sshuttle – Transparent proxy server that works as a poor man's VPN. Forwards over ssh. Doesn't require admin access.
- mNote – for Android is a fast notepad for Android allowing for offline local note editing, managment, and searching. In addition, mNote synchronizes with Simplenote
- Dirpy – is an advanced DVR for your favorite online media. For example, use Dirpy to record your favorite YouTube videos to mp3s!
- Git for the lazy – This guide is for people who want to jump to any point in time with their project/game/whatever, and want something to use for themselves.
- DiG HOWTO – How to use dig to query DNS name servers
- 100 Free High Quality WordPress Themes: 2010 Edition –
- PosteRazor – The PosteRazor cuts a raster image into pieces which can afterwards be printed out and assembled to a poster.
- Soulver – It's quicker to use than a spreadsheet, and smarter and clearer than a traditional calculator.
23. März 2010 | Tags: amazon, business, c++, cheatsheet, code, cooking, css, csv, database, design, desktop, development, ebook, editor, encoding, epub, excel, graph, gtd, html, images, instapaper, jquery, kindle, kochen, linux, mac, management, mobipocket, monitoring, motivation, mysql, osx, pictures, reading, recipe, rezept, rrdtool, software, sony, sync, sysadmin, txt, umlaute, unicode, unix, usb, utf8, vi, vim, wallpaper, web, webdesign, windows, wordpress, work
Meine delicious.com-Links vom 4. März bis zum 23. März:
- collectd – is a daemon which collects system performance statistics periodically and provides mechanisms to store the values in a variety of ways, for example in RRD files.
- CSVed – is an easy and powerful CSV file editor, you can manipulate any CSV file, separated with any separator.
- Simple Desktops – is a collection of desktop wallpapers curated by Tom Watson designed to make your computer beautiful without distraction.
- Continuous Integration – is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily – leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly. This article is a quick overview of Continuous Integration summarizing the technique and its current usage.
- Ultimate solution to weird UTF character encoding problem – Due to different formats of storing characters in the database, sometimes you may encounter problem with strange characters (like —) appearing in your WordPress posts. This can especially happen when moving the site to a different server, a process during which your database needs to be exported and imported.
- Why Your Employees Are Losing Motivation – Business literature is packed with advice about worker motivation—but sometimes managers are the problem, not the inspiration. Here are seven practices to fire up the troops. From Harvard Management Update.
- smitten kitchen Recipe Index – Fearless cooking from a tiny kitchen in New York City with delicious photos…
- Uniform – masks your standard form controls with custom themed controls. It works in sync with your real form elements to ensure accessibility and compatibility.
- vi Complete Key Binding List – This is not intended as a tutorial. It is a reference on what every vi key binding does, followed by some useful vi tricks and tips. An expert will probably know most of these already, but an intermediate vi user will find valuable information, and even an expert may learn a thing or two.
- Ephemera – will comfortably synchronize your ebook reader with Instapaper.com via USB. It works with the Amazon Kindle, Sony readers and pretty much any device capable of reading HTML, Mobipocket or EPUB files.
9. März 2008 | Tags: code, excel, html, linux, mac, office, osx, unix
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…