HOW-TO: Take digital photos from a kite
…convert that old digital camera you’re got in your closet to one that takes a picture automatically every second until the memory card is full…read the article
…convert that old digital camera you’re got in your closet to one that takes a picture automatically every second until the memory card is full…read the article
Came across this today:
LOAF is a simple extension to email that lets you append your entire address book to outgoing mail message without compromising your privacy. Correspondents can use this information to prioritize their mail, and learn more about their social networks.
[vist http://loaf.cantbedone.org]
here is a couple of tips for getting subversion and Xcode working together.
defaults write com.apple.Xcode XCSubversionToolPath /usr/local/bin/svn
Since the pbxuser file tracks window positions, file scroll positions, and other information that tends to change often, the differences between any two revisions of the pbxuser file tends to be large. In the context of automatic change notification emails, this tends to be really annoying in that it is this huge chunk of completely irrelevant noise that obscures the useful bits within the notification email. Given that pbxuser is XML, the changes between two revisions aren’t really readable in diff form anyway. Easy fix: tell Subversion that the file is binary. This is simply a matter of setting the mime-type appropriately.cd *.xcode svn propset svn:mime-type application/octet-stream *.pbxuser svn commit -m 'Set mime-type of pbxuser to application/octet-stream to binary.'
I havent tried this out, but it looks interesting: reformed perl. some snips:
Rather than using the cumbersomeuse base 'Parent'you may write:
package Child < Parent;
It is no longer necessary to fish method parameters out of @_:
sub method($foo, $bar) { print "First param: $foo"; print "Second param: $bar"; }
While reading Lightning Articles over at perl.com (I think lightning articles are an excellent idea), I came across CPAN::Mini which is based on an article Mirroring your own mini-CPAN by Randall Schwartz
After search and googleing for an answer a nice fellow in #perl (undernet)
came up with the following:
@LWP::Protocol::http::EXTRA_SOCK_OPTS = ( LocalAddr => q(ip.addr) );