Archive for July, 2009
-
How to use MD5 and SHA in C#
Thursday, July 16th, 2009
EDIT: To remove the ‘-’ in the hashes, replace your ‘return’ line with this:
Regex.Replace(BitConverter.ToString(hashedBytes), “-”, “”);
Hashing in C# is quite a bit different then languages like PHP. In PHP to hash a string via MD5 you would simply use the md5 function as so:
md5(“string”)
Let’s stop complaining and get right down to it.
Create a new Console [...] -
WotM, Once Again
Thursday, July 16th, 2009
Well it’s that time of the month again. And Infinite Resolution was (again ) nomitated for the title. I’m not gonna ask you to vote for me, I’m gonna ask for you to vote for whichever site you think is the best.
By the way, look for another post today with a little C# [...] -
3GS & WPF Apps in the System Tray
Tuesday, July 7th, 2009
http://gizmodo.com/5307693/iphone-3gs-unlocked-with-purplera1n-%252B-ultrasn0w
http://tippu.blog.co.in/2009/03/09/wpf-placing-your-wpf-application-on-the-system-tray/
First, I just learned that the 3GS is now jailbreakable with publically accessable tools for both Windows and Mac. I don’t have one, but this is great news. The iPhone Dev-Team Blog also has a post regarding the release of their own version of the jailbreak. There’s more to it than this but if you [...] -
Firefox 3.5
Thursday, July 2nd, 2009
Firefox 3.5 has been released! One of the first things you may notice is the nice shiny new icon. Why should you upgrade? Look at these.
Support for HTML5 <video> and <audio> tags
Private Browsing Mode
New TraceMonkey JavaScript engine
You can now share your location with others using Location Aware Browsing
Faster content rendering
New Web Tech like downloadable fonts, [...]
