User Mr. Matt - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:18:05Zhttp://stackoverflow.com/feeds/user/12037http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/73692#7369212Answer by Mr. Matt for What development book made the most impact on you as a developer?Mr. Matt2008-09-16T15:38:21Z2009-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-memcached3Fragment Caching with MemcachedMr. Matt2008-11-03T10:13:12Z2009-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-problem1How do I debug an 'unrecognized selector sent to instance' problem?Mr. Matt2009-03-08T01:29:35Z2009-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-site25Building an Addictive SiteMr. Matt2008-11-04T12:03:12Z2009-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-objectivesync1Storing UIImages with ObjectiveRecord and ObjectiveSyncMr. Matt2009-07-15T06:39:14Z2009-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-files0NSMutableURLRequest with large filesMr. Matt2009-10-10T19:44:31Z2009-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-iphone7Geolocation API on the iPhoneMr. Matt2008-10-21T12:01:40Z2009-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-activerecord4Overriding id on create in ActiveRecordMr. Matt2009-01-10T19:44:57Z2009-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 => 10, :title => '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-iphone0How do I access the SQLite DB my app uses on the iPhoneMr. Matt2009-06-12T08:26:05Z2009-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#423869324Answer by Mr. Matt for What's your favorite "programmer ignorance" pet peeve?Mr. Matt2009-01-08T10:57:18Z2009-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-rake0How do you generate rDoc for a particular plugin using rakeMr. Matt2008-10-29T11:49:42Z2009-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-struct1NSMutableArray addobject with malloc'd structMr. Matt2009-09-08T09:16:46Z2009-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->latitude = latitude;
new_coordinate->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 < [points count]; count++) {
free([points objectAtIndex:count]);
}
[points release];
[super dealloc];
}
@end
</code></pre>
http://stackoverflow.com/questions/1091713/using-willpaginate-with-multiple-models-rails1Using will_paginate with multiple models (Rails)Mr. Matt2009-07-07T11:06:32Z2009-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-access2Testing iPhone app with limited network accessMr. Matt2009-06-05T11:05:43Z2009-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#12772932Answer by Mr. Matt for jQuery : how to debug?Mr. Matt2009-08-14T11:07:21Z2009-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#12739471Answer by Mr. Matt for What should NOT be under source control?Mr. Matt2009-08-13T19:01:45Z2009-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#11431661Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-17T13:09:44Z2009-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#12549621Answer by Mr. Matt for How to get any update from Mysql to sqllite in iphone Mr. Matt2009-08-10T13:41:11Z2009-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#11945700Answer by Mr. Matt for Variable cost subscription payment provider UKMr. Matt2009-07-28T14:40:00Z2009-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#11868232Answer by Mr. Matt for uses of frameworksMr. Matt2009-07-27T07:05:48Z2009-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#11842010Answer by Mr. Matt for Getting a reference to the UIApplication delegateMr. Matt2009-07-26T10:12:18Z2009-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-disk10git rm multiple files that have already been deleted from diskMr. Matt2009-01-29T17:18:14Z2009-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#11765920Answer by Mr. Matt for capistrano problemMr. Matt2009-07-24T09:27:43Z2009-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#11706806Answer by Mr. Matt for Commiting specific parts of a file in GitMr. Matt2009-07-23T09:42:08Z2009-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-rails0Rendering a collection of different classes in RailsMr. Matt2009-07-22T10:16:39Z2009-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><%= render @results %>
</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#11543030Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-20T15:38:20Z2009-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#11542921Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-20T15:35:46Z2009-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#11542834Answer by Mr. Matt for Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-20T15:33:54Z2009-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#11523113Answer by Mr. Matt for What is an Object-Relational Mapping Framework?Mr. Matt2009-07-20T08:27:34Z2009-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-model0ActiveRecord save(false) still validating modelMr. Matt2009-07-16T12:39:12Z2009-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-structComment by Mr. Matt on NSMutableArray addobject with malloc'd structMr. Matt2009-09-08T18:13:23Z2009-09-08T18:13:23ZAwesome - Thanks, Jason!http://stackoverflow.com/questions/1392909/nsmutablearray-addobject-with-mallocd-struct/1392944#1392944Comment by Mr. Matt on NSMutableArray addobject with malloc'd structMr. Matt2009-09-08T09:44:11Z2009-09-08T09:44:11ZI'll try that later today - thanks Philippe!http://stackoverflow.com/questions/1222531/insert-into-wont-workComment by Mr. Matt on INSERT INTO wont work!Mr. Matt2009-08-03T14:08:33Z2009-08-03T14:08:33ZI'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#423869Comment by Mr. Matt on What's your favorite "programmer ignorance" pet peeve?Mr. Matt2009-07-29T09:23:38Z2009-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#1164242Comment by Mr. Matt on how to check if a string looks randomized, or human generated and pronouncable?Mr. Matt2009-07-22T10:26:05Z2009-07-22T10:26:05ZIt'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#1144313Comment by Mr. Matt on How do you start learning a new programming language?Mr. Matt2009-07-17T16:28:41Z2009-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#1144069Comment by Mr. Matt on iPhone: Steadily increasing memory usage in apps using touchesMr. Matt2009-07-17T16:25:20Z2009-07-17T16:25:20ZAre 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#1144069Comment by Mr. Matt on iPhone: Steadily increasing memory usage in apps using touchesMr. Matt2009-07-17T16:24:41Z2009-07-17T16:24:41ZAre you retaining these objects at all?http://stackoverflow.com/questions/1141998/most-useful-rails-plugins-ruby-libraries-and-ruby-gems/1143683#1143683Comment by Mr. Matt on Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-17T15:29:24Z2009-07-17T15:29:24ZWe 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-gemsComment by Mr. Matt on Most useful Rails plugins, Ruby libraries and Ruby gems?Mr. Matt2009-07-17T08:35:26Z2009-07-17T08:35:26ZWiki this, please!http://stackoverflow.com/questions/1115886/rails-how-can-you-access-session-variables-using-multiple-controllers/1118346#1118346Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers?Mr. Matt2009-07-14T06:34:58Z2009-07-14T06:34:58ZAhhh - 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#1118346Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers?Mr. Matt2009-07-13T12:53:41Z2009-07-13T12:53:41ZSorry - 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#1118346Comment by Mr. Matt on Rails: How can you access session variables using multiple controllers?Mr. Matt2009-07-13T11:16:33Z2009-07-13T11:16:33ZNo - 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#1026103Comment by Mr. Matt on No route matches "/javascripts/prototype.js" -> explicitly define one?Mr. Matt2009-07-12T10:00:53Z2009-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#1113848Comment by Mr. Matt on What is NSConcreteData, and where is it defined?Mr. Matt2009-07-11T15:08:25Z2009-07-11T15:08:25ZI 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!