How to Ditch Storyboards and Nibs Forever
It’s an ongoing debate between iOS devs. Do I layout my UI with storyboards and nibs or not? I finally found one solution that let me ditch them forever.…
It’s an ongoing debate between iOS devs. Do I layout my UI with storyboards and nibs or not? I finally found one solution that let me ditch them forever.…
Table driven tests give you more test coverage for less lines of code. Let’s explore how to write them in Swift…
Don’t use NSNotifcationCenter
. Most of the time it’s a HUGE mistake. It’s okay to use the center to respond to iOS driven events, like UIKeyboardDidShow
Notification. But don’t use it to wire up message passing in your own code…
This was a presentation I gave at the Denver Go Meetup in November 2015. My goal is to teach others and myself how to build a robust, modern web application in Go. My hope is that startups will turn to Go instead of Rails or Django when building web apps…
The Go authors put a lot of thought into error handling. I feel they came up with one of the better solutions out there. It’s simple and elegant…
This was a presentation I gave at the Denver Go Meetup in September 2015. My goal is to teach others and myself how to build a robust, modern web application in Go. My hope is that startups will turn to Go instead of Rails or Django when building web apps…