2012 Perseid Meteor Shower

2012 Perseid Meteor Shower

Last night I went out to Snowy Range in Wyoming in search of dark skies for the Perseid meteor shower. I wanted something special for the foreground and I knew the Snowies faced in the perfect direction to get this shot. I started shooting at 10pm and didn’t stop until 5 am, I had to change my battery every 2 hours which made for a long night. The moon rose around 1am to light up the mountain range.

This is a composite of 23 images, 22 for the meteors/stars and 1 taken at sunrise for the foreground which was lightly blended in. I also corrected the orientation of the meteors to account for the rotation of the earth (this took forever!) Thanks to Gary Randall for this idea!

I had a great night which was made even better because I spent it with my newly adopted dog Emmie, she was a trooper!

View larger or download wallpaper for free on my website! http://www.davidkinghamphotography.com/night/h626c32b#h626c32b

#starrynights   #perseids #perseids2012

A lesson in shortcuts.

A lesson in shortcuts.

Long ago, as the design of the Unix file system was being worked out, the entries . and .. appeared, to make navigation easier. I’m not sure but I believe .. went in during the Version 2 rewrite, when the file system became hierarchical (it had a very different structure early on).  When one typed ls, however, these files appeared, so either Ken or Dennis added a simple test to the program. It was in assembler then, but the code in question was equivalent to something like this:
   if (name[0] == ‘.’) continue;
This statement was a little shorter than what it should have been, which is
   if (strcmp(name, “.”) == 0 || strcmp(name, “..”) == 0) continue;
but hey, it was easy.

Two things resulted.

First, a bad precedent was set. A lot of other lazy programmers introduced bugs by making the same simplification. Actual files beginning with periods are often skipped when they should be counted.

Second, and much worse, the idea of a “hidden” or “dot” file was created. As a consequence, more lazy programmers started dropping files into everyone’s home directory. I don’t have all that much stuff installed on the machine I’m using to type this, but my home directory has about a hundred dot files and I don’t even know what most of them are or whether they’re still needed. Every file name evaluation that goes through my home directory is slowed down by this accumulated sludge.

I’m pretty sure the concept of a hidden file was an unintended consequence. It was certainly a mistake.

How many bugs and wasted CPU cycles and instances of human frustration (not to mention bad design) have resulted from that one small shortcut about  40 years ago?

Keep that in mind next time you want to cut a corner in your code.

(For those who object that dot files serve a purpose, I don’t dispute that but counter that it’s the files that serve the purpose, not the convention for their names. They could just as easily be in $HOME/cfg or $HOME/lib, which is what we did in Plan 9, which had no dot files. Lessons can be learned.)

I’ve posted about this before and it’s more true than ever: use two-step verification on your Google account. Read…

I’ve posted about this before and it’s more true than ever: use two-step verification on your Google account.  Read Mat Honan’s heartbreaking tale of a hack attack if you still don’t believe me (http://www.wired.com/gadgetlab/2012/08/apple-amazon-mat-honan-hacking/all/). Matt Cutts has a nice summary on why and how to do it, see below.

Please turn on two-factor authentication

Dad Mods Kid’s Electric Car Into Speed Demon

Dad Mods Kid’s Electric Car Into Speed Demon

A kid named Evan may be the luckiest boy in the world. His Dad modded his old pokey Lightning McQueen Powerwheel, getting rid of the plastic wheels and installing metal rims and rubber off-road tires, as well as “dual sealed gel batteries with an output of 24 volts, a 500 watt .66 horsepower electric motor, disk brake, throttle modulated variable speed control with reverse and sparco battery cut off switch,” according to the YouTube blurb.

http://thenextweb.com/shareables/2012/08/07/watch-this-kid-tear-up-the-racetrack-in-a-modified-500-watt-66-hp-pixar-powerwheel-video

Posted first on Google+ by Paul Huckabee