Christian Heilmann

Author Archive

Why is the end of the year always utter sh*t?

Tuesday, December 20th, 2005

I am on my first day of end of the year holiday now, and just went through all the mail, as I will be gone till the 3rd of January to visit my family and party with some friends over New Year’s in Munich. I was happy to have a fat, round 4 figure on my bank account which means I can spend something on my family – like taking the dog to the vet as father is too tight to pay “that much for a pooch” and mother is very concerned. Well, I was wrong. It seems the UK system cannot stand a person that lives on his own wage and never had an overdraft. (more…)

Automatic AJAX translator tool

Monday, December 19th, 2005

Just stumbled upon this Translator tool using AJAX which translates text you enter in realtime into other languages. My, I don’t want to see the traffic stats of this one.

Neat though.

Wonderful examples of gobbledegook nominated by The Plain English Campaign

Wednesday, December 14th, 2005

Every year the Plain English Campaign nominates publications for being the worst and hardest to understand.

The examples of this year’s winners on the BBC site are a real sight to behold, my favourite being this recipe for involuntarily electrocuting yourself:

6. Poole Lighting Limited for a sheet of instructions – “3. The switched main live is generally a single black wire and this is connected to the brown wire(s) on the fitting. On a wall light this should be a single red wire. The neutral is generally two black wires and these are connected to the blue wire(s). On a wall light this should be a single black wire. The mains earth wire(s) must be connected to all green/yellow wire(s) or earth terminal on the fitting. When completed ensure that there are no bare or loose strands of wire exposed, and cover all exposed areas of terminal blocks with insulation tape.”

Funnily enough I fail to find anything on this publication on the PEC site itself, which is not a good example that you can be usable, accessible and pretty…

How to remove the ugly border around an image in a link

Wednesday, December 14th, 2005

Common issuesThis question pops up almost weekly on message boards, mailing lists and in chat sessions:

How can I remove the ugly border around an image when it is linked?

I am amazed that this is still a question that needs to be asked, but the trick to remember is that when you put an image inside a link, like:


products

Then the browser puts a border around the image in the colour of the link. Therefore, changing the link border setting will not have any effect:

a {border:none; }

Instead, you need to set the image border to “*none*”:

 a img {border:none; }

It might be a good idea to define this as a preset in the beginning of your style sheet, to avoid the need to repeat it over and over again.

Also notice that the setting is “border:none”, which tells the user agent that there should not be a border – if you use “border:0” you expect the User Agent to know how to display a border with a width of 0, which might not be possible.

I hope that this is going to be a post to show up high in google sooner or later, much like the ugly yellow form fields one.

[tags]webdevtrick[/tags]

CAPTCHA Alternatives for a commercial product?

Tuesday, December 13th, 2005

Right now I am working on a project that will be a paypal-esque financial application, and of course security is a big issue with this one.

We had a great meeting talking about security measures that could be added to the forms to ensure that only real users will be able to log-in.

I collected the ones I could think of based on the W3C whitepaper and own experiences and this is the list with pro and contra for each of them: (more…)