I light of the U.N.’s recent recognition of the state of Palestine (sort of), here’s a short video on the region’s history:
Straight From Mount Doom
Here is the newest die in my collection: a handmade six-sided die from lava stone from Mt. Vesuvius in Italy:
This die was made as part of a Kickstarter project called Eternity Dice. It doesn’t seem to photograph very well.
While it has an unpleasant smell, it will still fit into my collection nicely…
There is a Great Disturbance in The Force…
Oh no. Disney is buying Lucasfilm!
My first reaction:
The official press release:
From USA Today:
“Disney expects to more aggressively expand the Star Wars film schedule, Disney CEO Robert Iger said in a statement. Following the release of Episode 7 in 2015, “our long term plan is to release a new Star Wars feature film every two to three years,” Iger said in the statement.”
Well, that could be good. I don’t really know what to think about this right now.
Determining Assembly Compile Time in VB.NET
I recently came across a function for determining the date and time a .NET assembly was compiled on. This works for EXEs and DLLs.
Apparently, the date and time that the compiled objects of an assembly are linked together is stored in the header of the final output as a count of the number of seconds that have elapsed since midnight on Jan 1, 1970. Here’s the function that reads this information from the file header and returns it as a DateTime variable:
''' <summary> ''' Returns the date and time that the specified assembly was compiled on. ''' </summary> ''' <param name="filePath">A full path to a .NET assembly.</param> ''' <returns>A DateTime value.</returns> Function RetrieveLinkerTimestamp(ByVal filePath As String) As DateTime Const PortableExecutableHeaderOffset As Integer = 60 Const LinkerTimestampOffset As Integer = 8 Dim b(2047) As Byte Dim s As IO.Stream = Nothing Try s = New IO.FileStream(filePath, IO.FileMode.Open, IO.FileAccess.Read) s.Read(b, 0, 2048) Finally If Not s Is Nothing Then s.Close() End Try Dim i As Integer = BitConverter.ToInt32(b, PortableExecutableHeaderOffset) Dim secondsSince1970 As Integer = BitConverter.ToInt32(b, i + LinkerTimestampOffset) Dim dt As New DateTime(1970, 1, 1, 0, 0, 0) dt = dt.AddSeconds(secondsSince1970) dt = dt.AddHours(TimeZone.CurrentTimeZone.GetUtcOffset(dt).Hours) Return dt End Function
I found this function at http://www.codinghorror.com/blog/2005/04/determining-build-date-the-hard-way.html
For more info, check out http://msdn.microsoft.com/en-us/library/ms680313
Aqua Something You Know Whatever
I never thought I’d say this, but the intro to Aqua Teen Hunger Force (or whatever it’s called now) has gotten really, really weird:
Breakfast of Champions
No matter how early in the day you wake up, a 6:00 am beer is not really a good idea.
:-P
In Dreams
Only in a dream could I, Denis Leary, and Salman Rushdie be working together to try and find the person who stole a box of my old university textbooks from a Zellers store.
We did not find the person responsible.


