avatar

Bonkowski.net

Programmer

iOS Azure Pipeline

Update (May 7, 2020) 🔗It seems that what I described below is not necessary if you use https for getting your dependencies. I got the task of setting up a build pipeline for an iOS project using Azure DevOps. By following the documentation, this was easy to set up a dummy project without any dependencies. If you are using CocoaPod or Carthage for dependency management, you’ll find tasks that support this out of the box.

Serverside Swift

I came over this article today, which got my attention since I spent a few hours yesterday evening to see what options we currently have for Swift on the backend. I like the idea since Swift is a very nice programming language. The project I wanted to use to explore Swift on the server-side is to replicate the functionality we already got in a “mock-server” written in Go. This server simulates most of the features that our production servers provide, which helps us when developing our iOS and Android apps.

Yesql, Oracle and fetch out of sequence

If you encounter an ‘ORA-01002: fetch out of sequence’ when running your Yesql functions, make sure you have remembered the exclamation mark after the name of your insert/update/delete. I have only used Oracle with Yesql, but I expect other databases will give a similar error if you forget this.

Refactoring in AppCode

AppCode offers a rich set of refactoring’s, which is fast, safe, and easy to use. Rename 🔗Naming is surprisingly difficult. It’s easy to get “paralyzed” if the perfect name of a class or method does not pops into place immediately. But hey, you can always rename it later! The “Rename” refactoring in AppCode is triggered by the shortcut ⇧F6. By using this, you can rename a file, class, method, property, ivar, local variable, and so on.

Navigation in AppCode (EAP)

Xcode 🔗My first meeting with Xcode, which was version 3 something, did not impress me. A couple of years later, Xcode 4 was presented at WWDC 2010, and while my first impression was positive, this feeling was short lived. It crashed continually, and while it looked good, which it still does, the editing experience and feature set were far below my expectations for a modern IDE. JetBrains 🔗I know that more than 10 years experience with IDE’s from JetBrains, such as IntelliJ and RubyMine, does something with your expectations of what an IDE should provide.