Sagar H Ganatra06/20/13
201 views
0 replies
I was listening to ColdPlay while developing a Parallax scrolling application and hence the title. Take a look at the application here.
Paul Underwood06/20/13
119 views
0 replies
The problem you have by not giving your client an administrator account is that any time the client wants to install a new plugin, change the theme, they will need to call you.
Ariya Hidayat06/20/13
85 views
0 replies
Transforming JavaScript source code is essential to build various JavaScript tools, from minifier to transpiler. There are two different techniques for doing the transformation: non-destructive change of the original source or full regeneration from the syntax tree.
Ariya Hidayat06/20/13
85 views
0 replies
Transforming JavaScript source code is essential to build various JavaScript tools, from minifier to transpiler. There are two different techniques for doing the transformation: non-destructive change of the original source or full regeneration from the syntax tree.
Sapna Group06/20/13
121 views
0 replies
HTML5 offers a unique feature which allows you to impose text on a video at certain intervals. This is done using the HTML track element.
Juri Strumpflohner06/20/13
135 views
0 replies
As you might have guessed, the book is about JavaScript programming. More specifically it is about developing single-page JavaScript applications by using the JavaScriptMVC framework.
Alex Staveley06/19/13
781 views
0 replies
Suppose you're thinking good software engineering and you want to avoid coupling your client code to the AJAX mechanism you are using? You could use a wrapper / bridge / proxy type object which contains all the APIs to get information from the Server and encapsulates your AJAX mechanism.
Raymond Camden06/19/13
701 views
0 replies
If you haven't kept up to date, the Creative Cloud (CC) is the new version of our Creative Suite. Creative Cloud gives you access to over thirty different applications and services, including hundreds of new features to products like Photoshop, Illustrator, Dreamweaver, and the Edge tools.
Ben Forta06/19/13
472 views
0 replies
Thanks to Reto Aeberli, Brackets is getting some CFML love in the form of cfBrackets. It's early days for this project, but this one looks really promising.
Andrey Prikaznov06/19/13
477 views
0 replies
Today I have prepared a new hand-selected collection of new trends in web design for your imagination and inspiration.
Brian Rinaldi06/18/13
853 views
0 replies
This was an insanely busy week with tons of tutorials and even a lot of newly released libraries. There’s a lot here to digest, but it is well worth it.
John Sonmez06/18/13
631 views
0 replies
Why create another language that is not very different than what we already have? How is this actually much better than JavaScript? After having worked with Dart now for quite awhile and producing a Pluralsight course on Dart, I’ve completely changed my mind.
Paul Underwood06/18/13
587 views
0 replies
During WordPress plugin development you will need to include any Javascript or CSS files used by plugin inside the plugin folder, this means that it can be used exactly the same way on any theme you have installed.
Andrzej Krzywda06/18/13
786 views
0 replies
As part of my research on improving Rails application, I noticed a pattern in the bugs that are quite characteristic to Rails in several applications.
Raymond Camden06/17/13
691 views
0 replies
I needed to add email support to a Node.js project I'm building (javascriptcookbook.com - almost done - honest!). Once I found the name of the package I needed, I modified my package.json file.
Chris Smith06/17/13
573 views
0 replies
In case you didn't hear, Chrome DevTools Workspaces let you edit local CoffeeScript source files directly from your browser.
Paul Underwood06/17/13
786 views
0 replies
In this tutorial I will go through how you can build a WordPress plugin that uses the sharrre plugin, I will also make this plugin available on Github so anyone who wants to use or improve on this plugin can do so freely.
Raymond Camden06/17/13
775 views
0 replies
I used the excellent Nodemailer module to setup email support for my application. All I needed was the ability to send an email to myself and this worked fine. Here's a code snippet from my app.js showing this in action.
Robert Diana06/16/13
500 views
0 replies
These items are a combination of tech business news, development news and programming tools and techniques.
Raymond Camden06/15/13
769 views
0 replies
Were you waiting to check out Brackets until ColdFusion support was available? Good news - Reto Aeberli has released an extension that provides basic support for ColdFusion.
Robert Diana06/15/13
764 views
0 replies
These items are the fruits of those ideas, the items I deemed worthy from my daily reading. These items are a combination of tech business news, development news and programming tools and techniques.
Andy Hawthorne06/14/13
717 views
0 replies
I’ve written a book called “Jump Start Rails” that covers getting up and running with Rails 4.0. Here, I’ll give you an overview of what to expect from the book/course.
Raymond Camden06/14/13
964 views
0 replies
Errorception is a service that aggregates and reports on client-side errors on your web site. By placing a simple embed in your HTML code, all errors will be sent off to their service for your perusal.
Gary Sieling06/14/13
4043 views
0 replies
If you could identify the presence of specific pigments from a photograph, it might provide a crude filtering mechanism for images to help find images from a particular time period, locale, artist, or medium. To test this theory, I built a small visualization using D3.js to test it out.
Niels Matthijs06/14/13
683 views
0 replies
When talking about HTML people often forget that it's not just semantics, it's also structure. And when talking about structure, people tend to forget it's not just wrapping stuff, it's also about logical order.