Upcoming Blog Changes
The BluDice blog will be going under some major changes during the upcoming month, including:
- Domain change to "davidwalsh.name"
- Added "Tools" section, where I will provide numerous Web Developer tools to allow you to compress your CSS, HTML, and JavaScript, and much more
- Custom design -- even I know the current one is awful
- Blog posts with images and in-depth examples (I've been holding off on some cool MooTools stuff for the new design)
- More personalized content -- the site wont be about my person life, but I plan to throw more of my own flavor into writing.
- More reader interaction. I'd like to do a "mailbag" post from time to time, where you can ask questions.
Do you have any requests or ideas for the blog? Please share them!
![7 Essential JavaScript Functions]()
I remember the early days of JavaScript where you needed a simple function for just about everything because the browser vendors implemented features differently, and not just edge features, basic features, like addEventListener
and attachEvent
. Times have changed but there are still a few functions each developer should...
![Serving Fonts from CDN]()
For maximum performance, we all know we must put our assets on CDN (another domain). Along with those assets are custom web fonts. Unfortunately custom web fonts via CDN (or any cross-domain font request) don't work in Firefox or Internet Explorer (correctly so, by spec) though...
![Image Data URIs with PHP]()
If you troll page markup like me, you've no doubt seen the use of data URI's within image src attributes. Instead of providing a traditional address to the image, the image file data is base64-encoded and stuffed within the src attribute. Doing so saves...
![Modal-Style Text Selection with Fokus]()
Every once in a while I find a tiny JavaScript library that does something very specific, very well. My latest find, Fokus, is a utility that listens for text selection within the page, and when such an event occurs, shows a beautiful modal dialog in...