/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

www.cs.cornell.edu
| | atomicbird.com
4.4 parsecs away

Travel
| | Over the past month or so I've been diving into Swift, after many years of working with Objective-C on Macs and iOS. It's been a change but, gradually, I'm learning the Swift way of doing things. On the way I've run into a few bumps in the road when dealing with Core Data, and I thought would be useful to share how I got past them. Xcode Generated Subclasses Considered Harmful This is the main impetus for this post.
| | gcher.com
5.0 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?
| | blog.eliperkins.com
5.0 parsecs away

Travel
| | A bunch of ramblings from Eli Perkins
| | antonym.org
27.4 parsecs away

Travel
| In multithreaded programs, mutexes are used as a lock to protect sharedresources and enforce atomic operations. This is useful to manageconcurrent access, b...