Arjan Eising

Pages

Feeds

You can subscribe to my feeds to get notified when I have written a new post, using RSS or Atom.

Categories

Archives

Archive for April 2007

Google marks me better…

From 3 to 6! That change did my PageRank underwent lastly when the ToolBar PageRanks were updated. The update is still going on at this moment. Check DigPageRank for your new PageRank.

Meeting in Amsterdam

Yesterday, the 27th of April, I had a cool meeting in Amsterdam. I can’t tell much about the contents of it, but there were some other cool people. We’ve talked about cool things, more info here soon :)

Webdesign Survey

A List Apart wants to know everything from web designers, developers and all kinds of people working on the web. So if you have some spare time to fill in their survey, you’ll probably win one of the prices they’ll give away. The results will be published at ALA.

Joined the W3C HTML Working Group…

Earlier this week I joined the W3C HTML Working Group. I liked the idea to give my opinion on what HTML needs, and to have an option to give some ideas. But it takes a hell of a lot of time to read all the messages on the mailing list! So in the next few days I hope to get a few hours to respond on those, and maybe start a new discussion.

JavaScript Get function

Blog friend Ben shared a nice JavaScript Get function. As the name says, it returns the wanted Get variable.

// Author: Benjamin Carlier, http://benjamincarlier.be/
var uri={
get:function(id){
return unescape(location.search.match('(?:\\?|\&)' + id + '=([^\&]*)')[1].replace(/\+/g, " "))}
}

To use it, only var term = uri.get('q'); is needed to put the search terms in the variable term.