Posts about web applications
Categories
- Apr 08 2011
Storing PHP Sessions in CouchDB
One of the more common architectural tasks when designing a web based system that you expect to scale horizontally is deciding how to handle and store sessions. This is because each front end server is running its own PHP install and their session data is stored locally on the disk instead of being shared between […]
Continue ReadingStoring PHP Sessions in CouchDB- Tagged in:
- performance,
- tools and workflow
- Mar 29 2011
No Comply – Firefox 4 Demo
No Comply – a WebGL, Audio-API Demo: click here to watch this demo. Over the past few months I have been working with Mozilla’s Audio API Team to create a WebGL/Audio API Demo for the release of Firefox 4. We wanted to create something a little different for this demo so we enlisted the help […]
Continue ReadingNo Comply – Firefox 4 Demo- Tagged in:
- performance,
- tools and workflow
- Mar 29 2011
JavaScript Rotoscoping Tool
I had some free time on the train back up from Buttercamp this weekend, and got to work on a demo for a HTML5 rotoscoping tool that I’ve been kicking around in my head: View Live Demo (in Chrome) → The tool is very basic; it lets the user draw over each frame of the […]
Continue ReadingJavaScript Rotoscoping Tool- Tagged in:
- performance,
- tools and workflow
- Mar 18 2011
List Conflicted files with Git
When you pull from a remote repository, the number of new files listed can sometimes cause conflict messages to get scrolled off the screen. Not very convenient. You can use the following command to get a quick list of conflicts from Git: git ls-files -u
Continue ReadingList Conflicted files with Git- Tagged in:
- tools and workflow
- Mar 14 2011
JavaScript Augmented Reality
Augmented Reality: using JSARToolkit with WebGL & HTML5 Video Last week I spent some time running tests and generally familiarizing myself with the JSARToolkit code. I also built a JavaScript wrapper for the library to make it easier to use. JSARToolkit is a JavaScript library converted from FLARToolkit (Flash), and is developed for tracking AR […]
Continue ReadingJavaScript Augmented Reality- Tagged in:
- data visualization,
- tools and workflow
- Mar 09 2011
Bash Rename All Files in Dir
Something I have never known how to do in Linux, is rename a directory full of files. (Crazy right?!) Fortunately for a noob like msyelf, Sam Bisbee does know how to do this, and showed me today. In the following example, I am renaming a directory of files with no file-extension, and moving them to […]
Continue ReadingBash Rename All Files in Dir- Tagged in:
- tools and workflow
- Jan 12 2011
Popcorn.js 0.2 Released
I am very proud to announce that Popcorn.js hit 0.2 today. The Popcorn.js team has been working hard to deliver a stable, documented and unit tested JavaScript toolbelt for working with HTML5 <video>. Popcorn.js 0.2 rethinks Popcorn.js 0.1 as an event system for HTML5 <video> with an API, a plugin system, and strong adherence to […]
Continue ReadingPopcorn.js 0.2 Released- Tagged in:
- open source,
- tools and workflow
- Dec 29 2010
The “catch” with try…catch
I’ve recently been working on an update to JavaScript Debug, which has me doing a lot of cross-browser testing, and I noticed a few “interesting quirks” with try…catch in Internet Explorer 6-8 that I couldn’t find documented anywhere. The Backstory Since the primary goal of JavaScript Debug is to normalize the console cross-browser, I’ve been […]
Continue ReadingThe “catch” with try…catch- Tagged in:
- performance,
- web applications
- Dec 20 2010
Using dataTransfer and other HTML5 event properties with jQuery Events
Update: I put this utility up at datauri.com for convenience. Update: The jQuery.event.props event property list has since been documented in the Event Object documentation. This past weekend, I made a handy utility for converting files to data URLs. This utility is part of a larger tool that we are developing for a client. I […]
Continue ReadingUsing dataTransfer and other HTML5 event properties with jQuery Events - Dec 07 2010
Think long term, focus short term
This is a command. A mantra. A tenet of project management. Every decision you make will have long-term and short-term effects on the project’s flow. You might hear folks referencing the direction, the heading, or the path of a project. They might spend time aligning the project, course-correcting, or adjusting the heading. All of this […]
Continue ReadingThink long term, focus short term- Tagged in:
- software development process