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.
Archive for October, 2007
Amusing Compiler Warning
Saturday, October 27th, 2007del.icio.us bookmarks for October 21st through October 25th
Saturday, October 27th, 2007Links for October 21st through October 25th:
- Exclusive: my golden secret about property prices | Matthew Parris: My Week – Times Online – “The number of property owners in Britain now in the position to trade down or divest themselves of real estate without much trouble is so significant that mark my words a plateau will bring a tumble. Our economy cannot float for ever on bidding up the price of each other’s houses.
- Firebug – Web Development Evolved – Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page.
- Simply Blog Archive How to: Install and play Quake on your Symbian Phone! – How to install and play Quake on your mobile. I had Doom on my N70 and I’m looking forward to putting Quake on my N95
- N95 Best Tips and Tricks: Best Tips and tricks for Nokia N95 – Excellent advice on getting the most out of an N95 including many links to useful tools and utilities.
- Python Framework for Symbian Series 60 phones – Very useful info
- GeeXboX uShare UPnP A/V Media Server HomePage – uShare is a UPnP (TM) A/V & DLNA Media Server. It implements the server component that provides UPnP media devices with information on available multimedia files. uShare uses the built-in http server of libupnp to stream the files to clients. GeeXboX uSha
- Getting started – WidSets Developer Site – Getting Started with WidSets Widget Development
- Nokia N95 blog – Essential add-ons for S60 – 1. Nokia add-on stuff – Smart2go a.k.a. Nokia Maps – Nokia Podcasting – Nokia Mobile Search (get the latest version) – WidSets – Barcode Reader (not that useful yet, but loads of potential) – Download! Client a
- Nokia Podcasting – Download podcasts direct to your phone
del.icio.us bookmarks for October 13th through October 20th
Sunday, October 21st, 2007Links for October 13th through October 20th:
- Embedded.com – How video compression works – How video compression works BDTI explains how video codecs like MPEG-4 and H.264 work, and how they differ from one another. It also explains the demands codecs make on processors
- Facebook | Programming Puzzles – I’m not looking for a job – and must be one of the few people on the planet not to have a Facebook account – but these porgramming puzzles look like fun.
- Hacker. Dropout. CEO. – Mark Zuckerberg – Facebook – Social Networking – Good profile of Mark Zuckerberg
- Mike Davidson – How to Snatch an Expiring Domain – Well written account of how to grab an expiring domain
- ii.com · Power Pine: Getting the Most Out of Unix-, Mac- & PC-Pine by Nancy McGough – Advice on setting up pine
- Battle Tanks – “Battle Tanks is a funny battle on your desk, where you can choose one of three vehicles and eliminate your enemy using the whole arsenal of weapons. It has original cartoon-like graphics and cool music, it’s fun and dynamic, it has several network modes”
- ONLamp.com — An Introduction to Erlang – An Introduction to Erlang
- Speaking UNIX, Part 13: Ten more command-line concoctions – Nice command line tips – including the use of tac – like cat, but in reverse!
- Extract and decompile .chm file to view as html file under Linux – arCHMage is an extensible reader and decompiler for files in the CHM format. This is the format used by Microsoft HTML Help, and is also known as Compiled HTML. arCHMage is based on python-chm binding to chmlib from GnoCHM project.
Debian Tip: How to Backup Installed Package List Before Reinstall/Upgrade
Sunday, October 14th, 2007Many 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`