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...
Ideas, findings, thoughts and discussion focused on the technology and how to make things work.
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...
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 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...
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...
I wanted to download 100 files but I did not want to do it manually so I created a simple script instead. var files = [ "http://www.patatap....