My Podcast Subscriptions

Sometimes people ask me what podcasts I subscribe to. This is that list. If we share similar interests some of these require no introduction. If you are now starting with podcasts I suggest you download the last episode of each to see if you like it.

Many of those you can listen at any time. I usually have between a dozen and half a dozen to listen to.

In Portuguese #

If you don’t speak Portuguese those are useless to you. If you do: experimenta!

 
2
Kudos
 
2
Kudos

Now read this

Clarity in Swift code

var numbers = [-1, 0, -9, -3, 1, 3, 4] let first = numbers.first! let (min, max) = numbers.map({($0,$0)}).reduce((first,first), combine: {($0.0 < $1.0 ? $0.0 : $1.0, $0.0 > $1.0 ? $0.0 : $1.0)}) As you can probably guess, this... Continue →