ULRRect

A CGRect helper library for Objective-C and Swift

I’ve always preferred to build my iOS dev views programmatically rather than use Interface Builder. Setting view frames can be challenging, especially if you are making a universal app that can be used on both the iPhone and iPad. I developed ULRRect to take some of the pain away... [Read More]

Naive Bayes Text Classifier

Naive Bayes can be a useful tool for document classification. In short, the model can be trained with texts from known sources and then used to classify new documents from an unknown source. A classic use case for naive bayes is in spam filtering. By training the model with large... [Read More]