skip to content

The following is a list of articles tagged 'help'.

Blocking Spam Comments Using a Honey Pot

Posted by Stoo on 1st November 2009

Everyone who uses the internet is familiar with spam and the problems it causes. Most people's familiarity is through its intrusion on email, and I've already outlined how I use gmail to block email spam. Since running this site I've had to deal with a lot of comment spam. It goes in phases but I receive about 2–3 spam comments per week and sometimes as much as 20. And this is a low traffic site. My initial strategy was to delete spam comments as they appear. I receive a notification... more »

Order, Inheritance and Specificity in CSS

Posted by Stoo on 19th September 2009

Some quick notes on an easily misunderstood area of CSS. One thing to remember with CSS is the order statements appear in the stylesheet is important along with inheritance and specificity. So if you have the following: div { background-color: red; } ... snip ... div { background-color: green; } The green background will be applied. This is also true across multiple stylesheets. Rules from stylesheets linked later in the HTML will take precedence over stylesheets appearing earlier... more »

Installing VMWare Server and Running Windows XP on Ubuntu 8.10 Intrepid

Posted by Stoo on 29th July 2009

Recently I was asked to do some .Net development and, unfortunately, my cranky old Win XP laptop is definitely not up to the challenge. Not wanting to buy a new machine or mess with my Ubuntu install I decided to try a virtual install using VMWare Server 2.0. The following isn't exactly a how to, it's more notes and links on what I had to do, so I have any easy reference for next time. A very good walk through of installing VMWare Server on Ubuntu Intrepid Ibex can be found here: How to... more »

32 bit DSN on 64 bit Windows

Posted by Stoo on 18th July 2009

Earlier in the week I came across something which had me stumped for a while. After a lot of training on the Endeca platform I finally had an opportunity to set up an instance for a new site. Unfortunately it was a duplication of an existing site so there wasn't that much to do. Still, I got the tweaked version running on my dev box with no trouble. When I moved it to the staging server it wouldn't work. It consistently failed to connect to the database via a DSN, though the JDBC connection... more »

Using Gmail as a Spam Filter

Posted by Stoo on 11th June 2009

For some months now I've been running Exim4 as a mail server on a linux box. It's been running well since I set it up but I never managed to set up a spam filter. My knowledge of Exim4, and mail server config in general, is limited, so I've been avoiding changing anything unless I have to. Of course, the constant run of spam (in the region of thirty or forty emails per day) finally annoyed me enough to do something about it. I didn't want to set up and configure SpamAssassin, or similar... more »