Check out our newest creation Tutorial Grad. The automated tutorial directory.

Subscribe to our rss feed

Handling Errors To Prevent Application Crashes in VB

Posted in Programming Tutorials, Visual Basic 2005/2008 by Mike Maguire on the February 27th, 2009

This tutorial will walk you through a very simple but extremely useful function in programming. When you write code you can never guarantee that specific requirements will be met upon execution and therefore errors are always a possibility. As a coder you need to be able foresee these types of issues and catch them before the application crashes and requires the user to restart it and even worse, lose data that they may have been working on.

Popularity: unranked [?]

How to Get a Users Geo Location?

Posted in PHP Tutorials, SEO Tutorials, Web Development Tutorials by John Ward on the February 22nd, 2009

Every wonder how all of those dating ads know that you are looking for hot girls near (insert your city here)? Well if you are a complete nerd like me you probably ignored the hot girls and wondered: “How did they know where I live?”. There are a few simple ways to do this. Today I am going to show you how to GeoCode using MaxMind’s free version.

MaxMind offers a paid version of this script that probably offers much more functionality. For what I need though, the free database does the job. I checked the results via a few proxies …

Popularity: unranked [?]

Convert a MySQL date field using PHP Functions

Posted in Database Tutorials, PHP Tutorials, Web Development Tutorials by John Ward on the February 20th, 2009

Today I am going to show you how to convert data returned from a MySQL database that was store as a date data type into a user friendly format. To do this you can take two different approaches. One way to do it is to use the function date_format() function in your query. The other way to to modify the date after it is returned.

Popularity: unranked [?]