GOTO – a word on language divercity
One of the things that makes GOTO special for me is that it is the one conference i visit every year where I run into developers with so many different backgrounds. Most conferences are in one way or another centered around one platform and one programming language. Even though...
Almost GOTO time
So it's that time of the year again. GOTO Copenhagen is just around the corner, and this year it is the 20th anniversary, so I expect it to be an even bigger deal than it normally is. It certainly looks like it, with the event being hosted at the Bella Center on the 3.-4....
TypeScript 2.0 beta non-nullable types
One of the nice features of functional programming languages like F# is the lack of null. Not having to check for null every where makes code a lot less errorprone. As the saying goes "What can C# do that F# cannot?" NullReferenceException". Tony Hoare who introduced null...
Azure Webjobs – good stuff, with a gotcha
One of the really nice things about Azure Webapps is the support for running Webjobs. Most large webapplications will at some point need some data or media processed by a background process, and for that Webjobs are a perfect fit.
Backup with Azure Cool Blob Storage
A few weeks ago Microsoft introduced the concept of "Cool" Blob Storage on Azure, which means that you get REALLY cheap storage for data that you don't access very often - backup being an obvious usecase. In my case I have used Dropbox for backups for a while, and although it...