Author Archives: idz

About idz

A professional software engineer dabbling in iOS app development.

A Whirlwind Introduction to git submodules

I have put off learning how to use git submodules for too long, but one of my projects has been crying out for them for so long that I finally had to act. The project IDZAQAudioPlayer demonstrates how to use … Continue reading

Posted in git | Tagged , | Leave a comment

Getting Travis CI Working with Your iOS GitHub Builds in Under 10 Minutes

I try to make sure that all my Open Source repositories on GitHub compile and run correctly, but it is easy to miss some dependency on my system or some other bug. So it’s nice to have the ability to … Continue reading

Posted in Tutorial | Leave a comment

Swift Standard Library: transcode

Swift Standard Library: transcode The transcode function lets to convert strings from one Unicode encoding to another, for example UTF16 to UTF8. The definition you get when you command-click on the function is quite intimidating:

It is also incorrect; … Continue reading

Posted in Swift, Swift Standard Library | Tagged , , , , , , | 1 Comment