Put a feather in his cap...
Wikipedia: maccaroni
So that's what the lyrics are about.
Emissions of an absent mind.
Wikipedia: maccaroni
So that's what the lyrics are about.
at 08:13 0 comments
Labels: language
GPS cellphones to unleash gamers onto the streets - tech - 05 August 2008 - New Scientist Tech:
"But being able to discover the physical location of other people has downsides. Researchers at Portsmouth University have had to abandon GPS games projects because they cannot get approval from the ethics committee.
'Already there are social networking applications for the GPS iPhone which let you see where other iPhone users are,' says Andy Bain, lecturer at Portsmouth University's School of Creative Technologies. 'If I were a thief I'd abuse that knowledge right away to get myself more iPhones.'
Commercial games developers are not subject to the same ethical scrutiny as academics, he adds. It could be left to their customers to work out how to avoid anti-social gamers."
"But think about this. Supposing you were to introduce a psychic, someone with clairvoyant powers, into the experiment — someone who is able to divine what state of health the cat is in without opening the box. Someone who has, perhaps, a certain eerie sympathy with cats. What then? Might that furnish us with an additional insight into the problem of quantum physics?"
"Dirk, this is complete nonsense."
at 11:51 0 comments
Labels: games, gps, software development
I've just tried to compile the subversion 1.5.1 client from its two source tarballs (subversion-1.5.1-tar.bz2 and subversion-deps-1.5.1-tar.bz2). I took care to first hide the /usr/local libraries from my existing subversion installation. Even so, the compilation failed, complaining
/usr/lib/libexpat.a: No such file or directory
#!/bin/sh
set -e
VERSION=1.5.1
rm -rf subversion-${VERSION}
tar xjf subversion-${VERSION}.tar.bz2
tar xjf subversion-deps-${VERSION}.tar.bz2
cd subversion-${VERSION}
./autogen.sh
./configure --without-apxs --with-ssl
make
sudo make install
sudo make install-swig-py
at 17:50 0 comments
Labels: os x, software development
These aren't really new. I just wasn't aware of them.
Command-S
, the bundle automatically runs it through jslint. If any errors or warnings are found, a tooltip appears which shows the number of warnings/errors.Control-Shift-V
, you'll get a popup window showing "compilation" results -- complete with syntax errors and clickable links to take you to the offending source code.$ cd ~/Library/Application Support/TextMate/Bundles
$ svn export http://bundles.bundleforge.com/trunk/bundles/JavaScript%20Tools.tmbundle/
Bundles->Bundle Editor->Reload Bundles
.$ cd ~/Library/Application Support/TextMate/Bundles
$ curl --location --get http://github.com/sproutit/sproutcore-tmbundle/tarball/master -o sproutcore-tmbundle.tar
$ tar xf sproutcore-tmbundle.tar
--location
option is required, since github will issue a redirect.$ mv sproutit-sproutcore-tmbundle-blah-blah.../ Sproutcore.tmbundle
at 11:50 0 comments
Labels: javascript, os x, software development, textmate, web development