Posts Tagged ‘Programming’

The League of Justice (i.e. the StackOverflow trilogy) stickers arrived today in the mail! YAY YAY YAY! Somehow or other, there were two StackOverflow stickers, along with a ServerFault and SuperUser one, in my envelope, when there should have been only three total, but this is awesome! I will post pictures of the stickers soon!


Every month, StackOverflow, the brilliant and completely open question and answer site for programmers, releases a Creative-Commons licensed dump of their database. You can download this huge dump yourself, but it’s typically a very large file, and then comes the hassle of getting the XML files into a database of your choice. Now, there is [...]


On Tuesday, the awesome guys at Stack Overflow finally gave us addicted users a chance to receive some trilogy stickers! A few weeks ago, they received their order of 40,000 StackOverflow, ServerFault, SuperUser, and How-To Geek stickers, and now, if users send in a self-addressed stamped envelope, they will find some sitting in their mailbox [...]


 In my last post, I explained what truly went on in the Twitpocalypse, which dealt with tweet IDs passing the limits of the 32-bit signed integer (from -2,147,483,647 to +2,147,483,647), which is the most common datatype in use in computer applications today. Yet, whilst computer science has limits embedded into its structure, Twitter does not [...]


Numerous friends have asked me about this whole Twitpocalypse thing, as they just don’t get it. “What’s this whole deal with signed integers?”, they ask. Well I’m here to clear that up, as I do programming, and in programming, if you don’t know such basics of computer science, you’re doomed.
What the predicters of the [...]


You may or may not have heard of GUP, but it is used in numerous programming projects for updating purposes. GUP is an acronym for Generic Updater, and it was originally developed for NotePad++, one of my favorite text editors. As you can guess, by “generic”, the developers mean that you can use GUP in [...]


I’ve always wanted to experiment with creating “sessions” on websites to mimic real users browsing and using a site, and I’ve finally gotten around to a project that involves this: my goal is to “wrap” an online database that is queried through a series of HTML forms, returns a map, and then allows you to [...]


If you’re a .NET developer, admit it: you’ve at least once felt curious about how the underlying APIs behind the .NET Framework are coded, how certain functions are implemented, or whether one core function is more efficient that another. Well, this is where the trusty program named .NET Reflector comes in. As the title suggests, [...]