Animate Elements with CSS Animations & JQuery

Today, I wanted to feature a technique I have been using which quickly allows me to animate elements on a page with CSS animations.  It will loop through each element on the page  based on a CSS class and intermittently add an animation to that...

Force Reload on a Hash or Anchor Change with JQuery

I had a JQuery function that detected if there was a hash/anchor tag appended to the loaded URL.  If there was, it would scroll to the anchor tag on the page. This was the function: $(document).ready(function() { var hash = window.location.hash; if(hash) { $('html,body').animate({scrollTop:...

SPAN Simple Responsive Fluid Minimalistic CSS Framework

In an attempt to offer some sort of contribution to the web development world, I have decided to put out the SPAN Simple CSS Framework. It’s meant to be a very minimalistic, out-of-the-box CSS framework, and I use the term ‘framework’ very loosely. A...

Get the Real URL of a Tiny URL in PHP

A while back I set up a website, songdump.com, that allows me to post Youtube videos of songs I really like. But, I’m lazy, and I wanted to use the least amount of effort to accomplish this. I ended up setting up a If...

PostFix Local Loop in PLESK

THIS ARTICLE IS A SOLUTION FOR PLESK 10.4 AND EARLIER. TO VIEW THE MOST UPDATED ARTICLE, VISIT HERE The problem A while back, I was having an issue with my mail not being delivered. I would write a function using and it would successfully...

Headers Already Sent Error in WordPress Plugin Activiation

Before I could even start writing plugins for WP, I was experiencing errors. This was the biggest message I got upon activation : The plugin generated # characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds...