/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

nilcoalescing.com
| | gcher.com
4.4 parsecs away

Travel
| | Recently I got interested in the new Apple language Swift, that will probably replace objective-c as the language of choice for native iOS and OSX applications. There are many things I like in Swift, and also other things I don't like. But one thing that I really enjoy is the support for lambdas, specially compared to the way it works in C++. Why do I think the lambdas in swift are better?
| | iosdeveloperzone.com
3.6 parsecs away

Travel
| | I am guessing early on in the development of the Swift language the relationship between a function declaration's parameter labels and whether they need to be included in a call was much more forward. Maybe it looked something like this. But then they decided that to make Swift play nice with Cocoa that labels would
| | sarunw.com
4.2 parsecs away

Travel
| | There are many ways to loop in Swift. In this post, I will show you how I do when I want to loop for a specific number of times.
| | etodd.io
31.7 parsecs away

Travel
| The game industry hit Peak Advice Blog a while ago. Every day I read skim ten articles telling me how to live. Fear not! I would never give you useful advice. This series is about me writing bad code and you laughing at my pain. First Contact Say you have some voxels which occasionally get modified. You regenerate their geometry like so: voxel.Regenerate(); Because you are a masochist, you want to do this on a separate thread.