Skip To Content

You are veiwing this either because the browser did not load the stylesheet, your browser does not support web standards as it should, or you chose to disable stylesheets.

Rehuë recommends ! It's a great standards-compliant, open-source, free browser.

Alternatively, you might want to consider upgrading your browser.


Archive for the 'Code' Category

Adding Google Search to your Wordpress Blog

In an article about helping your visitors to browse your content on Blogging Notes, I explained why providing search is important for a blog. In that article I mentioned that you can even make some money by adding Google Adsense for Search to your website.
Google Adsense for Search can display results of searches on your […]

Installing Internet Explorer on Ubuntu

Although my stats prove differently, studies still show that most Internet users still use Internet Explorer 6.
When building websites, it’s important to keep an eye on these statistics, especially since browsers tend to display websites differently. IE up to version 6 have an own agenda when it comes to displaying contents and handling styles. That’s […]

Outsourcing Made Simple

This post is guest blogged by Nathan from NotSoBoringLife.
Have you ever had a really great idea but just didn’t know how to make it happen? Maybe you just don’t have the time to code a site from the ground up. I spend the majority of my days in front of a computer and […]

Using missing PHP5 functions in PHP4

With PHP5 a number of new functions were added. Understandably, these functions won’t work if your web server runs PHP4. But there’s a workaround.
PHP_Compat is a package of files with the missing functionality for older PHP version. Each file provides support for one function, and is usually named after the function.
How do you use […]

Writing Code - Keep it clean

Besides keeping your code organized, the code also should be clean.
There are several explanations to what clean code is. To me clean code is code that is not cluttered with unnecessary tags, functions and bits of code. In modern day tableless design environment a lot of tags can be styled so other tags are not […]

Writing code - Keep it organized

When writing any type of code, whether it’s HTML, PHP, Perl or some other kind of programming language, it is important to write neatly.
In most programming and scripting language it doesn’t matter if you write all the code on one line. The code is then read just like we humans read, from left to right, […]