REM Blog
-
1/30/2013
Use e.which for Keyboard Events
When dealing with callbacks for keyboard events, use e.which.
-
1/30/2013
remove() vs. detatch()
Both will remove an element from the DOM, but remove() will wipe out all data and handlers, while detatch() will leaves them untouched.
-
1/21/2013
Scolling on Mobile Devices
Some CSS tricks for scrollable areas
-
1/06/2013
Learning Cocoa with Objective-C by Paris Buttfield-Addison, Jonathon Manning; O'Reilly Media
This is a perfect book for intermediate iOS programmers who want to reinforce some of the fundamentals, and learn about new advanced concepts.
-
1/06/2013
Java EE 6 Pocket Guide by Arun Gupta; O'Reilly Media
Review of Java EE 6 Pocket Guide, by Arun Gupta
-
12/19/2012
My first attempt at a Python SQLite class to use in an app
Here is a simple class that is used to fetch data from a SQLite database for a python app
-
12/13/2012
Markdown Reminders
Some self-reminders about working with Markdown syntax
-
12/12/2012
SQLite Reminders
Some self-reminders about sqlite
-
11/17/2012
Git Reminders
Some notes on using git
-
11/16/2012
Publisher Subscriber Pattern
I've been playing with the pub/sub pattern.