19. September 2011 | Tags: alfred, automation, bash, bittorrent, cd, cmyk, code, color, cron, design, download, dropbox, editor, encryption, fun, geek, gtd, hex, linux, mac, mdfind, monitoring, office, osx, p2p, powershell, python, rgb, ruby, screen, script, security, shell, spotlight, sysadmin, terminal, tmux, tmuxinator, unix, vi, vim, web, windowmanagement, windows, yaml
Meine pinboard.in-Links vom 30. August bis zum 16. September:
- solo – is a very simple script (10 lines) that prevents a program from running more than one copy at a time. It is useful with cron to make sure that a job doesn't run before a previous one has finished
- teamocil – is a tool used to automatically create sessions, windows and splits in tmux with Ruby and YAML. Like tmuxinator, but with splits, not just windows.
- BoxCryptor – is a cryptographic virtual harddisk that encrypts all data on-the-fly using the AES-256 standard. Encrypted data is stored in an arbitrary directory of your choice, e.g. one that is synced to the cloud like your Dropbox folder.
- ColorPicker Pro – is an easy to use color detection tool for developers and designers.
- auto_torrent – Give it a list of stuff to look out for, set your bittorrent client’s ‘watch’ directory to match auto_torrent’s download directory, infringe copyright without lifting a finger.
- Supervisor – is a client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems.
- Jump – type j in a terminal, and enter your query at the prompt: results will be updated live as you type. Switch between suggestions with up and down arrow, select with enter and boom you’re in the right directory. Basically, all the fancy web 2.0 autosuggest mojo right in your terminal.
- Vigor – the popular Unix editor vi with the addition of the Vigor Assistant, has arrived.
- Conque – is a Vim plugin which allows you to run interactive programs, such as bash on linux or powershell.exe on Windows, inside a Vim buffer. In other words it is a terminal emulator which uses a Vim buffer to display the program output.
16. Juni 2009 | Tags: backup, book, cheatsheet, cloud, computer, ct, editor, encryption, filesystem, fujitsu, geek, gpg, gtd, hack, history, howto, interview, iphone, job, mac, microsoft, mobile, network, ntfs, ocr, office, osx, outlook, paper, pdf, pgp, reading, rsync, s510m, scanner, scansnap, security, software, sysadmin, timemachine, txt, vi, vim, vista, visualbasic, windows
Meine delicious.com-Links vom 2. Juni bis zum 16. Juni:
11. September 2008 | Tags: clock, code, geek, ide, mac, mouse, office, osx, plugin, powerpoint, presentation, ruby, shareware, slime, statistic, time, vim, visualization, web, web2.0, windows, xml
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…
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…