User Mr. Matt - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:18:05Z http://stackoverflow.com/feeds/user/12037 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/73692#73692 12 Answer by Mr. Matt for What development book made the most impact on you as a developer? Mr. Matt 2008-09-16T15:38:21Z 2009-11-26T06:05:14Z <p>Kernighan and Richie's "<a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a>" - The only C book you'll ever need.</p> http://stackoverflow.com/questions/258264/fragment-caching-with-memcached 3 Fragment Caching with Memcached Mr. Matt 2008-11-03T10:13:12Z 2009-11-08T13:46:25Z <p>Is there any way of using Memcached for fragment caching in Rails?</p> http://stackoverflow.com/questions/622865/how-do-i-debug-an-unrecognized-selector-sent-to-instance-problem 1 How do I debug an 'unrecognized selector sent to instance' problem? Mr. Matt 2009-03-08T01:29:35Z 2009-11-06T19:34:41Z <p>I have the following code in a view controller that (in all other respects) seems to be working fine:</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { ProblemViewController *problemViewController = [[ProblemViewController alloc] initWithNibName:@"ProblemViewController" bundle:nil]; problemViewController.problem = (Problem*)[self.problems objectAtIndex:indexPath.row]; [self.navigationController pushViewController:problemViewController]; [problemViewController release]; } </code></pre> <p>When I run through this function, however, I am getting the following error:</p> <pre><code>*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[ProblemViewController initWithNibName:bundle:]: unrecognized selector sent to instance 0x57ca80' </code></pre> <p>I'm at a loss as to what could be causing it, so my question is: How should I best go about debugging this problem? Is there anything obvious I should be checking?</p> http://stackoverflow.com/questions/261654/building-an-addictive-site 25 Building an Addictive Site Mr. Matt 2008-11-04T12:03:12Z 2009-11-06T01:05:19Z <p>What aspects of a site (such as SO) make it addictive? I'm looking to build features into one of my own community sites that get people hooked - something to bring them back for more each day and to help drive participation (posting, commenting, etc...), and I'm trying to get a consensus as to what types of features can help achieve this. Any thoughts?</p> <p><em>EDIT</em></p> <p>Note that this is not just about SO, rather I'm looking for ideas as to how to make a community site addictive regardless of it's audience.</p> <p><em>EDIT</em></p> <p>I've done a little reading around this, based on some of the answers - it seems that making a site addictive is very similar to making a game addictive.</p> <ul> <li>Constant, small rewards for contribution (reputation, points)</li> <li>Larger rewards for remarkable contributions (badges, ranks)</li> <li>Public confirmation of your score (high-scores / reputation)</li> <li>Exploration rewards (access to features / secrets / weapons as you contribute / play more)</li> </ul> <p>By adding features that pander towards these desires, a user can be drawn in and always have a goal that is slightly out of reach, causing a feedback loop of constant improvement and contribution.</p> <p><em>EDIT</em></p> <ul> <li><a href="http://www.codinghorror.com/blog/archives/000722.html" rel="nofollow">Speed as a feature</a></li> </ul> <p>Are there any other aspects of making a site addictive?</p> http://stackoverflow.com/questions/1129760/storing-uiimages-with-objectiverecord-and-objectivesync 1 Storing UIImages with ObjectiveRecord and ObjectiveSync Mr. Matt 2009-07-15T06:39:14Z 2009-10-31T11:00:01Z <p>Does anyone know how I should go about storing a UIImage with the version of ObjectiveRecord packaged with ObjectiveSync? (Note that the version of SQLPersistantObjects in ObjectiveRecord is older than the current version) At the moment, I am attempting to store the UIImage data as NSData:</p> <pre><code>@interface Picture : SQLitePersistentObject { NSString *pictureId; NSDate *updatedAt; NSData *imageData; UIImage *image; } @property (nonatomic, retain) NSString *pictureId; @property (nonatomic, retain) NSData *imageData; @property (nonatomic, retain) NSDate *updatedAt; </code></pre> <p>I can set the data OK, and store it in the DB, but when I select a record from the DB, I get the data as a NSCFString as opposed to NSData. Does anyone know why?</p> http://stackoverflow.com/questions/1548880/nsmutableurlrequest-with-large-files 0 NSMutableURLRequest with large files Mr. Matt 2009-10-10T19:44:31Z 2009-10-10T20:01:57Z <p>I'm writing an iPhone app that requests data from a web service, and in order to get that data, I'm using NSMutableURLRequest.</p> <p>The problem that I am having is that the amount of data being requested is quite large (~11Mb), and this is causing my app to be killed by the OS.</p> <p>Is there any way of streaming the data in a way that will allow me to process chunks of it, or should I just split the request over several separate requests in order to prevent the memory load spiking?</p> http://stackoverflow.com/questions/221592/geolocation-api-on-the-iphone 7 Geolocation API on the iPhone Mr. Matt 2008-10-21T12:01:40Z 2009-10-07T22:15:28Z <p>Does anyone know whether the iPhone supports or will soon support the <a href="http://dev.w3.org/geo/api/spec-source.html" rel="nofollow">W3C Geolocation specification</a>?</p> <p>I'm looking to build an app for mobile users, but rather than spend the time developing apps for every different platform (iPhone, Android, etc...), I'd much prefer to create a web app that makes use of the W3C Standard.</p> http://stackoverflow.com/questions/431617/overriding-id-on-create-in-activerecord 4 Overriding id on create in ActiveRecord Mr. Matt 2009-01-10T19:44:57Z 2009-10-02T20:55:30Z <p>Is there any way of overriding a model's id value on create? Something like:</p> <pre><code>Post.create(:id =&gt; 10, :title =&gt; 'Test') </code></pre> <p>would be ideal, but obviously won't work.</p> http://stackoverflow.com/questions/985591/how-do-i-access-the-sqlite-db-my-app-uses-on-the-iphone 0 How do I access the SQLite DB my app uses on the iPhone Mr. Matt 2009-06-12T08:26:05Z 2009-09-30T10:55:57Z <p>Is there any way of getting the SQLite DB off my iPhone so I can view the data in it? </p> <p>I've managed to get the DB on my iPhone into an odd state, and rather than keep trying to replicate in simulator, I'd like to investigate the state of the DB from my dev install.</p> <p>Is this possible?</p> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423869#423869 324 Answer by Mr. Matt for What's your favorite "programmer ignorance" pet peeve? Mr. Matt 2009-01-08T10:57:18Z 2009-09-23T20:24:39Z <p><strong>The attitude that testing is unnecessary or time consuming</strong> </p> <p>If tests aren't written, then there is no way of knowing when some change in the system breaks something elsewhere. Writing tests saves time and money.</p> <p>In response to Kendall Helmstetter Gelner's comments: testing actually helps refactoring - if you have tests that tell you what the application should do, then when you refactor, those tests should still pass. This is where I have saved many hours of work, after all, the alternative is no tests or doing manual testing for everything, and that <em>is</em> a massive time sink.</p> http://stackoverflow.com/questions/246503/how-do-you-generate-rdoc-for-a-particular-plugin-using-rake 0 How do you generate rDoc for a particular plugin using rake Mr. Matt 2008-10-29T11:49:42Z 2009-09-11T14:21:31Z <p>OK, I am trying to generate the rDoc for paperclip, but the rake task is choking on another plugin before it gets to it, so this is out of the question:</p> <pre><code>rake doc:plugins </code></pre> <p>I could go and fix up the broken plugin, but I'm busy and lazy, so I just want to generate the docs for paperclip. Is there any way of doing this?</p> http://stackoverflow.com/questions/1392909/nsmutablearray-addobject-with-mallocd-struct 1 NSMutableArray addobject with malloc'd struct Mr. Matt 2009-09-08T09:16:46Z 2009-09-08T12:32:33Z <p>I'm having trouble with a snippet of code. I'm trying to add an instance of CLLocationCoordinate2D to a NSMutable array using the addObject method, but whenever the line is executed, my app crashes. Is there anything obvious wrong with this code?</p> <p>The crash is on this line:</p> <pre><code>[points addObject:(id)new_coordinate]; </code></pre> <p>Polygon.m:</p> <pre><code>#import "Polygon.h" @implementation Polygon @synthesize points; - (id)init { self = [super init]; if(self) { points = [[NSMutableArray alloc] init]; } return self; } -(void)addPointLatitude:(double)latitude Longitude:(double)longitude { NSLog(@"Adding Coordinate: [%f, %f] %d", latitude, longitude, [points count]); CLLocationCoordinate2D* new_coordinate = malloc(sizeof(CLLocationCoordinate2D)); new_coordinate-&gt;latitude = latitude; new_coordinate-&gt;longitude = longitude; [points addObject:(id)new_coordinate]; NSLog(@"%d", [points count]); } -(bool)pointInPolygon:(CLLocationCoordinate2D*) p { return true; } -(CLLocationCoordinate2D*) getNEBounds { ... } -(CLLocationCoordinate2D*) getSWBounds { ... } -(void) dealloc { for(int count = 0; count &lt; [points count]; count++) { free([points objectAtIndex:count]); } [points release]; [super dealloc]; } @end </code></pre> http://stackoverflow.com/questions/1091713/using-willpaginate-with-multiple-models-rails 1 Using will_paginate with multiple models (Rails) Mr. Matt 2009-07-07T11:06:32Z 2009-09-02T23:45:27Z <p>Pretty sure that I'm missing something really simple here:</p> <p>I'm trying to display a series of pages that contain instances of two different models - Profiles and Groups. I need them ordering by their name attribute. I could select all of the instances for each model, then sort and paginate them, but this feels sloppy and inefficient.</p> <p>I'm using mislav-will_paginate, and was wondering if there is any better way of achieving this? Something like:</p> <pre><code>[Profile, Group].paginate(...) </code></pre> <p>would be ideal!</p> http://stackoverflow.com/questions/955341/testing-iphone-app-with-limited-network-access 2 Testing iPhone app with limited network access Mr. Matt 2009-06-05T11:05:43Z 2009-08-28T06:52:04Z <p>Is there any way of simulating limited or no 3G / Wifi / EDGE connectivity when using the iPhone simulator?</p> http://stackoverflow.com/questions/1277193/jquery-how-to-debug/1277293#1277293 2 Answer by Mr. Matt for jQuery : how to debug? Mr. Matt 2009-08-14T11:07:21Z 2009-08-14T11:07:21Z <p>It's <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>'s console in Firefox, which is available on Windows, too.</p> http://stackoverflow.com/questions/1273921/what-should-not-be-under-source-control/1273947#1273947 1 Answer by Mr. Matt for What should NOT be under source control? Mr. Matt 2009-08-13T19:01:45Z 2009-08-13T19:01:45Z <p>Temp files, config for anything other than global development and sensitive information</p> http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1143166#1143166 1 Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-17T13:09:44Z 2009-08-12T06:52:39Z <p><strong><a href="http://code.google.com/p/backup-fu/" rel="nofollow">Backup-fu</a></strong> - in conjuction with capistrano, we always backup before a deploy to Amazon S3, and set cron jobs that periodically backup the database and asset directories.</p> http://stackoverflow.com/questions/1254917/how-to-get-any-update-from-mysql-to-sqllite-in-iphone/1254962#1254962 1 Answer by Mr. Matt for How to get any update from Mysql to sqllite in iphone Mr. Matt 2009-08-10T13:41:11Z 2009-08-10T13:41:11Z <p>You might want to take a look at <a href="http://github.com/yfactorial/objectivesync/tree" rel="nofollow">objective sync</a> = it provides synchronisation and integration between a local sqlite db on ithe iPhone and a RESTful web application (the interface to your Mysql DB on the server).</p> http://stackoverflow.com/questions/1194396/variable-cost-subscription-payment-provider-uk/1194570#1194570 0 Answer by Mr. Matt for Variable cost subscription payment provider UK Mr. Matt 2009-07-28T14:40:00Z 2009-07-29T09:25:51Z <p>If you can get a merchant account then <a href="http://sagepay.com/" rel="nofollow">give Protx (SagePay) a try</a>. I think it already integrates with AM.</p> <p>How is the PayPal repeat billing being flakey for you? I've used if for a few years, and it's worked just fine (so far).</p> <p><strong>EDIT</strong></p> <p><a href="http://worldpay.com" rel="nofollow">WorldPay</a> might be worth looking at, considering your needs WRT repeat billing and refunds. Their system covers all of the points you outlined above.</p> http://stackoverflow.com/questions/1186797/uses-of-frameworks/1186823#1186823 2 Answer by Mr. Matt for uses of frameworks Mr. Matt 2009-07-27T07:05:48Z 2009-07-27T07:05:48Z <p>The wheel has already been invented - why go back?</p> http://stackoverflow.com/questions/1184146/getting-a-reference-to-the-uiapplication-delegate/1184201#1184201 0 Answer by Mr. Matt for Getting a reference to the UIApplication delegate Mr. Matt 2009-07-26T10:12:18Z 2009-07-26T10:12:18Z <p>Use:</p> <pre><code>[[UIApplication sharedApplication] delegate]; </code></pre> http://stackoverflow.com/questions/492558/git-rm-multiple-files-that-have-already-been-deleted-from-disk 10 git rm multiple files that have already been deleted from disk Mr. Matt 2009-01-29T17:18:14Z 2009-07-25T23:41:05Z <p>OK, say I have a git repo that I have deleted four files from using rm (<strong>not</strong> "git rm"), and my git status looks like this:</p> <pre><code># deleted: file1.txt # deleted: file2.txt # deleted: file3.txt # deleted: file4.txt </code></pre> <p>How do I remove these files from git without having to manually go through and add each file like this:</p> <pre><code>git rm file1 file2 file3 file4 </code></pre> <p>Ideally, I'm looking for something that works in the same way that git add . does, if that's possible.</p> http://stackoverflow.com/questions/1176544/capistrano-problem/1176592#1176592 0 Answer by Mr. Matt for capistrano problem Mr. Matt 2009-07-24T09:27:43Z 2009-07-24T11:50:03Z <p>What are the permissions set at for your keys? They should be chmod'd to 0600.</p> <p>Can you ssh into your server without entering a password? When you generated your keys, did you enter a passphrase? If you did, you might find it easier to regenerate them without the passphrase. </p> http://stackoverflow.com/questions/1170660/commiting-specific-parts-of-a-file-in-git/1170680#1170680 6 Answer by Mr. Matt for Commiting specific parts of a file in Git Mr. Matt 2009-07-23T09:42:08Z 2009-07-23T09:42:08Z <p>Use:</p> <pre><code>git add -i </code></pre> <p>to add files interactively. This will allow you to stage only the parts of the files you wish to commit. <a href="http://psung.blogspot.com/2007/12/version-control-with-git-git-add.html" rel="nofollow">More info here</a>, and <a href="http://www.gitready.com/intermediate/2009/01/14/interactive-adding.html" rel="nofollow">a decent tutorial here</a>.</p> http://stackoverflow.com/questions/1164294/rendering-a-collection-of-different-classes-in-rails 0 Rendering a collection of different classes in Rails Mr. Matt 2009-07-22T10:16:39Z 2009-07-22T15:13:21Z <p>I have a collection that contains instances of several different classes, and I want to render the partial for each instance. I can do this using the following code:</p> <pre><code>&lt;%= render @results %&gt; </code></pre> <p>My question is: How can I render the different partials in a different base directory? The above code will look for app/views/stories/_story.html.erb, however, the partials for this action are all kept in a different directory - app/search/_story.html.erb. Is there any way of specifying this?</p> http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1154303#1154303 0 Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-20T15:38:20Z 2009-07-20T15:38:20Z <p><strong><a href="http://nested-layouts.rubyforge.org/" rel="nofollow">Nested Layouts</a></strong> - Great when you have sections of your site that sit inside their own wrappers. My account (in many apps) has a series of controllers that may have a common navigation header. Nested layouts allows you to use a my_account layout that sits inside your application layout, preventing the need for duplicate layout code or spurious navigation partials.</p> http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1154292#1154292 1 Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-20T15:35:46Z 2009-07-20T15:35:46Z <p><strong><a href="http://github.com/redinger/validation%5Freflection/tree/master" rel="nofollow">Validation Reflection</a></strong> - when used with formtastic, it frees you from having to specify which fields of a form are required, as it infers it from your model validations.</p> http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1154283#1154283 4 Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-20T15:33:54Z 2009-07-20T15:33:54Z <p><strong><a href="http://freelancing-god.github.com/ts/en/" rel="nofollow">Thinking Sphinx</a></strong> - for integrating with Sphinx for dead-simple text-searching in your app.</p> http://stackoverflow.com/questions/1152299/what-is-an-object-relational-mapping-framework/1152311#1152311 3 Answer by Mr. Matt for What is an Object-Relational Mapping Framework? Mr. Matt 2009-07-20T08:27:34Z 2009-07-20T08:27:34Z <p><a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">From wikipedia</a>:</p> <blockquote> <p>Object-relational mapping (ORM, O/RM, and O/R mapping) in computer software is a programming technique for converting data between incompatible type systems in relational databases and object-oriented programming languages. This creates, in effect, a "virtual object database" that can be used from within the programming language. There are both free and commercial packages available that perform object-relational mapping, although some programmers opt to create their own ORM tools.</p> </blockquote> <p>It's good for abstracting the datastore (flat file / SQL / whatever) out in order to provide an interface that can be used in your code. For example, (in rails) instead of constructing SQL to find the first user in a users table, we could do this:</p> <pre><code>User.first </code></pre> <p>Which would return us an instance of our user model, with the attributes of the first user in the users table.</p> http://stackoverflow.com/questions/1137291/activerecord-savefalse-still-validating-model 0 ActiveRecord save(false) still validating model Mr. Matt 2009-07-16T12:39:12Z 2009-07-18T13:29:34Z <p>I have a user model on which I check to make sure that the email address supplied is unique:</p> <pre><code>validates_uniqueness_of :email </code></pre> <p>This model acts as paranoid. On destroy, I need to remove the email address so that if the user wants to re-register, they can. For this, I have the following:</p> <pre><code>before_destroy :remove_email def remove_email self.email = "[deleted]" save(false) end </code></pre> <p>The method is called at the appropriate time, but the save method throws the following error:</p> <pre><code>ActiveRecord::StatementInvalid: Mysql::Error: Duplicate entry '[deleted]' for key 2: UPDATE `users` SET `email` = '[deleted]', `updated_at` = '2009-07-16 12:29:05' WHERE `id` = 53 </code></pre> <p>So it looks like the validation is still being run at some level. Is there any way of getting around this?</p> http://stackoverflow.com/questions/1392909/nsmutablearray-addobject-with-mallocd-struct Comment by Mr. Matt on NSMutableArray addobject with malloc'd struct Mr. Matt 2009-09-08T18:13:23Z 2009-09-08T18:13:23Z Awesome - Thanks, Jason! http://stackoverflow.com/questions/1392909/nsmutablearray-addobject-with-mallocd-struct/1392944#1392944 Comment by Mr. Matt on NSMutableArray addobject with malloc'd struct Mr. Matt 2009-09-08T09:44:11Z 2009-09-08T09:44:11Z I'll try that later today - thanks Philippe! http://stackoverflow.com/questions/1222531/insert-into-wont-work Comment by Mr. Matt on INSERT INTO wont work! Mr. Matt 2009-08-03T14:08:33Z 2009-08-03T14:08:33Z I'm not sure if you're going to handle this later on, but storing passwords in plain text is insecure - you should hash them with a salt that is generated per user, and an application-wide salt. This safeguards your users passwords in the event that your data is exposed. http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423869#423869 Comment by Mr. Matt on What's your favorite "programmer ignorance" pet peeve? Mr. Matt 2009-07-29T09:23:38Z 2009-07-29T09:23:38Z @Kendall I'm not an advocate of 100% coverage. That tends to be overkill in most cases, however, I'm not following you when you say that 100% coverage makes a system incapable of being changed. If a project is incapable of being changed, then I can only see that it is because it is badly designed or built rather than because the associated tests are covering everything. I don't think that 100% coverage is some sort of holy grail that needs be attained, rather a balance is needed, and both the tests and system software need to be built in a way that makes maintenance feasible. http://stackoverflow.com/questions/1164186/how-to-check-if-a-string-looks-randomized-or-human-generated-and-pronouncable/1164242#1164242 Comment by Mr. Matt on how to check if a string looks randomized, or human generated and pronouncable? Mr. Matt 2009-07-22T10:26:05Z 2009-07-22T10:26:05Z It's just another thing that can be added to an overall weighting as to whether a user is genuine - it wouldn't be the only indicator used. http://stackoverflow.com/questions/468753/how-do-you-start-learning-a-new-programming-language/1144313#1144313 Comment by Mr. Matt on How do you start learning a new programming language? Mr. Matt 2009-07-17T16:28:41Z 2009-07-17T16:28:41Z +1 - By building something you actually might use, you tend to have to dig to accomplish the more complex parts, which expands your knowledge, and leads you one more step down the path to mastery. http://stackoverflow.com/questions/1144026/iphone-steadily-increasing-memory-usage-in-apps-using-touches/1144069#1144069 Comment by Mr. Matt on iPhone: Steadily increasing memory usage in apps using touches Mr. Matt 2009-07-17T16:25:20Z 2009-07-17T16:25:20Z Are you retaining any of the touch event objects, or any object at all in your touch handlers? http://stackoverflow.com/questions/1144026/iphone-steadily-increasing-memory-usage-in-apps-using-touches/1144069#1144069 Comment by Mr. Matt on iPhone: Steadily increasing memory usage in apps using touches Mr. Matt 2009-07-17T16:24:41Z 2009-07-17T16:24:41Z Are you retaining these objects at all? http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1143683#1143683 Comment by Mr. Matt on Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-17T15:29:24Z 2009-07-17T15:29:24Z We use a combination of populator and faker for this. Need to take a closer look at Seed-Fu. http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems Comment by Mr. Matt on Most useful Rails plugins, Ruby libraries and Ruby gems? Mr. Matt 2009-07-17T08:35:26Z 2009-07-17T08:35:26Z Wiki this, please! http://stackoverflow.com/questions/1115886/rails-how-can-you-access-session-variables-using-multiple-controllers/1118346#1118346 Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers? Mr. Matt 2009-07-14T06:34:58Z 2009-07-14T06:34:58Z Ahhh - that warm fuzzy feeling of a problem getting fixed. Love it. http://stackoverflow.com/questions/1115886/rails-how-can-you-access-session-variables-using-multiple-controllers/1118346#1118346 Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers? Mr. Matt 2009-07-13T12:53:41Z 2009-07-13T12:53:41Z Sorry - I didn't mean the :session_key, but rather the values stored in the session: session[:some_key_here] Log those at the beginning and end of your controller action, and see when they change. http://stackoverflow.com/questions/1115886/rails-how-can-you-access-session-variables-using-multiple-controllers/1118346#1118346 Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers? Mr. Matt 2009-07-13T11:16:33Z 2009-07-13T11:16:33Z No - the session key needs to be unique to each app, not the controllers in the same application. I think there is a bug somewhere in your app that is either clearing out the value in your session. I'd recommend logging the value of the session variables at the top of your controller action, then logging them again at the end. See if they change, and trace it back from there. http://stackoverflow.com/questions/1026080/no-route-matches-javascripts-prototype-js-explicitly-define-one/1026103#1026103 Comment by Mr. Matt on No route matches "/javascripts/prototype.js" -> explicitly define one? Mr. Matt 2009-07-12T10:00:53Z 2009-07-12T10:00:53Z @Jim Puls: Yeah, that's right, and to do that, they use mod_rewrite. http://stackoverflow.com/questions/1113811/what-is-nsconcretedata-and-where-is-it-defined/1113848#1113848 Comment by Mr. Matt on What is NSConcreteData, and where is it defined? Mr. Matt 2009-07-11T15:08:25Z 2009-07-11T15:08:25Z I found the root of my problem to be a check on [sub isMemberOfClass:[NSData class]] instead of [sub isKindOfClass:[NSData class]] The latter returns true if sub is an instance of a class derived from NSData, whereas the former wouldn't. Cheers!