Archive for October, 2006

Firefox and Safari, implement the Zoom feature!

Published on Tuesday, October 31st, 2006

Say that you’re using a web page and you find the text, the images or the layout in general too small. What do you do? Some web browser makers understand just how important this issue is and some don’t; some have set a good example and some still linger on under the impression that being able to resize text is sufficient.

Who are the good guys here? Microsoft and Opera.

Continue reading

Naked coding

Published on Friday, October 27th, 2006

I was thinking about whether to write this post or not, but here it is. I have a confession to make: I have coded naked. No, not at work or amongst other people, so don’t worry… :-)

Continue reading

Posted in Developing, Fun | 33 Comments

A blog without comments isn’t really a blog

Published on Wednesday, October 25th, 2006

To me, a blog with no possibility to comment isn’t a real blog. The web is such a living medium with possibilities for everyone to control their content, give feedback in numerous ways and basically have every web site relation as some kind of dialog with the web site owner.

Then we have the people who blog and doesn’t accept comments…

Continue reading

Want to take your JavaScript knowledge to the next level?

Published on Wednesday, October 25th, 2006

Have you dabbled with JavaScript for a long time but feel that you don’t really know how to get to the next level? Or are you one of the recent converts that till only recently only knew HTML and CSS, but has come to the realization just how cool and funky things you can achieve with JavaScript?

If you want to get really good at JavaScript and definitely move on to the next level, I have something for you to read.

Continue reading

Upper- or lowercase hex codes in CSS?

Published on Monday, October 23rd, 2006

When you write your CSS code, do you use upper- or lowercase hexadecimal codes? I.e., does it look like this: #F2F2F2 or this: #f2f2f2? Personally, I used to go the uppercase route but has now officially switched to lowercase.

What’s your preference?

Posted in CSS, Developing | 69 Comments

How to run IE 7 and IE 6 side by side

Published on Sunday, October 22nd, 2006

Now that Microsoft has released Internet Explorer 7 and the whole web development world is trying to figure out what works in it, and, more importantly, what doesn’t (let’s just not go there right now, ok?), I thought I’d give you some solace to your doubts whether to install it or not on your main Windows machine (most likely you have doubts what will happen to IE 6, which you, unfortunately, still need to test in and cater to, for a long time to come).

Continue reading

Picasa Web Albums - A serious Flickr contender

Published on Friday, October 20th, 2006

When I wrote my post about the Flickr photo service, I promised that I’d review another one within the next week or so. Well, as we all know, time flies but now I’m ready to tell you about a service that I believe have a serious potential to become a Flickr contender.

This is Google’s picture service: Picasa Web Albums

Continue reading

Apple, grow up and act professionally

Published on Thursday, October 19th, 2006

Recently a minor number of Apple Video iPods were shipped with a virus, namely RavMonE.exe. What do Apple do? Well, blame Microsoft, of course.

Continue reading

Minor bug fix for GLT

Published on Thursday, October 19th, 2006

With GLT, a side-effect happened in Firefox when using GLT for any link; the status text simply wasn’t shown in the web browser status field. This issue has now been addressed. Just download the new JavaScript file and things should work fine.

Please let me know if you encounter any problems.

The answers to the “Looking for a good interface developer?” questions

Published on Tuesday, October 17th, 2006

When I wrote Looking for a good interface developer? Here’s what to ask to make sure you’ve got the right person, I wasn’t sure if I should reveal the answers to you or just let you do the research yourselves. However, I came to the conclusion that this web site is really about sharing knowledge, and also that some of you might have some good extra input on my answers.

So, here are some answers and links to more information about the questions:

Continue reading

Undermining freedom of expression in China - The role of Yahoo!, Microsoft and Google, by Amnesty

Published on Monday, October 16th, 2006

In July this year, Amnesty International published their report Undermining freedom of expression in China - The role of Yahoo!, Microsoft and Google, where they discuss and analyze these companies values compared to their actual actions (direct PDF link, 32 pages, 504 KB).

Continue reading

People who visit this web site (some statistics)

Published on Friday, October 13th, 2006

For those out there who are interested in statistics, or want to know more about the other readers of this web site, I’ve put together a little overview of the visitors.

It contains information about countries people come from, what platform they’re on and what web browsers they are using.

Continue reading

Career choice - King Arthur or Merlin?

Published on Thursday, October 12th, 2006

If you had to choose between being King Arthur or Merlin, which one would you go for? And why?

Posted in Fun, General | 13 Comments

Looking for a good interface developer? Here’s what to ask to make sure you’ve got the right person

Published on Wednesday, October 11th, 2006

Are you perhaps looking for a talented interface developer? You’ve heard that web standards and perhaps accessibility is good to have experience with, but you don’t know how to determine the applicants’ experience.

Don’t worry anymore, I’ve put together a check list of what to ask to make sure they’re suitable and in the loop with proper and modern web interface development.

Continue reading

Accessibility is seldom just up to the interface developer

Published on Tuesday, October 10th, 2006

When developing a web site, amongst the initial questions is what level of accessibility one wants for it and what eventual extra measures are needed to achieve that. Sure, if you’re an experienced interface developer, you naturally write semantic HTML, use alt texts and try to avoid making the web site in question JavaScript dependant, and so on.

But, let me tell you something: you can be the best damned interface developer in the world and then still, in the end, you stand there with an inaccessible web site. What happened?

Continue reading

How to write a smiley

Published on Monday, October 9th, 2006

Maybe it’s just me, or maybe I share this feeling with other people. What, you ask, what? I can’t stand how people write smilies…

Continue reading

Posted in Fun, Technology | 28 Comments

Lost, season three, is finally here - do we ever want Lost to end?

Published on Sunday, October 8th, 2006

Season three of Lost has just begun, and episode one is outstanding! The first five minutes probably had me sitting with my jaw dropped, and the “reward” scene had me laughing out loud (don’t worry, there will be no more spoilers here)!

Let me try and speculate here why Lost is so good and what I think about its future.

Continue reading

An amazing turnout for Geek Meet Stockholm!

Published on Friday, October 6th, 2006

Last night we had Geek Meet in Stockholm, and we had an amazing turnout! Over 30 people showed up, and to tell you the truth, it was a blast! Many familiar faces but also a lot of new ones that seemed to enjoy themselves.

Continue reading

ELO - Encapsulated Load Object - The ultimate way to handle window load events

Published on Tuesday, October 3rd, 2006

Updated April 11th

Changed so it will work fine under https as well in Internet Explorer.

If you like this, you might also be interested in DOMAssistant.

Most people who have worked with JavaScript has cursed the time it takes to apply JavaScript to the document (events, for instance) because you’ve waited for the whole document to load. The problem is that we have relied on the onload event to be triggered and that doesn’t happen until all HTML code and every image and other dependency has loaded. In most cases, we want to have our scripts as soon as the DOM has finished loading and not wait for images and their likes.

Therefore, I have with great interest followed the work of Dean Edwards, together with Matthias Miller and John Resig, and the exciting conclusion they came to in window.onload (again).

I really like the gist of it and the implications it brings, but I wanted to make it more flexible for any number of load events. Therefore I created ELO - Encapsulated Load Object.

Continue reading

Win a 1 GB iPod Shuffle - Name your favorite HTML element

Published on Sunday, October 1st, 2006

The competition is now closed: we have a winner!

First, let me sincerely tell you that I’ve thoroughly read every motivation, and many of them were outstanding! You are really smart and funny people, and you all deserve one iPod Shuffle each (no, it’s not going to happen :-)! Thank you for all your wonderful contributions!

In the end, I went for something simple and a bit philosophical, and would proudly like to announce Barry Allison and his motivation the winner of this contest. Congratulations Barry!

Ok, here’s the deal. For the next couple of days I will be very busy, so I don’t find it likely that I will be able to find the time to write. But don’t worry, I think I’ve found a way to make it up to you: a contest!

Continue reading

MySpace Layouts are themse for your myspace profile. They can be found at all4myspace.com. Find more than 105,000 myspace layouts.

Top results