The future of Internet in the eyes of Roger McNamee
At first I was a bit sceptical, but later on he actually makes sense.... Read more »
At first I was a bit sceptical, but later on he actually makes sense.... Read more »
I wanted to add Google AdSense to my blog just to see how easy it is to do. I’ve googled a bit and found a handful of plugins that claim to do it all for you. I couldn’t decide which one to choose and started thinking from a different angle. It turns out that you don’t need... Read more »
What tools web developers in 2011 are using. Infographic by BestVendor.... Read more »
Not so “hot” as the site has been built a few months ago 🙂 but still worth showing. Full HTML5 site on HTML5 Boilerpate and Kohana framework. Custom fonts using CSS @font-face with fallback to JavaScript cufon.... Read more »
Really simple triangles working in all major browsers, including IE6+. HTML No surprises here. Our HTML is as simple as that. <div class="arrow_top"></div> <div class="arrow_right"></div> <div class="arrow_bottom"></div> <div class="arrow_right&... Read more »
If you want to see the original post, please go to WebDesignShock.... Read more »
If you’re a big fan of Nyan Cat meme and you have Windows XP or 7, then you should be ecstatic about this. There’s a plugin that replaces your standard progress bar with a Nyan Cat animation 🙂 Download and install instructions here... Read more »
A quick tip, how to check if current page has been loaded in an iframe or was it accessed directly. if (window.self === window.top) { // we're NOT in an iframe } else { // we're in an iframe } That’s it.... Read more »
Putting one like button on a page is very simple and comes down to pasting the code from Facebook like button generator found here. It gets a bit more complicated when we need to add more than one button on a page along with a dynamically generated content. Best example I can think of is a search results page where... Read more »
Sometimes I need to insert some values into the database but only when a certain condition is met. The best example is a newsletter sign up. If someone has already signed up to your newsletter, don’t add his email address again. Of course we can run one query to check if this email address already exists and if not... Read more »