For Developers
235 postsIdeas, findings, thoughts and discussion focused on the technology and how to make things work.
Where to search for code
Whenever I start working on a new project, I generally default to Github [http://github.com] and start researching which libraries or frameworks can help me quickly complete...
Common Swift string extensions
String Extension import Foundation extension String { var length: Int { get { return countElements(self) } } func contains(s: String) -> Bool { return self.rangeOfString(s) ? true : false } func replace(...
Rails: Validating Your Models
Rails is all about patterns and when you're creating models, it's important to set pattern-based rules before you publish to your database. Below are...
Audio Apps for iOS
I've been doing some research on creating audio apps for iOS and it's taken me down into the complex world of audio frameworks. Apparently...