User Josh Gagnon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T17:55:08Zhttp://stackoverflow.com/feeds/user/7944http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone26How do I detect when someone shakes an iPhone?Josh Gagnon2008-09-29T20:14:59Z2009-11-19T17:44:24Z
<p>I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?</p>
http://stackoverflow.com/questions/131062/iphone-viewwillappear-not-firing/135418#1354182Answer by Josh Gagnon for iphone viewWillAppear not firingJosh Gagnon2008-09-25T19:24:01Z2008-09-25T19:24:01Z<p>I've been using a navigation controller. When I want to either descend to another level of data or show my custom view I use the following:</p>
<pre><code>[self.navigationController pushViewController:<view> animated:<BOOL>];
</code></pre>
<p>When I do this, I do get the viewWillAppear function to fire. I suppose this qualifies as "indirect" because I'm not calling the actual addSubView method myself. I don't know if this is 100% applicable to your application since I can't tell if you're using a navigation controller, but maybe it will provide a clue.</p>
http://stackoverflow.com/questions/108169/how-do-i-take-a-slice-of-a-list-a-sublist-in-scheme/116452#1164520Answer by Josh Gagnon for How do I take a slice of a list (A sublist) in scheme?Josh Gagnon2008-09-22T18:04:29Z2008-09-23T17:40:00Z<p>You can try this function:</p>
<blockquote>
<p><strong>subseq</strong> <em>sequence start &optional end</em></p>
</blockquote>
<p>The <em>start</em> parameter is your offset. The <em>end</em> parameter can be easily turned into the number of elements to grab by simply adding start + number-of-elements.</p>
<p>A small bonus is that <strong>subseq</strong> works on all sequences, this includes not only lists but also string and vectors.</p>
<p>Edit: It seems that not all lisp implementations have subseq, though it will do the job just fine if you have it.</p>
http://stackoverflow.com/questions/87058/how-do-you-submit-a-csr-certificate-signing-request-to-the-apple-developer-port/122502#1225020Answer by Josh Gagnon for How do you submit a CSR (Certificate Signing Request) to the Apple Developer Portal?Josh Gagnon2008-09-23T17:36:10Z2008-09-23T17:36:10Z<p>Even though the real question here turned out to be more "Do I need to enroll in order to deploy apps to the iPhone?" the answer to the question can be found <a href="http://developer.apple.com/iphone/manage/certificates/team/howto.action" rel="nofollow">here</a>. The guides Apple has written are actually pretty good. The only problem with them is that sometimes the entire enrollment process is so confusing you can't even find your own feet, let alone a HOWTO.</p>
http://stackoverflow.com/questions/116579/opening-more-than-one-of-the-same-mac-application-at-once/120828#1208284Answer by Josh Gagnon for Opening more than one of the same Mac Application at once.Josh Gagnon2008-09-23T13:00:15Z2008-09-23T13:00:15Z<p>You've probably already gotten enough code that you don't want to hear this, but you should really not be starting up two instances of the same application. There's a reason that you're finding it so difficult and that's because Apple doesn't want you to do it.</p>
<p>The OSX way of doing this is to use the <strong>Cocoa Document-based Application</strong> template in XCode. <a href="http://developer.apple.com/documentation/DeveloperTools/Conceptual/XcodeProjectManagement/030-Creating_Projects/chapter_4_section_2.htm" rel="nofollow">Apple Documentation: choosing a project.</a></p>
<p>This is something users are very accustomed to, and it works just fine. FTP programs, IRC clients, and many other types already use different "document" windows to point to different servers or channels. There's nothing inherently different about pointing to different databases.</p>
<p>Depending on how much code you've written, and how your application is designed, this may be pretty much impossible to implement without starting over. Developers who are encountering this problem during design phase, however, should definitely take Apple's advice.</p>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/116389#1163890Answer by Josh Gagnon for What fun things do you do to release stress at the office?Josh Gagnon2008-09-22T17:54:02Z2008-09-22T17:54:02Z<p>We got a bunch of packing materials from an appliance we ordered and discovered that one of the pieces of styrofoam looks a lot like a picture frame. To makes things even better, one of the pieces of cardboard fits as a perfect piece of backing. We tweak our "art installation" whenever we get something odd to display. Currently it has a giant plastic ear in it with the caption "app.ear". (Our app deploys as an ear file in weblogic, we just couldn't resist. It's awful, I know. :P)</p>
http://stackoverflow.com/questions/112687/what-tools-do-you-use-to-security-test-your-web-applications/112691#1126912Answer by Josh Gagnon for What tools do you use to security test your web applications?Josh Gagnon2008-09-22T00:48:05Z2008-09-22T00:48:05Z<p>Fortify has done well for us.</p>
<p><a href="http://www.fortify.com/" rel="nofollow">http://www.fortify.com/</a></p>
http://stackoverflow.com/questions/112643/how-can-i-dynamically-create-a-selector-at-runtime-with-objective-c/112680#1126808Answer by Josh Gagnon for How can I dynamically create a selector at runtime with Objective-C?Josh Gagnon2008-09-22T00:42:32Z2008-09-22T00:42:32Z<p>According to the XCode documentation, your psuedocode basically gets it right.</p>
<blockquote>
<p>It’s most efficient to assign values to SEL variables at compile time with the @selector() directive. However, in some cases, a program may need to convert a character string to a selector at runtime. This can be done with the NSSelectorFromString function:</p>
</blockquote>
<p><code>setWidthHeight = NSSelectorFromString(aBuffer);</code></p>
<p>Edit: Bummer, too slow. :P</p>
http://stackoverflow.com/questions/122877/why-does-strcpy-trigger-a-segmentation-fault-with-global-argumentsComment by Josh Gagnon on Why does strcpy trigger a segmentation fault with global arguments?Josh Gagnon2008-09-23T18:36:46Z2008-09-23T18:36:46ZSince I don't think it's actually going to solve the problem I'll just comment that strncpy is highly recommended over strcpy.http://stackoverflow.com/questions/108169/how-do-i-take-a-slice-of-a-list-a-sublist-in-scheme/116452#116452Comment by Josh Gagnon on How do I take a slice of a list (A sublist) in scheme?Josh Gagnon2008-09-23T17:39:08Z2008-09-23T17:39:08ZWeird. I read about it Paradigms of AI and it was presented as part of the standard. I guess I'm not sure which one of the standards. :P Sorry 'bout that.