. Webdev

search tip

from the I didn’t knew that dept; Add mdc in front of your google search and you’ll get results from the Mozila Doc’s Centre. Ow, and while you’re at it add -w3schools after it. tip from W3Fools.com I wonder what … Continue reading

CSS Animation

Full on Timeline-animation is finally here with step() The W3C isn’t know for being quick about implementing new stuff but this is definitely something I’ve been waiting for. As the functionName() suggests this allows for aniStops between your from{} and … Continue reading

All your data belong to us

They found another un-deletable tracking cookie. This time it’s a method that basically tries every know trick in the book. Including ET-Tags (theoretical until now) and localStorage.

Site speed

-note to self- DON’T use text-shadow with 200px blur. Javascript animations don’t like that. Got me a grade A again with YSlow :D  but found that js minify don’t go well with canvas. Guess I’ll wait for the update…

Developing for mobile

Devving for mobile devices generally revolves around the idea that they have a slow connection to the web and a small screen. The official idea these days is to develop bottom up, so cater for small screens first then load … Continue reading

!cookies but localStorage

Seems to be a buzzword lately so lets put on some rubber gloves and chime in shall we.   function support_test() { try { return ‘localStorage’ in window && window['localStorage'] !== null; } catch (e) { return false; } } … Continue reading

winning img placeholders

add some sheen to your design sheenholders.com/ lol via nettuts

CSS media queries

handheld css; @media query Continue reading

evolution of hyperlinks?

NYtimes, the evolution of hyperlinks? Continue reading

35 tips for speed

35 tips on speeding up your site. Continue reading

shadow DOM

my opinion on Glazkov’s shadow DOM Continue reading

reset style sheet

Just been reading this brillant post on css-tricks, about well… styling, or de-styling a <li> to more exact, and I couldn’t help but thinking that this is exactly why I kinda quit using full blown reset style sheet’s in the … Continue reading

pay 2 embed

from the wire; copytheft organisation buma want us to pay for embedding music/video on your site. They already tried this trick last year, and met with some heavy resistance then, but not one to easely give up they’re trying it … Continue reading

html5 canvas tag example

a cool example of the canvas tag Continue reading

jenwebtek.com

Finally got something half decent online over at jenwebtek.com It’s a few pages of portofolio stuff and I say half finished because I have a lot more in store for the domain. In fact I’m thinking of putting up a … Continue reading

User Agent Detection

feature detection …. it’s just to much work. why? ’cause it’s essentially a bunch of hacks since all browser vendors are abusing the UA string. So it’s mostly conditional for me, and then usually only for IE ’cause.. Anyway checkout … Continue reading