Archive for February, 2009

Feb 19 2009

Flickr automatic astrometry

Published by Ryan under coding, science, space

3290487549_e107745b37_oA project has been set up which monitors the astrometry tag on flickr and hashes photos to determine what in the sky is being looked at. Not only does it add annotations for notable objects to the photo, it will allow compilation of a growing set of located images. Apparently a rotation invariant hashing algorithm was used. This essentially means that the image is converted into a hash code, that will be the same no matter what rotation the image was taken in.

Neat stuff. Via slashdot.

No responses yet

Feb 13 2009

1234567890

Published by Ryan under coding, technology

From Wired:
“… at precisely 3:31:30 p.m. Pacific time on February 13, 2009, the 10-digit “epoch time” clock used by most Unix computers will display all ten decimal digits in sequence.”
1234567890 seconds since the epoch start.

If you have python installed you can see this by opening the idle shell (in start menu) and typing this:

1
2
import time
int(time.time())  #will display seconds since epoch

Or you could have it print a message at the appropriate moment so you don’t miss it (if that’s important to you :) :

1
2
3
4
5
6
7
8
9
def check_time(thetime):
   now = int(time.time())
   if now == thetime:
       print 50*'-'
       print 'time is',now,'!'
       print 50*'-'
 
while True:
   check_time(1234567890)

No responses yet