August 2006 Archives
Though weblogs are the perfect example of periodical publications, in many countries they are not liable for ISSN codes. After the Spanish standards organisation denied an ISSN request, a group of bloggers created the IBSN, the Internet Blog Serial Number.
In a short time an IBSN wiki was created and of course there is an IBSN weblog. And finally a handy PHP scripter created a tool to manage all IBSN numbers.
Since a support their cause and because you can never have enough buttons and banners on your weblog, I requested an 'official' IBSN code for Brain Tags:

It has been a long time ago since I last posted a little bit of listening pleasure. To make up for the long waiting time, I have uploaded two great punk covers from Me First & The Gimme Gimmies: Summertime and Favorite Things. Enjoy it!

Amazon.com launched a new affiliate tool this week called aStore. This tool allows you to create your own themed Amazon store and embed the store on your web site. The tool is very easy to use and allows you to create a site complete with product reviews and full product descriptions. They have even added some widgets that automatically display lists and similar items. There have always been ways to display lots of Amazon content on your web site, but this is a much more robust and easy to implement option.
Of course I could not resist playing around with it, so I created my own little store and filled it with products related to David Allen's Getting Things Done productivity methodology: books, labelers, moleskine notebooks, PDA's...
I am planning to embed the aStore in my new GTD related weblog, but until that I will only publish an ungly Amazon aSTore link to my Getting Things Done on-line shop.

One more week to go until the start of our holidays. Yes, we go when everybody else already forgot about their holidays.
Our plans are simple: we are going to spend one week in the Netherlands, and two weeks in Andalusia. We've tried to visit my family before, but the flights were simply too expensive in the high season. So we decided to use part of our holidays to visit my family and our friends. As we have plenty of time, we will go up by car, saving a few bucks along the way.
After that we plan to spend some days at home to pick up our tent, and drive further down to Andalusia. In the almost five years that I live here, I haven't seen a lot of Spain besides Catalonia. Of course there is plenty to see over here, but I feel a little bit ashamed of my lack of knowledge about the other parts of this country. The two weeks we will be spend in the south will be a little start in getting to know more of Spain.

I joined the Google Adsense program before I started using GMail. As a result of this, I have to logins for Google's services: the old e-mail for AdSense and my Gmail account for using all other Google service.
I was fed-up with this situation, so I decided to look at the AdSense help pages for instruction on how to combine my two accounts. I found the following:
Right now, it isn't possible for AdSense publishers to update their email address directly from within their account. If you require an update of the email address associated with your AdSense account, please follow the instructions below to help us assist you.
- Draft a new email. If possible, please use the email address currently associated with your AdSense account
- Write 'Login change request' as the subject of your message
- Please include all of the following in the body of your message:
- The email address currently associated with your account
- The email address you'd like to use as your new account email address
- The date of the first day your account registered AdSense impressions
- The number of page impressions registered on your first day of impressions
- Send this email to adsense-support@google.com
I collected all the necessary information, and requested a change to my Gmail account. This was their reply:
Unfortunately, I'm not able to update your AdSense login to a Google Account or a Gmail address because our system doesn't support this type of change at the moment. I sincerely apologize for the trouble this causes you, and I thank you for bearing with us as we work hard to extend this option to AdSense publishers in the future.
I can, however, update your AdSense login to a non-Gmail address if you prefer. You can simply reply to this email, providing the desired email address in the body of your response, and I'll take care of your request as soon as I'm able.
WTF?! Google does not have the possibility to merge accounts???? If I sign up with Yahoo! I can use that e-mail account for AdWords, but I can't use a GMail account? Great way to send customers to the competition! They've got some work to do then, since all those acquisitions they make will only bring more people like me with double accounts. It cannot be that hard, right?

Yes, the 43 Folders podcast is my favourite podcast. There are a few reasons why I consider it my favourite. Besides the obvious reasons such as "Merlin Mann is a geek like me", and "I am obsessed with productivity tools" there is another difference between the 43 Folders podcast and 99% of all the other podcasts out there.
I am happy to say that I rarely receive spam. But today a message slipped though my defence lines using a tactic I did not see before: they sent me a simple, innocent message with a Word file attached.
In my curiosity I opened the invoice.doc attachment, and was greeted with "Back2School Software":
Apparently the current generation of spam filters has gotten to the level where the only spam getting through are unreadable V1^Gr^ messages, and they are desperately looking for new ways to get their message across. Though probably many people that otherwise would read the e-mail won't open the Word document, the possibilities to create a readable message makes this a viable spam method. As far as I know, few spam filters look at the contents of attachments, but that is about to change.
At the moment the spammers are once again one step beyond the filters...
[Update 2006.08.14]: More and more bloggers report the same problem, and several experts discuss on how to scan Office attachments for spammy messages.
Personal finance is the application of the principles of finance to the monetary decisions of an individual or family unit.
I have a love/hate relationship with personal finance. Ever since I have a computer I have been trying to get a grip on finances, with changing results.

As of version 3.31, Movable Type natively supports tags.
Tags are keywords or descriptive terms associated with an item as means of classification. Unlike categories, an item can have many tags to describe the item in several ways. Tags are well known from other (web) applications such as Flickr for tagging photos and del.icio.us for tagging links.
The well known weblog search service Technorati introduced tags to weblog entries, and allows for browsing and searching texts on weblogs by tag. Blog entries can be tagged easily by simply placing a few links at the bottom of the entry in the right format:
<a href="http://technorati.com/tag/[tagname]" rel="tag">[tagname]</a>
Now that MT also supports tags, I hoped for a fluent integration with Technorati. Even though the default MT templates do not link the tags shown on the pages to Technorati but rather to an internal tags search on the current weblog, I hoped for a standard implementation in the RSS feed templates spidered by Technorati. And indeed I found a correct looking code:
<category term="31" label="technorati" scheme="http://www.sixapart.com/ns/types#tag" />
Technorati automatically converts categories in the RSS feed to tags, and even though MT defines a new namespace, it should work correctly... But unfortunately, the above code does not add the tag called "technorati" to the item, but rather the record number "31".
When I tried to look up the specification at http://www.sixapart.com/ns/types#tag, I received a 404, so I still don't know whether Six Apart made a mistake when developing the new feed template or whether Technorati should have parsed the feed. Does anybody know whether either Six Apart of Technorati are working on this issue?
One of the biggest problems in scripting and programming is escaping quotes. Quotes have a special meaning, they are usually used for specifying the start and end of a string, such as in <abbr title="eXtensible Markup Language">. But what happens when the string between the quotes also contains quotes? ...Errors!
There are several ways to prevent this situation. The two most common solutions are escaping the quotes by placing a special symbol in front of it such as \" and replacing the quote by its character entity reference ".
Only a week after I closed down Brain Links, Brain Links is back, albeit in a more simpler form. Before, each link had its own page, with a description and the possibility to comment on the link (which was rarely used). The new Brain Links is only visible as a linkroll on the sidebar of the main page of Brain Tags.
To power Brain Links, I no longer use Movable Type, but created a new widget that fetches the last ten links from my del.icio.us account. There are no archives, no overview, no categories, no comments,... just ten interesting links.
After reading the lifehacker desktop blog editor comparison I decided to give performancing for Firefox a try. I am a happy user of Ecto (number three in the comparison), but the performancing editor has WYSIWYG functionality, as well as Technorati and del.icio.us integration.
So I installed the plugin, and am now writing the first post in my new editor. So far I like it. It is easy to use, and it has more than enough functionality.
