April 11th, 2012

Make a Random Password Generator with PHP

Sometimes you just want to use a different password that is more secure than what you normally use. It's not always easy to get that password. Dreaming one up typically means that you will use at least some portion of the password that is associated with something you know.

On the other hand, you may want to create an automatic registration system (such as in an e-commerce site) that automatically creates a random password the first time someone purchases something.

Creating a random password generator means that you can easily generate secure passwords on the fly. The code that you will be needing to accomplish that is listed below. (more…)

April 1st, 2012

iPad voice dictation (Siri on the new iPad)

Mac

While I do love Siri on my iPhone, admittedly I only use it for dictating emails and texts. It is a huge timesaver.

So when I heard that the new iPad would have a faster processor I was excited that it too would come with Siri. While that was not the case, the Apple website said that it would have voice dictation, which is really all I need anyways. (more…)

March 11th, 2012

Play Orcs vs. Humans online free

In the… latest version of the classic Tower Defence game, you have to defend your land and towers from the invading Orcs.

Drop a comment to tell everyone your score! (more…)

January 10th, 2012

How to add Google Rich Snippets

It would appear that pretty much anyone can add rich snippets for any site. I certainly hope that Google finds a way to prevent this 'gaming' of their SERPs, and soon. (more…)

January 8th, 2012

PHP: Parse a Substring without Chopping Words

Often times you need cut off a specific string of text to get just a piece of it, perhaps to fit an excerpt of the latest news on your homepage. When you want to do that, you'll need to use the substr() function to do that. The main problem with this though, is that if you create a substring of certain length, you can easily cut words in half and lose their meaning. You need to be able to create a substring that keeps words intact. There are a couple methods that you can use to do this.
(more…)

Next Page »