Archive for October, 2007

Amusing Compiler Warning

Saturday, October 27th, 2007

In file included from vhook/imlib2.c:48:
/home/tim/src/ffmpeg/libavformat/framehook.h:25:2: warning: #warning VHOOK is deprecated. Please help porting libmpcodecs or a better filter system to FFmpeg instead of wasting your time writing new filters for this crappy one.

del.icio.us bookmarks for October 21st through October 25th

Saturday, October 27th, 2007

Links for October 21st through October 25th:

del.icio.us bookmarks for October 13th through October 20th

Sunday, October 21st, 2007

Links for October 13th through October 20th:

Debian Tip: How to Backup Installed Package List Before Reinstall/Upgrade

Sunday, October 14th, 2007

Many thanks to Renato for the following useful tip:

On your existing box:
COLUMNS=180 dpkg -l | awk '{print $2}' | xargs > /tmp/t

Then (having backed up then restored the list to /tmp/t, on the new install:
apt-get install `cat /tmp/t`