Sweet SEO Tools

Here is a list of some of my favorite SEO tools. Check back periodically for updates. Read more

Adding Social Share Buttons

I spent the better part of the day learning how to add social share buttons to a site since it can “increase inbound traffic by up to 149%.” I found, much to my chigrin, that each of the various social networks handle their share API very differently.
Read more

Relational Theory Can be as Fun as It Sounds

Learning about the relational model and relational theory has been interesting. Here are some things I’ve learned thus far:

Read more

A Classic

I’ve been working a lot lately with random numbers. I have developed a random number generator that uses the normal distribution curve as the basis for the random numbers. So it creates random numbers that are normal xD.
Read more

Building Logic Gates

I found a good resource for building logic gates from transistors.

HyperPhysics

Circuits on Minecraft

Breadboarding has also brought some curiosity regarding redstone circuits in Minecraft. I’ve been playing around with different logic gates. I made a short video that overviews the various logic gates you can make with redstone.

Read more

Breadboarding Basics

I’ve started getting into breadboarding lately.
Read more

Regarding Themes

I am having a hard time deciding on a theme which I genuinely like. I will try this one for a while and see if I like it.

ID3 Reader

A girl holding a WalkmanLately I’ve been working on a PHP script that is able to parse an ID3 tag. It took some time, but I’ve successfully finished with version 1.0.

I spent some time reading the ID3 spec to figure out what exactly I was parsing. Read more

Comparing Dates with PHP

The White Rabbit Checking the TimeWhen working with dates, time and calendars it becomes a pretty common requirement to compare dates-Testing whether a date occurs after or before one date, whether an event occurs between two specific times, etc. The easiest way to work with dates in PHP is with the DateTime object.

Obviously for us (as humans) it is pretty easy to see that my party is not during my shift. On the other hand for the computer to see this is a whole other issue.

Read more