Taking Responsive Design a few steps forwards

Responsive design today is great: different layouts can be served to different screen sizes. In the future, extra media queries could be available to web developers and designers to allow the content of a page respond to a whole range of capabilities.

»
Author's profile picture Dave Hulbert on css and web

New jQuery plugin for mobile browsers: jQuery Fast Click

Mobile browsers delay browser clicks (or, more accurately, taps) by 300ms so they can detect double taps. This can be great but if you want to speed up clicks in your mobile site or app, you can use my plugin: jQuery Fast Click.

»
Author's profile picture Dave Hulbert on javascript and mobile

Better Dependency Injection in Laravel

We all love using Dependency Injection but often Laravel’s facades and IoC container are used more like a static service locator, which (despite being testable) can easily lead to violations of the Dependency Inversion Principle (the D in SOLID).

»
Author's profile picture Dave Hulbert on php and laravel