-
Entradas recientes
- My GitHub contributions over the years abril 25, 2019
- Continuous Deployment of Mobile Software at Facebook abril 22, 2019
- Today's workout abril 22, 2019
- Writing Code Long Before You Need It abril 17, 2019
- One more argument for using descriptive variable names abril 16, 2019
- 40% down in 15 minutes abril 16, 2019
- First impressions on the Kindle Paperwhite abril 15, 2019
- Breaking the #inout habit abril 15, 2019
- Moving my journal to Swanros.com abril 15, 2019
- Handling routes from an API in a type-safe way with Swift marzo 27, 2018
- Available for work febrero 26, 2018
- guards in Elixir 1.6 enero 25, 2018
- Experimenting with inherited tables in Ecto septiembre 27, 2017
- Becoming a Better iOS Developer Through Tooling: My AltConf 2017 talk agosto 14, 2017
- On iOS interview exercises julio 25, 2017
Archivo mensual: marzo 2015
Self-referencing many-to-many relationships using Gorm in Go(lang)
Recently I had to do this, and couldn’t figure out how to do it (maybe I need to start reading documentation more closely). But I found the way to do it: type User struct { Id int64 Contacts []User `gorm:”foreignkey:user_id;associationforeignkey:contact_id;many2many:user_contacts;”` … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
Re: React Native
I’ve been reading a lot about React Native. From the latest piece I read: It’s early and if you don’t have a lot free time or care to be on the bleeding edge, I’d recommend waiting a bit before using … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
› NSHipster, Second Edition
A new edition of the NSHipster’s book is going to be available April 15th, this time covering Swift. Preorder here.
Publicado en Uncategorized
Dejar un comentario
› What Engineers At Facebook, Pinterest, Snapchat, Airbnb, And Spotify Listen To While Coding
Great music selection, if you ask me. Read here.
Publicado en Uncategorized
Dejar un comentario
› Introducing ComponentKit
So, Facebook announced ComponentKit yesterday. ComponentKit takes a functional, declarative approach to building UI and emphasizes a one-way data flow from immutable models to immutable components that describe how views should be configured. Its great to see that Facebook contributes … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
My Projects
These are the projects that I’ve worked on. Take a look, and feel free to ask anything. Mejores Prácticas del Desarrollo de Aplicaciones para iOS con Swift I wrote a book about Swift’s best practices, and how to leverage them … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
SSL Pinning on Android
I had to do SSL Pinning on Android today. What a fucking mess. Most of the posts I read on how to do it used libraries like okhttp. But the app I’m working on has its own networking stack, so … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
› Functional Programming Fundamentals with Erik Meijer
I came across this resource. Invaluable, I think.
Publicado en Uncategorized
Dejar un comentario
› Developer Productivity: The Art of Saying No
Interesting proposition on how to manage your time as a developer working with a team. Loved this part: Managers view their schedule as small chunks of time and schedule meetings throughout the day. This is incompatible with how developers (makers) … Sigue leyendo
Publicado en Uncategorized
Dejar un comentario
› Minus Sign
Great advice from Ole Begemann regarding typographically correct punctuation when wokring with numbers on iOS.
Publicado en Uncategorized
Dejar un comentario