Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

What seems like ages ago, HTML was born. HTML provided a way to structure content and display data. HTML started getting boring and people started hacking it. To suit the needs of the expanding web and the desperate need for web site customization, tags and customization, or stylization, tools came out promptly such as <font>,<center>, and the infamous <blink> and <marquee> tags. Hacking continued and people discovered they could add images to <table>s and combined with all the previous tags could come up with pretty nice looking sites with the expense of completely draining HTML from it’s original application.
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

Here are my favorite ways to debug live and non live sites. The first is great to put in all of your sites from the very beginning so if you ever do contract some kind of bug, you can easily open any file and just use the class. The 2nd is better if used on a non live site or with #1. It will let you see any or all elements either on load or while hovering your HTML elements. Lastly, I have a very short script that you can view generated source code without a plugin and view it in a stylish way as well.
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

With the CSS3 specs showing rounded corners, box shadows and text shadows one has to think, “how long before there is no actual png, gif, or jpg images? How much longer before there is no more ’slicing’?” Take this example. You have a web site that has a main content area with rounded corners, a gradient used for the header and background, and a shadow behind the nav text and a shadow behind the main content.
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

As a programmer JavaScript, CSS, PHP, HTML, XHTML, XML, MySQL, RoR and others are common knowledge and I know when and when not to use them for different applications. People who are not programmers ask what is “X” programming language? What does it do? What is it for?
(more…)
Warning: gzinflate() [function.gzinflate]: data error in /home/boozkerc/public_html/kneedeepincode/wp-includes/http.php on line 1787

First off, I want to say that I take no credit for this idea. This script is heavily based on Jay Salvat script which can be viewed on his blog.
My jQuery script is similar, but has a minor fix for IE7, smaller size and includes built in debugging just by setting the debug var to true. This will alert you of the browser, engine, and the OS of your user. Not only can it be helpful to you, but also clients. I’ve had to deal with more than one client who didn’t know their browser or browser version.
(more…)