Archive for August 22nd, 2006

Battery Driven Car : Tesla

AddThis Social Bookmark Button

Yes, I realize this is an fairly stale article, but I had originally planned on posting a while ago but had forgotten about it. I don’t think $80k puts it within my price range, nor the fact it runs on highly volatile lithium ion batteries, but hey, its still pretty darn spectacular.

See the wired article

Converting .NET DateTime to UNIX Timestamp

AddThis Social Bookmark Button
Note to self:
How to convert .NET DateTime to UNIX timestamp (as in PHP, etc.)
int timestamp = (DateTime.UtcNow – new DateTime(1970,1,1,0,0,0)).TotalSeconds
and convert a Unix timestamp to an ASP.NET DateTime value:
DateTime date = (new DateTime(1970,1,1,0,0,0)).AddSeconds(datestamp)