September 1st, 2009 by Kevin
Object-oriented programming (OOP) is a programming paradigm that uses “objects” – data structures consisting of datafields and methods – and their interactions to design applications and computer programs. Programming techniques may include features such as information hiding, data abstraction, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until [...]
Read More
August 2nd, 2009 by Kevin
As of PHP 5.3.0 Magic Quotes have been deprecated. Thank gosh. And they will be totally removed in PHP 6.0.0. That’s just one of the many things that have been deprecated in PHP 5.3.0 Register Globals will suffer the same fate as Magic Quotes. PHP Safe Mode was also deprecated. That’s just a few, you should [...]
Read More
July 16th, 2009 by Kevin
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 [...]
Read More
July 16th, 2009 by Kevin
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# [...]
Read More
July 7th, 2009 by Kevin
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 [...]
Read More
July 2nd, 2009 by Kevin
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, [...]
Read More
June 22nd, 2009 by Kevin
For me, shelling out the $10 for the upgrade on my iPod Touch 2G was worth it. There are some things that are really quite nice. Such as being able to seek more intricately through songs, push notification, and other major features.
However there are quite a few smaller things that make OS 3.0 more visually appealing. [...]
Read More
June 17th, 2009 by Kevin
That’s right! The iPhone OS 3.0 has just been released! In order to get the new firmware you’ll need iTunes 8.2.
This update is free to iPhone users and is $10 for iPod Touch users.
Read More
June 17th, 2009 by Kevin
Well acording to xspoon on Twitter, the iPhone OS 3.0 should be released at the following times:
10 AM Pacific
11 AM Mountain
12 PM Central
1 PM Eastern
Boot up iTunes and get ready for the upgrade!
Read More
June 8th, 2009 by Kevin
WPF vs. Windows Forms « Josh Smith on WPF.
I’ve always wondered about those two options in Microsoft Visual C# .NET The question of whether to use WinForms (Windows Forms) or WPF (Windows Presentation Foundation). The above blog post has given me the answer.
Just wanted to share it with you. I hope any of [...]
Read More