Cees Alberts on May 30th, 2014

I love developing software on my MacBook Air! I got the latest version with the maximum possible specifications (i7, 8GB internal mem, 512GB SSD disk) so it works better than anything I ever had! One of the things i was missing (a  lot) while developing is that I cannot start 2 instances of the same application on […]

Continue reading about Running multiple instances of Xamarin Studio on a Mac

Cees Alberts on May 20th, 2014

This is a small piece of code I’m using to make the layout of an XML string a bit prettier. It’s very useful if you want to write some XML to a text file that will be edited later. protected string PrettyPrintXml(string xmlString) { XmlDocument xmlDoc = new XmlDocument(); StringWriter stringWriter = new StringWriter(); XmlTextWriter […]

Continue reading about Codesnippet: Prettyfie XML

Cees Alberts on May 19th, 2014

Submitting an app to the Apple app store isn’t as easy as you would think it would be. You need certificates, profiles and accounts to manage everything and to get the app admitted for review and after that admitted in the store. As you know, I’m using Xamarin’s MonoTouch to write my apps because I […]

Continue reading about Submitting an app to the Apple app store using MonoTouch

Cees Alberts on May 18th, 2014

It has already been almost a year since I wrote my last blog entry on this blog site. I have been busy working for a big client, making a big MVC .NET intranet website for searching and displaying internal files and dossiers. I did a lot of MVC, Razor, jQuery and WCF work so all […]

Continue reading about A major upgrade and back to iOS programming!