User Jim Puls - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:20:54Z http://stackoverflow.com/feeds/user/6010 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/382244/third-party-uniform-type-identifier-implementations 0 Third-party Uniform Type Identifier implementations? Jim Puls 2008-12-19T21:22:10Z 2009-12-04T15:00:04Z <p>The madness of file extensions and MIME types and creator codes and magic numbers to determine file types is a huge mess. Coming from a background of Cocoa programming, I supposed I'm spoiled: in Tiger, OS X added a system called <a href="http://en.wikipedia.org/wiki/Uniform_Type_Identifier" rel="nofollow">Uniform Type Identifiers</a> (UTIs) that makes the entire process sane.</p> <p>Given that I'm doing a bunch of web development in (insert your favorite web development environment here), is there anything similar that's not dependent on running OS X and - better yet - works in multiple programming languages?</p> <p>Right now, I'm using the <code>file</code> command on Linux to replicate some of the functionality, but it's just not the same. And, of course, everybody has their <a href="http://httpd.apache.org/docs/2.2/mod/mod_mime.html#typesconfig" rel="nofollow">huge lookup tables</a>, but nothing is centralized.</p> <p>Has anybody done this or run across this before?</p> http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1806470#1806470 3 Answer by Jim Puls for Code Golf: Ulam Spiral Jim Puls 2009-11-27T02:09:51Z 2009-11-28T01:36:39Z <p>My first code golf!</p> <h3>Ruby, <s>309</s> <s>301</s> <s>283</s> <s>271</s> 265 characters</h3> <pre><code>s=gets.to_i;d=s*2-1;a=Array.new(d){' '*d} e=d**2;p='*'*e;2.upto(e){|i|2.upto(e/i){|j|p[i*j-1]=' '}};p[0]=' ' s.times{|i|k=s-i-1;l=2*i;m=l+1;o=l-1 m.times{|j|n=j+k;a[k][n]=p[l**2-j];a[n][k]=p[l**2+j];a[k+l][n]=p[m**2-m+j]} l.times{|j|a[j+k][k+l]=p[o**2+o-j]}} puts a </code></pre> http://stackoverflow.com/questions/1692005/returning-multiple-values-from-a-method-in-objective-c/1692021#1692021 2 Answer by Jim Puls for Returning multiple values from a method in Objective-C Jim Puls 2009-11-07T04:43:20Z 2009-11-07T04:43:20Z <p>Since you can only return a single value from any method in C and C-derived languages, you simply need to return a single value that represents all of your other values. This is what your sample code is doing with an <code>NSDictionary</code>.</p> <p>The sample code is correct, even if it's a bit contrary to common Objective-C style.</p> <p>What you declare in the header file is simply the declaration of the method, that is:</p> <pre><code>@interface MyClass : NSObject - (NSDictionary *)EndOfTurn:(int)varTurns withFatness:(int)varFatness; @end </code></pre> <p>In the source file, then:</p> <pre><code>@implementation MyClass // code, as given above @end </code></pre> http://stackoverflow.com/questions/1689385/how-does-this-days-in-month-function-work/1689411#1689411 9 Answer by Jim Puls for How does this "days in month" function work? Jim Puls 2009-11-06T18:27:31Z 2009-11-06T18:27:31Z <p>The "32nd day" of any month will roll over to the next one. If there are 31 days in a month, the "32nd day" will be the 1st of the next month. If there are 30, the "32nd day" will be the 2nd of the next month. If there are 28, the "32nd day" will be the 4th of the next month.</p> <p>Subtract any of these from 32 and you get the correct number.</p> http://stackoverflow.com/questions/1686061/branching-without-branches/1686133#1686133 1 Answer by Jim Puls for Branching without branches Jim Puls 2009-11-06T08:11:33Z 2009-11-06T08:11:33Z <p>What's so wrong with branching? You could pretty easily maintain a "templates" branch and move your changed documents between them.</p> <p>Say, for example:</p> <pre><code>git checkout -b templates git checkout master git checkout templates path/to/template.ext cp path/to/template.ext path/to/document.ext # decide you want to change the template cp path/to/document.ext path/to/template.ext git commit -a -m "changed template" git checkout templates git merge master </code></pre> http://stackoverflow.com/questions/1647287/add-a-node-before-a-closing-tag/1647303#1647303 5 Answer by Jim Puls for Add a node before a closing tag? Jim Puls 2009-10-30T00:12:19Z 2009-10-30T00:12:19Z <p>If you're doing straight JavaScript, it's called <a href="http://www.w3schools.com/DOM/met%5Felement%5Fappendchild.asp" rel="nofollow"><code>appendChild</code></a>. jQuery has a wrapper called <a href="http://docs.jquery.com/Manipulation/append#content" rel="nofollow"><code>append</code></a>. Prototype has <a href="http://prototypejs.org/api/element/insert" rel="nofollow"><code>insert</code></a> which appends when not given a location.</p> http://stackoverflow.com/questions/1556937/how-can-i-write-a-google-wave-rich-client/1556982#1556982 1 Answer by Jim Puls for How can I write a Google Wave rich client? Jim Puls 2009-10-12T21:13:38Z 2009-10-12T21:13:38Z <p>Google has released a <a href="http://www.waveprotocol.org/" rel="nofollow">federation protocol</a> that lets your write your own Wave servers and have them talk to Google's.</p> <p>They also have <a href="http://code.google.com/apis/wave/" rel="nofollow">embedding APIs</a> that let you put your HTML content in Wave and put Wave in your HTML content.</p> <p>Neither of these get you where you want, though, because the way that Google's in-browser Wave client and their Wave servers talk is still proprietary, and that's what you're looking for.</p> <p>Your answer is "it doesn't even make sense". You'd be better off building your own chat support and then connecting it to Wave later on.</p> http://stackoverflow.com/questions/1536190/how-do-i-create-a-mac-installer-for-my-java-application/1536234#1536234 1 Answer by Jim Puls for How do I create a Mac installer for my Java application? Jim Puls 2009-10-08T07:45:54Z 2009-10-08T07:45:54Z <p>The <em>very first</em> hit on Google for "Mac Installer" is the <a href="http://en.wikipedia.org/wiki/Installer%5F%28Mac%5FOS%5FX%29" rel="nofollow">Wikipedia article about the Mac Installer</a>.</p> <p>You can click through from there to read Apple's <a href="http://developer.apple.com/mac/library/documentation/DeveloperTools/Conceptual/SoftwareDistribution/Introduction/Introduction.html" rel="nofollow">Software Delivery Guide</a>. It tells you in exhaustive detail everything you could possibly want to know about this.</p> <p>Please, for your own good, read up on <a href="http://catb.org/~esr/faqs/smart-questions.html" rel="nofollow">How To Ask Questions The Smart Way</a>. You'll get much better results that way.</p> http://stackoverflow.com/questions/1529896/debugging-a-scripting-language-like-ruby/1529917#1529917 4 Answer by Jim Puls for Debugging a scripting language like ruby Jim Puls 2009-10-07T06:47:28Z 2009-10-07T06:47:28Z <p>Seems like the problem here is that your environment (Visual Studio) doesn't support these languages, not that these languages don't support debuggers in general.</p> <p>Perl, Python, and Ruby all have fully-featured debuggers; you can find other IDEs that help you, too. For Ruby, there's <a href="http://www.jetbrains.com/ruby/index.html" rel="nofollow">RubyMine</a>; for Perl, there's <a href="http://www.activestate.com/komodo" rel="nofollow">Komodo</a>. And that's just off the top of my head.</p> http://stackoverflow.com/questions/1513088/how-lightweight-is-nsoperationqueue-on-snow-leopard 5 How lightweight is NSOperationQueue on Snow Leopard? Jim Puls 2009-10-03T07:34:05Z 2009-10-04T04:02:06Z <p>I'm working with some code that does a bunch of asynchronous operating with various callbacks; Snow Leopard has made this incredibly easy with blocks and GCD.</p> <p>I'm calling <code>NSTask</code> from an <code>NSBlockOperation</code> like so:</p> <pre><code>[self.queue addOperationWithBlock:^{ NSTask *task = [NSTask new]; NSPipe *newPipe = [NSPipe new]; NSFileHandle *readHandle = [newPipe fileHandleForReading]; NSData *inData = nil; [task setLaunchPath:path]; [task setArguments:arguments]; [task launch]; while ((inData = [readHandle availableData]) &amp;&amp; [inData length]) { [[NSOperationQueue mainQueue] addOperationWithBlock:^{ // callback }]; } [task waitUntilExit]; }]; </code></pre> <p>This approach works perfectly. It's like magic, as long as my callbacks handle the concurrency correctly.</p> <p>Now, I want to be able to coalesce some of these calls; this is inside a model object's "refresh" method and may take a long time to complete. Having the user pound on the refresh button shouldn't tie up the machine and all that.</p> <p>I can see an implementation dilemma here. I can make a whole bunch of queues - one per call type - and set their concurrent operation counts to 1 and then call <code>-cancelAllOperations</code> whenever it's time for a new call.</p> <p>Alternately, I could do some more manual bookkeeping on which calls are currently happening and manage a single queue per model object (as I'm doing) or I could go even further and use a global queue.</p> <p>How heavy is <code>NSOperationQueue</code>? Is creating a lot of queues a bad architecture decision? Is there a better way to coalesce these tasks?</p> http://stackoverflow.com/questions/1515100/using-a-c-library-in-an-objective-c-app/1515111#1515111 0 Answer by Jim Puls for Using a C++ library in an Objective-C app? Jim Puls 2009-10-03T23:20:04Z 2009-10-03T23:20:04Z <p>Objective-C++.</p> <p><a href="http://www.google.com/search?q=%22objective-c%2B%2B%22" rel="nofollow">http://www.google.com/search?q=%22objective-c%2B%2B%22</a> <a href="http://stackoverflow.com/questions/406753/how-well-is-objective-c-supported">http://stackoverflow.com/questions/406753/how-well-is-objective-c-supported</a> <a href="http://stackoverflow.com/questions/462924/there-is-really-something-like-objective-c">http://stackoverflow.com/questions/462924/there-is-really-something-like-objective-c</a> <a href="http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c">http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c</a></p> http://stackoverflow.com/questions/1473012/what-are-the-ib-objects-used-in-mac-os-xs-address-book/1473036#1473036 1 Answer by Jim Puls for What are the IB objects used in Mac OS X's Address Book? Jim Puls 2009-09-24T17:16:49Z 2009-09-24T17:16:49Z <p>It's all entirely custom view code involving <code>NSPopUpButton</code>s and <code>NSButton</code>s and <code>NSTextField</code>s. While you may not be able to get it for free in Interface Builder, it shouldn't be especially difficult to build from scratch.</p> http://stackoverflow.com/questions/1386978/how-do-i-translate-this-sha-function-in-java-to-an-equivalent-in-ruby/1387001#1387001 2 Answer by Jim Puls for How do I translate this SHA function in Java to an equivalent in Ruby? Jim Puls 2009-09-06T23:32:35Z 2009-09-07T13:06:22Z <p>Before you read this, read <a href="http://stackoverflow.com/questions/1386978/how-do-i-translate-this-sha-function-in-java-to-an-equivalent-in-ruby/1386987#1386987">Greg's answer</a> about hashing.</p> <p>Then:</p> <pre><code>import java.security.*; import sun.misc.BASE64Encoder; import java.io.*; public class test { public static String encrypt(String password) { MessageDigest md; try { md = MessageDigest.getInstance("SHA"); md.update(password.getBytes("UTF-8")); // step 3 byte raw[] = md.digest(); // step 4 String hash = (new BASE64Encoder()).encode(raw); // step 5 return hash; // step 6 } catch (NoSuchAlgorithmException e) { } catch (java.io.UnsupportedEncodingException e) { } return null; } public static void main(String[] args) { System.out.println(encrypt("my password")); } } </code></pre> <p>This outputs</p> <blockquote> <p>ovj3+hlaCAoipokEHaqPIET58zY=</p> </blockquote> <p>In Ruby:</p> <pre><code>require 'digest/sha1' require 'base64' Base64.b64encode Digest::SHA1.digest('my password') </code></pre> <p>also outputs</p> <blockquote> <p>ovj3+hlaCAoipokEHaqPIET58zY=</p> </blockquote> http://stackoverflow.com/questions/1388128/developer-documentation-in-xcode-3-2-a-step-back-or-is-my-installation-screwed/1388164#1388164 1 Answer by Jim Puls for Developer Documentation in Xcode 3.2 - a step back or is my installation screwed? Jim Puls 2009-09-07T08:18:10Z 2009-09-07T08:18:10Z <p>The "Home" button in the documentation window's toolbar (is your toolbar hidden, perhaps?) will list the documentation sets you have installed. You'll want to install them from the "Documentation" page of Xcode's preferences window, it's the last one.</p> <p>Yes, this is slightly annoying that you have to take the extra step, and it's very nonobvious where the extra step is.</p> http://stackoverflow.com/questions/1258735/does-nsarray-copy-objects/1258740#1258740 8 Answer by Jim Puls for Does NSArray copy objects? Jim Puls 2009-08-11T06:40:26Z 2009-08-11T06:40:26Z <p>No, it doesn't copy them. It retains them. Yes, you can safely release the objects after adding them to the array.</p> <p><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSArray%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000137-279947" rel="nofollow">The docs</a>, as always, spell this out very clearly:</p> <blockquote> <p>Arrays maintain strong references to their contents—in a managed memory environment, each object receives a retain message before its id is added to the array and a release message when it is removed from the array or when the array is deallocated. If you want a collection with different object ownership semantics, consider using CFArray Reference, NSPointerArray, or NSHashTable instead.</p> </blockquote> http://stackoverflow.com/questions/1231261/objective-c-nsstring-strange-characters-when-logging/1231264#1231264 4 Answer by Jim Puls for Objective-C NSString: strange characters when logging Jim Puls 2009-08-05T04:57:32Z 2009-08-05T04:57:32Z <p>Log your string with <code>%@</code> instead of <code>%s</code> and you'll be fine. <code>NSString</code>s aren't pointers to characters, they're full-fledged objects, so you need to use the "object" placeholder in the log format string.</p> <p>This has the added advantage of doing the right thing with non-ASCII strings and all of the other important things that <code>NSString</code> gives you.</p> <p>Note that if you had just logged the result from SQLite directly instead of creating an <code>NSString</code> with it, then your <code>%s</code> would have been correct.</p> <p>Remember: <code>%s</code> is for C strings, <code>%@</code> is for Objective-C objects.</p> http://stackoverflow.com/questions/1190675/many-svn-respositories-or-one-repository-with-many-directories/1190688#1190688 0 Answer by Jim Puls for Many SVN respositories or one repository with many directories? Jim Puls 2009-07-27T21:20:24Z 2009-07-27T21:20:24Z <p>Multiple repositories. As long as you're using Subversion, then each repository has sequential version numbers, which can be nice. It also makes switching to other systems or addressing server-side scaling much easier.</p> http://stackoverflow.com/questions/1173676/how-can-i-check-out-a-particular-version-of-one-file-in-git/1173708#1173708 1 Answer by Jim Puls for How can I check out a particular version of one file in Git? Jim Puls 2009-07-23T18:41:05Z 2009-07-23T18:41:05Z <p><code>HEAD~43</code> refers to the commit (version) of the file. Instead of that, you can use the commit hash you get from doing <code>git log</code> on the file. If you just want the file, you don't need to run <code>git reset</code> on it; that's only necessary if you want to forward-port the file to the current HEAD.</p> http://stackoverflow.com/questions/1170392/couchdb-map-reduce-in-erlang/1170404#1170404 5 Answer by Jim Puls for CouchDB: map-reduce in Erlang Jim Puls 2009-07-23T08:24:17Z 2009-07-23T08:24:17Z <p>You can do so using <a href="http://github.com/mmcdanie/erlview/tree/master" rel="nofollow">erlview</a>, which is within the top ten hits on Google for "couchdb erlang view" and is listed on the CouchDB <a href="http://wiki.apache.org/couchdb/View%5Fserver" rel="nofollow">wiki page for other-language view servers</a>.</p> http://stackoverflow.com/questions/1170301/can-jruby-use-original-ruby-gems/1170398#1170398 0 Answer by Jim Puls for Can JRuby use original Ruby gems? Jim Puls 2009-07-23T08:21:44Z 2009-07-23T08:21:44Z <p>Only gems written purely in Ruby will work under JRuby. Gems like RMagick or MySQL or (the standard implementation of) JSON that require C extensions will leave you out of luck in some cases and with alternatives like the JDBC MySQL and JSON-JRuby gems in other cases.</p> http://stackoverflow.com/questions/1170221/squashing-or-editing-some-commits-before-doing-git-svn-dcommit/1170258#1170258 3 Answer by Jim Puls for Squashing or editing some commits before doing git-svn dcommit? Jim Puls 2009-07-23T07:44:17Z 2009-07-23T07:44:17Z <p>Yes, you can rewrite the commit messages. Yes, you can just squash them all in to a single commit. This probably depends on the review process and how much you're doing at once.</p> <p>"Manually" moving each change to the master branch wouldn't be especially different from rewriting your commit messages at some level, but many diverging branches and cherry-picks could come in handy.</p> <p>Overall, the answer is "it depends" and "Git is flexible enough to do just about whatever you need".</p> http://stackoverflow.com/questions/1163354/ruby-on-rails-modules-code-sharing-and-community/1163388#1163388 4 Answer by Jim Puls for Ruby on Rails modules, code sharing, and community Jim Puls 2009-07-22T06:31:24Z 2009-07-22T06:31:24Z <p>Rails has "<a href="http://nubyonrails.com/articles/the-complete-guide-to-rails-plugins-part-i" rel="nofollow">plugins</a>", which let you modularize pretty well. In fact, when you use a gem with your app, you often have a stub plugin to load the code from the gem. Take a look at <a href="http://railsplugins.com/" rel="nofollow">the book</a>!</p> <p>Then, take the whole thing a step further to use <a href="http://rails-engines.org/" rel="nofollow">Rails Engines</a>, which let you plug in whole app chunks without a whole lot of extra overhead.</p> <p>Note that the standard solutions for authentication are, in fact, plugins.</p> http://stackoverflow.com/questions/1155959/access-ui-elements-created-in-interface-builder-in-the-controller/1156018#1156018 0 Answer by Jim Puls for Access UI elements created in Interface Builder in the controller? Jim Puls 2009-07-20T21:23:12Z 2009-07-20T21:23:12Z <p>You need to define and connect an "outlet". Take a look at <a href="http://developer.apple.com/documentation/developertools/Conceptual/IB%5FUserGuide/Introduction/Introduction.html" rel="nofollow">the documentation</a>, making note of the section on "Connections and Bindings".</p> http://stackoverflow.com/questions/1155456/help-with-htaccess-redirect-rewrite-rule/1155486#1155486 1 Answer by Jim Puls for Help with htaccess redirect rewrite rule Jim Puls 2009-07-20T19:32:58Z 2009-07-20T19:32:58Z <p>Helicon ISAPI Rewrite appears to share mod_rewrite's syntax, so:</p> <pre><code>RewriteCond %{HTTP_HOST} www\.mydomain\.com RewriteCond %{HTTP_URL} ^/colors RewriteRule ^(.*)$ http://www.newdomain.org/$1 [R] </code></pre> http://stackoverflow.com/questions/1150775/how-do-you-send-plaintext-instead-of-html-email-from-rails/1150809#1150809 1 Answer by Jim Puls for How do you send plaintext instead of HTML email from Rails? Jim Puls 2009-07-19T20:31:26Z 2009-07-19T20:31:26Z <p>Without seeing the <code>test</code> method in your <code>GeneralAppMailer</code> class, it's impossible to say, but it's probably because you're rendering an HTML-based view template to send the message. But maybe you should post your code.</p> http://stackoverflow.com/questions/1148504/common-interface-for-couchdb-and-amazon-s3/1148547#1148547 6 Answer by Jim Puls for Common Interface for CouchDB and Amazon S3 Jim Puls 2009-07-18T20:54:46Z 2009-07-18T20:54:46Z <p>You're missing the point, just slightly. CouchDB is a database. S3 is a filesystem. They're both relatively unstructured, but with S3 you're storing files under keys while with CouchDB you're storing (arbitrarily-structured) data under keys.</p> <p>The Amazon Web Services analogue to something like CouchDB would be <a href="http://aws.amazon.com/simpledb/" rel="nofollow">Amazon SimpleDB</a>.</p> <p>Something like what you're looking for already exists for Ruby, and it's called <a href="http://github.com/wycats/moneta/tree/master" rel="nofollow">Moneta</a>. It even can store stuff on S3, which may be exactly what you want.</p> http://stackoverflow.com/questions/1147005/how-to-form-fuzzy-date-in-ruby/1147010#1147010 7 Answer by Jim Puls for How to form "fuzzy date" in Ruby? Jim Puls 2009-07-18T08:22:44Z 2009-07-18T08:22:44Z <p>Rails gives your views a helper function called <a href="http://railsapi.com/doc/rails-v2.3.2.1/classes/ActionView/Helpers/DateHelper.html#M002302" rel="nofollow"><code>time_ago_in_words</code></a> that you can call to output just such a format from a <code>Time</code> object.</p> http://stackoverflow.com/questions/1146735/git-pull-keeps-deleting-everything-ive-added/1146945#1146945 2 Answer by Jim Puls for Git pull keeps deleting everything I've added. Jim Puls 2009-07-18T07:35:40Z 2009-07-18T07:35:40Z <p>There must be something you're leaving out, because it does, in fact, worth this way:</p> <pre><code>$ mkdir default $ cd default/ $ git init Initialized empty Git repository in /Users/jim/Desktop/default/.git/ $ echo "A" &gt; A; echo "B" &gt; B; echo "C" &gt; C $ git add . &amp;&amp; git commit -m "Initial commit" [master (root-commit) 318f655] Initial commit 3 files changed, 3 insertions(+), 0 deletions(-) create mode 100644 A create mode 100644 B create mode 100644 C $ cd .. $ git clone ./default ./defaultmods Initialized empty Git repository in /Users/jim/Desktop/defaultmods/.git/ $ cd defaultmods/ $ echo "D" &gt; D; echo "E" &gt; E; echo "F" &gt; F $ cd ../default $ echo "A, updated" &gt; A; echo "C, updated" &gt; C; echo "G" &gt; G $ git add . &amp;&amp; git commit -m "Upstream update" [master 4485f72] Upstream update 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 G $ cd ../defaultmods/ $ git add . &amp;&amp; git commit -m "Mods commit" [master a393e70] Mods commit 3 files changed, 3 insertions(+), 0 deletions(-) create mode 100644 D create mode 100644 E create mode 100644 F $ git pull remote: Counting objects: 8, done. remote: Compressing objects: 100% (2/2), done. remote: Total 5 (delta 0), reused 0 (delta 0) Unpacking objects: 100% (5/5), done. From /Users/jim/Desktop/./default 318f655..4485f72 master -&gt; origin/master Merge made by recursive. A | 2 +- C | 2 +- G | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 G $ cat * A, updated B C, updated D E F G </code></pre> http://stackoverflow.com/questions/1128690/how-to-implement-an-email-dropbox-feature-for-web-app/1128699#1128699 1 Answer by Jim Puls for How to implement an email dropbox feature for web app? Jim Puls 2009-07-14T23:48:45Z 2009-07-14T23:48:45Z <p>Parsing the "To:" address definitely works, though you're going to want to look at a few others in case the email was a Bcc or something.</p> <p>If you can wildcard the emails to one place, great. As it turns out, good old POP3 works great as a sort of queuing system here; in my experience, the best approach is to simply make the email address point to a POP3 account and then have a script that runs periodically on a server to check said POP3 account and parse the emails and do something with them.</p> <p>You should be able to find a library for the dirty work of loading and parsing the emails in your language of choice, making this a reasonably easy task, since your webapp already has a RESTful API, right?</p> http://stackoverflow.com/questions/1126637/best-practices-when-taking-a-small-project-on-your-own/1126655#1126655 0 Answer by Jim Puls for Best practices when taking a small project on your own Jim Puls 2009-07-14T16:47:54Z 2009-07-14T16:47:54Z <p>There's a good question already answered about <a href="http://stackoverflow.com/questions/532194/how-important-is-a-bug-tracking-tool-for-a-lone-developer-and-which-one-along-wi">bug tracking and version control for single developers</a>.</p> <p>As for PHP style, I usually like to follow the <a href="http://framework.zend.com/manual/en/coding-standard.html" rel="nofollow">Zend Framework guidelines</a>. For deployment advice, you might want to <a href="http://serverfault.com/questions/tagged/php">head over to ServerFault</a>.</p> http://stackoverflow.com/questions/1758631/memory-leak-when-using-forobject-in-array-with-iphone-sdk/1758694#1758694 Comment by Jim Puls on Memory Leak when using for(object in array) with iPhone SDK Jim Puls 2009-11-18T20:05:41Z 2009-11-18T20:05:41Z The if statement is unnecessary. Sending messages to nil is a no-op. http://stackoverflow.com/questions/1753336/hashkey-to-hash-key-in-ruby Comment by Jim Puls on hash['key'] to hash.key in Ruby Jim Puls 2009-11-18T03:57:19Z 2009-11-18T03:57:19Z Why does it matter that Lua has this &quot;feature&quot;? So does JavaScript. It's not particularly germane to the question. http://stackoverflow.com/questions/1705618/cant-send-many-sms-using-a-loop Comment by Jim Puls on Can't send many SMS using a loop Jim Puls 2009-11-10T04:30:37Z 2009-11-10T04:30:37Z You must be new around here. Show us your code! http://stackoverflow.com/questions/1692002/how-do-i-parse-the-pls-playlist-format-in-an-iphone-app Comment by Jim Puls on How do I parse the PLS playlist format in an iPhone app? Jim Puls 2009-11-07T04:45:12Z 2009-11-07T04:45:12Z Post your code. Show us what you've done. http://stackoverflow.com/questions/1689385/how-does-this-days-in-month-function-work/1689411#1689411 Comment by Jim Puls on How does this "days in month" function work? Jim Puls 2009-11-06T19:06:33Z 2009-11-06T19:06:33Z 32 - new Date(2009,1,32).getDate() returns 28 for me. Remember, months are zero-based. http://stackoverflow.com/questions/1556979/replace-character-in-an-nsstring-with-to-create-a-unix-path Comment by Jim Puls on Replace " " character in an NSString with "\ " (to create a Unix path) Jim Puls 2009-10-12T21:16:17Z 2009-10-12T21:16:17Z Why doesn't -stringByReplacingOccurrencesOfString:withString: work? http://stackoverflow.com/questions/1556937/how-can-i-write-a-google-wave-rich-client/1556961#1556961 Comment by Jim Puls on How can I write a Google Wave rich client? Jim Puls 2009-10-12T21:14:08Z 2009-10-12T21:14:08Z Not true: the wave protocol is only for server-to-server communication. http://stackoverflow.com/questions/1548527/git-start-a-new-project-with-some-commits-from-an-other-one Comment by Jim Puls on Git : Start a new project with some commits from an other one Jim Puls 2009-10-10T20:56:29Z 2009-10-10T20:56:29Z What do you mean by &quot;every commit is a feature&quot;? Every commit adds a feature? http://stackoverflow.com/questions/1546025/when-to-use-mongrel-as-web-server-for-rails-application Comment by Jim Puls on When to use Mongrel as web server for Rails application? Jim Puls 2009-10-09T21:09:15Z 2009-10-09T21:09:15Z <a href="http://stackoverflow.com/questions/280155/best-practices-for-new-rails-deployments-on-linux" rel="nofollow" title="best practices for new rails deployments on linux">stackoverflow.com/questions/280155/&hellip;</a> http://stackoverflow.com/questions/1536190/how-do-i-create-a-mac-installer-for-my-java-application Comment by Jim Puls on How do I create a Mac installer for my Java application? Jim Puls 2009-10-08T07:48:07Z 2009-10-08T07:48:07Z So why not fix the app instead of making your users go through the hoops of an installer? http://stackoverflow.com/questions/1536190/how-do-i-create-a-mac-installer-for-my-java-application Comment by Jim Puls on How do I create a Mac installer for my Java application? Jim Puls 2009-10-08T07:40:16Z 2009-10-08T07:40:16Z What's improper or technical about double-clicking a JAR file? http://stackoverflow.com/questions/1536190/how-do-i-create-a-mac-installer-for-my-java-application Comment by Jim Puls on How do I create a Mac installer for my Java application? Jim Puls 2009-10-08T07:37:51Z 2009-10-08T07:37:51Z Why can't you give a JAR file to your users? Seems like with a custom icon it'd work just dandily. http://stackoverflow.com/questions/1513088/how-lightweight-is-nsoperationqueue-on-snow-leopard/1513905#1513905 Comment by Jim Puls on How lightweight is NSOperationQueue on Snow Leopard? Jim Puls 2009-10-03T22:57:24Z 2009-10-03T22:57:24Z That's not what the docs say: &quot;The NSBlockOperation class is a concrete subclass of NSOperation that manages the concurrent execution of one or more blocks.&quot; <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/NSBlockOperation_class/Reference/Reference.html" rel="nofollow">developer.apple.com/mac/library/&hellip;</a> http://stackoverflow.com/questions/1513088/how-lightweight-is-nsoperationqueue-on-snow-leopard Comment by Jim Puls on How lightweight is NSOperationQueue on Snow Leopard? Jim Puls 2009-10-03T22:52:29Z 2009-10-03T22:52:29Z It's a Snow Leopard-only program. I'd certainly hope your brand new Snow-Leopard-only code is garbage-collected. :-D http://stackoverflow.com/questions/1513088/how-lightweight-is-nsoperationqueue-on-snow-leopard/1513194#1513194 Comment by Jim Puls on How lightweight is NSOperationQueue on Snow Leopard? Jim Puls 2009-10-03T08:34:19Z 2009-10-03T08:34:19Z Website? What does this have to do with websites?