Oct 17
Hi all, this is my blog.
My name is Chris Hulbert (B.Sci Comp Sci, Hons - UTS). I am a software developer based in Sydney, Australia. I work with Asp.Net / C# at the day job, and Ruby on Rails for fun after hours. This blog is just to vent my opinions and occasionally post up a useful trick I've discovered.
My current project is QuickRosters, and i try to make it to the Sydney OpenCoffee when I can.
If you want my contact details, see my main website: splinter.com.au
Cheers!


[...] Then convert hsv to rgb info (some transformation routines are available here: here / here) and put that into a pixel array. Then upload this pixel array into a texture and draw it. You [...]
Hi Chris; the SHA1 hash in Excel is great; is there an algorithm to convert that hash back to text?
Thanks
Hi Terence,
Hashes don't work that way - they're a one-way thing by design, which is why they're so useful for validating passwords etc. I think what you're after is a different technique, such as symmetric encryption.
Hope that helps