The Ugly American

12 May 2015

Awesome video from Daniel Steinberg about learning Swift. Don’t take it as something limited to learning Swift from Objective-C … It is way more general!


The Mediocre Programmer

12 May 2015

Inspiring talk from Jacob Kaplan-Moss about the Technology Myth and Gender Equality


//TODO: and //FIXME: as XCode Warnings

17 January 2015

//TODO: and //FIXME: can be turned in warnings during the build phase adding a Run Script Phase to your target’s Build Phases tab.

Then add this shell script code:

TAGS="\/\/TODO:|\/\/FIXME:" echo "searching ${SRCROOT} for ${TAGS}" find "${SRCROOT}" \( -name "*.swift" \) -print0 | xargs -0 egrep --with-filename...

: All Blog Posts :