Archive for the ‘Personal’ Category

How to make webapps fullscreen again on iOS 4.3 – UPDATED

When apple released iOS 4.3 they bragged about faster javascript engine and many blogs around the web cried wolf. Many people have felt that apple intentionally bringing the web apps down, to make native apps the ones a user chooses. When 4.3 was released I have also noticed then a lot of webapps I have [...]

New css3 3d demo inspired by portal.

Portal 2. have you played it? if yo haven’t go and buy it from steam then come back here. If you have, then you might have noticed the awesome effect from the main menu, the rotating cubes. I was so impressed by it that I had to try and replicate it. (click on image to [...]

Style the <style> element ? mind = blown

This has got to be the weirdest thing I’ve seen this week! (it’s very cool nonetheless) Turns out, that you can style almost any element. Be it <head>, <style> , <title> , whatever. DEMO You then can add the html5 “contenteditable” attribute, to make these blocks editable. And what you get is a live updating [...]

iPad simulator in HTML and JS

Let me tell you what a crazy week it’s been regarding my iPad Simulator A little background I’ve thought about creating the iPad simulator shortly after I bought my iPad. I was fascinated by the UI and wanted to see if I can recreate it. This isn’t the first online simulator I’ve built, before this, was a Nokia n97 [...]

jQuery philosophical .is() extention

Love little snipplets that make your life better. This snipplet by @doublerebel on github, extends the .is() function in jQuery, so that if it’s used without parameters inside, will return if the DOM has been found on page Consider the following if($('#somediv').is()) { $('#somediv').ajax…. } else{ console.log('no ajax placeholder') } The script itself is pretty [...]