Tutorials Page 69
Cache API
The awesome ServiceWorker API is meant to give developers a bit more control over what is and isn't cached, and how. Sure we can play games with ETags and the like but doing it programmatically with JavaScript just feels better, more controllable. As with every API, however, adding stuff to...
Array.From
In the past we used a variety of hacks to convert Array-like objects (like
arguments
andNodeList
) to a true array. You can see a few of those hacks here: Convert arguments to Array Convert NodeList to Array Essentially we would useArray.prototype.slice.call()
on thearguments
orNodeList
to do the conversion. These days...Create a Basic Loader with JavaScript Promises
I've used JavaScript loaders for years; whether it was the Dojo loader, curl.js, or even using jQuery as a JavaScript loader, it's incredibly useful to request a set of resources and react once they've completed loading. Each JavaScript loader is feature-packed, efficient, and does a wonderful job...
Welcome to My Office
For many developers their office is their home away from home -- hell, some developers are at that office more often than they're at home. For that reason most of us take great pride in our offices, keeping them as tidy (...or not) as we'd like and injecting as...
Stylish, Secure Forms with Wufoo
I've said consistently over my entire professional career that I absolutely hate working with web forms. Forms have always been a pain to style, you usually have to write server-side and client-side logic, you need to write spam prevention logic, there's security (especially if you take payment) and XSS prevention...
Add META Tags to WordPress Head
The reason that WordPress is so developer-friendly is their awesome hook system. Depending on a post category (or seemingly anything else), you can modify the contents of the page, the theme templates, and everything else. WordPress is amazing. One recent use case I had was wanting to modify...
2016’s Most Important Web Apps & Tools
Tickera.com If you are looking for a plugin to help you with selling and delivering tickets for your event to your attendees, then Tickera is probably one of the best choices to help you with this! Not only does it take care of...
Getting Started with ES6 (ES2015) and Babel
If you don't do much work with Node.js there's a good chance you haven't explored the new syntax additions to the JavaScript language provided by ES2015. These language additions include arrow functions, classes, block scoping, and more. These language additions have slowly made their way to Chrome...
Get a Single Header with cURL
Debugging third party apps can be difficult for a variety of reasons. You take for granted that the third party has not only properly coded their app but that their server is also serving files properly. As more a developer than a sysadmin I tend to spend a long...
To Get Things Done You Need Both Sides of the Brain
On the surface, design agency teams might appear to corner the market on creative thinking; leaving the developers the task of transforming their creative ideas into code. Projects should go more smoothly when the two groups work closely together, but a wall often separates them. Designers toss...