All articles tagged Development

Thumbnail image for Untangle Your JavaScript with Browserify

Untangle Your JavaScript with Browserify

We’ve all been there. You’re working on an project with a lot of JavaScript, and you need to add a new widget that depends on some libraries. You have a complex template structure and you don’t know which libraries have …
Thumbnail image for Varnish Saint Mode

Varnish Saint Mode

Varnish Saint Mode is a lesser known gem inside varnish that lets you serve stale content from cache, even when your backend servers are unavailable. This article explains how to configure varnish to take advantage of this feature. If you …
Thumbnail image for Lessons Learned Architecting Realtime Applications

Lessons Learned Architecting Realtime Applications

Building realtime applications is a big change from how we’ve built websites in the past. Typically, realtime websites require each client holding open a long-running connection to the server so updates can be pushed down to the client immediately. This …
Thumbnail image for Django Round-Up #19

Django Round-Up #19

Featured DjangoCon US Videos The full set of videos from DjangoCon US were released by Open Bastion. If you weren't able to attend in person, block off your schedule, start up your YouTubes and enjoy. Lincoln Loop's BotBot Tee What's …
Thumbnail image for Django Round-Up #18

Django Round-Up #18

Featured Django Security Release Django 1.4.8, Django 1.5.4, and Django 1.6 beta 4 were released last week. They fix an easily exploitable issue with the password hasher that could lead to a denial-of-service attack. It is recommended that to upgrade …
Thumbnail image for Django Round-Up #17

Django Round-Up #17

Featured DjangoCon US 2013 Last week DjangoCon US was held in Chicago, bringing together some of the best and the brightest in the community. While you'll still have to wait for the videos, many of the presenters have posted their …
Thumbnail image for Django Round-Up #16

Django Round-Up #16

Featured A Plan Comes Together Andrew Godwin merged his migrations branch into Django master. This means, barring some horrible problem, we'll be seeing it in the 1.7 release of Django. Congratulations to Andrew on his monumental effort and getting this …
Thumbnail image for Django Round-Up #15

Django Round-Up #15

Featured Django Security Releases Issued 1.5.2, 1.4.6, and 1.6 beta 2 were released to address two cross-site scripting (XSS) bugs found in Django. The release notes state that, "While these issues present limited risk and may not affect all Django …
Thumbnail image for Installing Node.js and npm into a Python Virtualenv

Installing Node.js and npm into a Python Virtualenv

With things like LESS and RequireJS, we’re starting to use Node.js’s npm (think pip for JavaScript) on every other project. However, installing Node.js globally means some dependencies are also installed globally, which might be a problem if different projects use …