a.k.a. #googmayharm
At first, I thought I had been hacked:


How do you see or find untracked files in your Git working copy that Git ignores?
Files which do not show up in git status because they match a pattern/line in .gitignore or .git/info/exclude with this command:
Git 1.6:git ls-files --others -i --exclude-standard
Git 1.4, 1.5:git ls-files --others -i \
--exclude-from="`git rev-parse --git-dir`/info/exclude" \
--exclude-per-directory=.gitignore
cd mysite; /usr/bin/python manage.py runserver
Traceback (most recent call last):
File "manage.py", line 18, in <module>
InstallAppengineHelperForDjango()
File ".../mysite/appengine_django/__init__.py", line 440, in InstallAppengineHelperForDjango
There are two simpletest modules for Drupal 6. The 2.x branch (currently at 6.x-2.5) is a backport of the unit testing framework that will be included in Drupal 7.
Unfortunately, error handling is not very good and it is possible to get inscrutable errors like this when running a test:
Running SimpleTests
An error has occurred.
Please continue to the error page
An error occurred. /batch?id=30&op=do
Curious about the Google App Engine, I started playing with it, which meant writing code in Python.
Unicode support in Python seems to be a tangle of confusing function names, source code file encodings, backslash escapes, the letter "u" before strings, and probably other things. Together, this smells to me like the language originally didn't support Unicode, but wanted to keep backward compatibility with pre-unicode-support scripts.
A MySQL schema for the domestic part of the geonames database. If you find any errors, please leave a comment below.
Based on the name, the dkms-ndiswrapper-1.48-1.fc8.rf claims to support Fedora 8. It is the latest version from the yum repository. Unfortunately, it no longer seems to compile (much less install) correctly.
A dip in Google search traffic during the three minute moment of silence on May 19 mourning the victims of the Sichuan Earthquake.
I found this command line online for converting videos to H263 .3gp files in Linux:
ffmpeg -i inputfile.avi -s qcif -vcodec h263 -acodec mp3 -ar 8000 -ab 32 -y outputfile.3gp
It seems to be a bit out of date, as it gives:
WARNING: The bitrate parameter is set too low. It takes bits/s as argument, not kbits/s
Unknown encoder 'mp3'
Those two problems are easily fixed: