Sublime
An inspiration engine for ideas
Aaron Bach
@ajhb

My favorite app::html+css+js https://itunes.apple.com/app/id908054939?mt=8... See more
Outlook
Here's a small Swift exercise that popped into my head while prepping today's Hacking with Swift+ video. Which of these is valid, and why?
struct User {
var friend: User
}
struct User {
var friends: [User]
}
___LIN... See more
Paul Hudsonx.comJesse Grosjean
@jessegrosjean-4c74b58d95ff4b7c

To sum up: A class declaration defines a namespace. This namespace requires that other objects use an extra level of dot-notation to refer to what’s inside the namespace, but other objects can still refer to what’s inside the namespace; the namespace does not, in and of itself, close any doors of visibility. The private keyword lets you close those
... See more