Tagged Questions

0
votes
3answers
244 views

Stanford Engineering Everywhere CS106B Library

Hi Everyone, I am currently a C# programmer and have been interested in learning more about C++ and data structures. I found the CS106B class offered free online through the Sta …
1
vote
1answer
82 views

Can’t find the example projects from Stanford cs193p

I am looking for the Flickr multithreaded example application that is used in lecture 10 "Performance and Threading". He does a few things that I would like to look at. The particu …
4
votes
3answers
428 views

Are the solutions to Stanford’s online iPhone development course anywhere on the web?

I am working through Stanford's online CS course for iPhone development and from time to time I get stuck on something. Does anyone know if they supplied solutions to the weekly ho …
1
vote
1answer
174 views

[Stanford iTunes U] NSMutableDictionary question

NSMutableDictionary *bookmarks = [NSMutableDictionary dictionary]; [bookmarks setObject:[NSURL URLWithString:(NSString *) @"http://stanford.edu"] forKey: @"Stanford University"]; …
1
vote
6answers
1k views

Passing object from controller to a view

I'm following iPhone dev courses from Stanford Open-University, and I've been blocked for 2 days on assignment3, maybe someone can help me here? The tasks are: Create a custom U …