Links
- ColdFusion Design Patterns
- Minecraft Papercraft Minecraft Fan? You might like my newish Minecraft Papercraft site!
- Object Oriented ColdFusion
Pages
Categories
Tags
Abstraction Ant Apache Autocomplete CFCUnit CodexWiki ColdFusion Components Constants CSS DAO Dates Dependency Injection Design Patterns File Flash Forms Frameworks Gateways Groovy Guice Hosting HTML IIS Java JavaScript jQuery Mappings MSSQL MySQL Nested Set Trees OOP pagination Python Railo Security SES URLs Spring Strategy Timestamp Tomcat Tools Ubuntu Unit Testing ValidationArchives
- February 2012
- June 2011
- February 2011
- January 2011
- December 2010
- September 2010
- July 2010
- May 2010
- April 2010
- November 2009
- July 2009
- June 2009
- August 2008
- June 2008
- May 2008
- March 2008
- November 2007
- October 2007
- September 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
Author Archives: Kevan Stannard
Another 10 Interesting JavaScript Features
I previously posted about 10 Interesting JavaScript Features. Here’s ten more JavaScript features that I’ve recently found interesting.
Should you use semicolons in JavaScript?
There has been a quite a bit of chatter recently on whether or not you should use semicolons in your JavaScript code. JavaScript provides a feature called Automatic Semicolon Insertion (ASI). For the most part there are rarely problems in omitting semicolons, but there are a few cases where semicolons are required to prevent syntax [...]
Creating namespaces in JavaScript
In the past it was very common to see global variables in snippets of JavaScript code across the web, such as: name = "Spock"; function greeting() { return "Hello " + name; } A better approach is to place all of your code within a namespace; an object that contains all of your code and [...]
How to use sessions on Google App Engine with Python and gae-sessions?
Google App Engine with Python does not provide built in session capabilities. This step by step walkthrough sets up a Google App Engine app using the lightweight gae-sessions utility.
Posted in Google App Engine Tagged GAE, GAE-Session, Google App Engine, Python, Session Comments closed

Preventing Hotlinking with Nginx and NodeJS