User Nick Brosnahan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T14:02:14Zhttp://stackoverflow.com/feeds/user/528http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1616487/is-there-something-special-to-consider-when-starting-shark-in-snow-leopard/1616510#16165101Answer by Nick Brosnahan for Is there something special to consider when starting Shark in Snow Leopard?Nick Brosnahan2009-10-23T23:53:42Z2009-10-23T23:53:42Z<p>Have you looked in system.log in Console.app? Could be a clue there.
Also check for crash reports in ~/Library/Logs/CrashReporter.</p>
http://stackoverflow.com/questions/1492600/what-are-the-most-useful-third-party-iphone-frameworks/1501639#15016390Answer by Nick Brosnahan for What are the most useful third party iPhone frameworks?Nick Brosnahan2009-10-01T02:40:53Z2009-10-01T02:40:53Z<p><a href="http://iphoneonrails.com/" rel="nofollow">Objective Resource</a> lets you connect an iPhone app to a rails app.</p>
http://stackoverflow.com/questions/1300218/create-a-universal-binary-from-two-apps/1300272#13002721Answer by Nick Brosnahan for Create a "Universal Binary" from two apps?Nick Brosnahan2009-08-19T14:16:20Z2009-08-19T14:16:20Z<p>Check out the man page for lipo. I believe you can use -create to take multiple input files and create a single output file with multiple architectures.</p>
http://stackoverflow.com/questions/10715/what-types-of-software-testing-are-there3What types of software testing are there?Nick Brosnahan2008-08-14T05:55:56Z2009-07-19T01:37:54Z
<p>What are all the types of software testing that you can put in front of the word "Testing"?</p>
<p>Here are some examples:</p>
<ul>
<li>Unit Testing</li>
<li>Functional Testing</li>
<li>Integration Testing</li>
<li>Performance Testing</li>
<li>Stress and Volume Testing</li>
<li>White Box Testing</li>
<li>Black Box Testing</li>
<li>User Testing</li>
<li>Automated Testing</li>
<li>Regression Testing</li>
</ul>
<p>Let's see if we can come up with good, concise, distinguishing definitions for these.</p>
<p>How about 40 words or fewer for each of these (and others)?</p>
http://stackoverflow.com/questions/1147955/to-run-a-sql-file-in-mysql/1147965#11479650Answer by Nick Brosnahan for To run a .sql -file in MySQLNick Brosnahan2009-07-18T16:37:04Z2009-07-18T16:37:04Z<p>Have you actually created the database 'personal' and the table 'posts'?</p>
<p>You might want to try something like: </p>
<pre><code>mysql -h localhost -u <user> -p<password> -D personal < /users/cs/SO_db/posts.sql
</code></pre>
http://stackoverflow.com/questions/798983/is-there-a-good-argument-for-combining-flex-and-rails/799019#7990192Answer by Nick Brosnahan for Is there a good argument for combining Flex and Rails?Nick Brosnahan2009-04-28T17:24:41Z2009-04-28T17:24:41Z<p>I think you want to consider this in terms of what your client app needs to do. If you can accomplish everything you need within rails, then there's no real need to go to flex. If you need more client-side control, then you can build a flex app and make the rails app just a web service.</p>
http://stackoverflow.com/questions/798933/what-does-leak-of-returned-object-mean-from-clang/799001#7990012Answer by Nick Brosnahan for What does "Leak of returned object" mean, from Clang?Nick Brosnahan2009-04-28T17:19:18Z2009-04-28T17:19:18Z<p>you want:</p>
<p>return [data autorelease];</p>
<p>since you're handing it to the caller.</p>
http://stackoverflow.com/questions/798950/is-the-main-m-really-the-place-where-the-autorelease-pool-of-the-main-run-loop-i/798990#7989901Answer by Nick Brosnahan for is the main.m really the place, where the autorelease pool of the main run loop is created by every event?Nick Brosnahan2009-04-28T17:16:50Z2009-04-28T17:16:50Z<p>No, this is the outermost function in your application, a regular C-style main().</p>
<p>Everything that the iPhone app does takes place in UIApplicationMain, including all the event handling.</p>
http://stackoverflow.com/questions/41630/in-ruby-is-it-possible-to-concat-arguments-to-a-command-line-using-backquotes/41892#418923Answer by Nick Brosnahan for In Ruby, is it possible to concat arguments to a command line using backquotes ?Nick Brosnahan2008-09-03T15:09:56Z2008-09-03T15:09:56Z<pre><code>`ls #{directory}`
</code></pre>
<p>isn't very safe because you're going to run into problems with path names that have spaces in them. </p>
<p>It's safer to do something like this:</p>
<pre><code>directory = '/home/paulgreg/'
args = []
args << "/bin/ls"
args << directory
system(*args)
</code></pre>
http://stackoverflow.com/questions/23860/what-is-the-best-way-to-learn-recursion/23865#238650Answer by Nick Brosnahan for What is the best way to learn recursion?Nick Brosnahan2008-08-23T02:27:07Z2008-08-23T02:27:07Z<p>Infinite recursion == Stack Overflow :-)</p>
http://stackoverflow.com/questions/3553/one-piece-of-advice/13027#13027130Answer by Nick Brosnahan for One piece of adviceNick Brosnahan2008-08-16T06:41:12Z2008-08-16T06:41:12Z<p>Programming is a very sedentary and often stressful job. It sucks you in and makes you eat cold pizza and drink soda at all hours of the night. Look around at your co-workers. Many software engineers are pretty heavy and unhealthy. I wish I were thinner and healthier. </p>
<p>My advice: <strong>Exercise daily. Eat right. Don't ever get soft in the middle.</strong></p>
http://stackoverflow.com/questions/11930/how-can-i-determine-the-ip-of-my-router-gateway-in-java/11960#11960-1Answer by Nick Brosnahan for How can I determine the IP of my router/gateway in Java?Nick Brosnahan2008-08-15T04:25:23Z2008-08-15T04:25:23Z<p>Try shelling out to traceroute if you have it.</p>
<p>'traceroute -m 1 www.amazon.com' will emit something like this:</p>
<pre><code>traceroute to www.amazon.com (72.21.203.1), 1 hops max, 40 byte packets
1 10.0.1.1 (10.0.1.1) 0.694 ms 0.445 ms 0.398 ms
</code></pre>
<p>Parse the second line. Yes, it's ugly, but it'll get you going until someone posts something nicer.</p>
http://stackoverflow.com/questions/10731/best-way-to-store-a-database-password-in-a-startup-script-config-file/10764#107640Answer by Nick Brosnahan for Best way to store a database password in a startup script / config file?Nick Brosnahan2008-08-14T06:39:42Z2008-08-14T06:39:42Z<p>You can bake a symmetric encryption key into your binary, and have that binary read an encrypted username/password from a file on disk when it starts up. </p>
<p>However, this is not really much more than obfuscation, since your code is likely to be stored in some source repository somewhere. </p>
<p>I would suggest that you would be better served to control access to your servers both physically and over the network using a firewall and a private network bubble, and store the passwords in the clear (or base-64 encoded) on disk with permissions locked down to the run user for your web app.</p>
<p>You can also lock down the database server to only accept connections from your web app machines by IP.</p>
<p>Ultimately, your problem is that the key (your DB username/password pair) needs to be available for programmatic, unattended use by your web apps.</p>
http://stackoverflow.com/questions/2658/version-control-getting-started/10748#107485Answer by Nick Brosnahan for Version Control. Getting started...Nick Brosnahan2008-08-14T06:21:33Z2008-08-14T06:21:33Z<p>I've used RCS, CVS, SCCS, SourceSafe, Vault, perforce, subversion, and git.</p>
<p>I've evaluated BitKeeper, Dimensions, arch, bazaar, svk, ClearCase, PVCS, and Synergy.</p>
<p>If I had to start a new repository today, I'd choose <strong>git</strong>. Hands down.</p>
<p>It's free, fast, and under active development.</p>
<p>And you can use it as a client of any subversion repository using git-svn.</p>
<p>It rocks.</p>
http://stackoverflow.com/questions/8970/accessing-isight-programatically/10698#106984Answer by Nick Brosnahan for Accessing iSight programatically?Nick Brosnahan2008-08-14T05:28:59Z2008-08-14T05:28:59Z<p>You should check out the <a href="http://developer.apple.com/documentation/QuickTime/Conceptual/QTKitCaptureProgrammingGuide/Introduction/chapter_1_section_1.html#//apple_ref/doc/uid/TP40004574-CH1-DontLinkElementID_41" rel="nofollow">QTKit Capture documentation</a>.</p>
<p>On Leopard, you can get at all of it over the RubyCocoa bridge:</p>
<pre><code>require 'osx/cocoa'
OSX.require_framework("/System/Library/Frameworks/QTKit.framework")
OSX::QTCaptureDevice.inputDevices.each do |device|
puts device.localizedDisplayName
end
</code></pre>
http://stackoverflow.com/questions/4387/best-multi-language-documentation-generator/4389#438911Answer by Nick Brosnahan for Best Multi-Language Documentation GeneratorNick Brosnahan2008-08-07T04:30:10Z2008-08-07T05:22:33Z<p>http://www.stack.nl/~dimitri/doxygen/ is probably a good place to start.</p>
<p>From the site: "Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."</p>
<p>For JavaScript, there's http://jsdoc.sourceforge.net/, but it's not multi-language.</p>
<p>For VB.NET, there's http://vbdox.sourceforge.net/, also not multi-language.</p>http://stackoverflow.com/questions/2232/calling-bash-commands-from-ruby/4413#44136Answer by Nick Brosnahan for Calling Bash Commands From RubyNick Brosnahan2008-08-07T05:10:35Z2008-08-07T05:10:35Z<p>Some things to think about when choosing between these mechanisms are:</p>
<ol>
<li>Do you just want stdout or do you
need stderr as well? or even
separated out?</li>
<li>How big is your output? Do you want
to hold the entire result in memory?</li>
<li>Do you want to read some of your
output while the subprocess is still
running?</li>
<li>Do you need result codes?</li>
<li>Do you need a ruby object that
represents the process and lets you
kill it on demand?</li>
</ol>
<p>You may need anything from simple backticks (``), system(), and IO.popen to full-blown Kernel.fork/Kernel.exec with IO.pipe and IO.select.</p>
<p>You may also want to throw timeouts into the mix if a subprocess takes too long to execute.</p>
<p>Unfortunately, it very much <strong><em>depends</em></strong>.</p>http://stackoverflow.com/questions/147275//147301#147301Comment by Nick Brosnahan on 这是一个测试,想看一下中文是否能得到支持Nick Brosnahan2009-05-14T03:38:24Z2009-05-14T03:38:24ZI like the idea of giving reputation to people who translate both questions and answers into other languages. There's nothing wrong with overlaying multi-lingual on the site, but I'd be concerned about splitting the site into language realms. It's likely though that English is going to be the more effective language to reach the largest audience.
Maybe even an additional voting system like "Is this a good translation for language X?"