HN user

eluos

229 karma

[ my public key: https://keybase.io/soule; my proof: https://keybase.io/soule/sigs/FVZ_INYrdOKZceB5BPWaw0wuiun33PQ4nwZZepvo2x4 ]

Posts15
Comments15
View on HN

I used the super secret iOS SDK to build out a side project. I think the simple concurrency support is a BFD and a first for iOS.

Why the Fuck? 14 years ago

Because consenting adults aren't allowed to engage in an exchange of medical services without the approval of federal bureaucrats + lurking personal injury lawyers.

All we need is just one state with medical contractual freedom.

I use these in objective C, I usually create a data object and stick the networking function in it as well. Some use core data, but I haven't found a need for it yet.

static MySingleton *sharedSingleton;

+ (void)initialize { static BOOL initialized = NO; if(!initialized) { initialized = YES; sharedSingleton = [[MySingleton alloc] init]; } }

I feel like higher level organizational stuff could be taught in a codeacademy like format. Just simple lessons for different design patterns:

"This is the delegation pattern, we use it to _________" "This is a singleton method, it's best used for ____"

"Create an MVC structure using the strategies we discussed"

[dead] 14 years ago

I'm waiting for the "lessons learned from heroku invoice data" post.