User jmah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:50:17Zhttp://stackoverflow.com/feeds/user/3948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1671635/sqlite-record-not-correct-on-iphone-simulator/1698497#16984971Answer by jmah for SQLite record not correct on iPhone simulatorjmah2009-11-09T00:35:52Z2009-11-09T00:35:52Z<p>You can use <code>lsof</code> to list the files open by a process, which can hopefully help you nail down which database is being used. Find the process ID of your application with Activity Monitor or the like, and run <code>lsof -p <PID></code> in Terminal.</p>
http://stackoverflow.com/questions/1405585/kvo-problem-retrieving-object-from-storage-and-displaying-for-edition/1406299#14062991Answer by jmah for KVO - problem retrieving object from storage and displaying for editionjmah2009-09-10T16:24:22Z2009-09-10T16:24:22Z<p>That error make it feel like a set is involved somewhere. Are you sure you're setting the instance variable to the model object directly, instead of a set of them (possibly even a set with only one member)?</p>
http://stackoverflow.com/questions/1405748/building-objective-c-code-on-windows-platform/1406241#14062411Answer by jmah for Building objective-c code on windows platformjmah2009-09-10T16:12:08Z2009-09-10T16:12:08Z<p>There is also <a href="http://www.cocotron.org/" rel="nofollow">Cocotron</a>. There's a good post of how it was used for the Windows port of a desktop client for an iPhone app (FileMagnet) in <a href="http://macdaddyworld.com/2008/10/27/adventures-in-cocotron/" rel="nofollow">Adventures in Cocotron</a>.</p>
http://stackoverflow.com/questions/1406007/fix-web-app-bugs-by-reloading-page-or-reloading-script-external-resource/1406189#14061890Answer by jmah for Fix Web App bugs by reloading page, or reloading script / external resourcejmah2009-09-10T16:03:16Z2009-09-10T16:03:16Z<p><a href="http://www.mozilla.org/projects/venkman/" rel="nofollow" title="Mozilla Venkman">Mozilla Venkman</a> for Firefox apparently has the ability to reload the JavaScript on a page.</p>
http://stackoverflow.com/questions/873889/ruby-definition-of-self/874197#8741974Answer by jmah for Ruby Definition of Selfjmah2009-05-17T09:06:18Z2009-05-17T09:06:18Z<p>Ruby and other languages (such as Smalltalk and Objective-C) prefer the term "message passing", whereas Java and C++ prefer "method invocation". That is, the "Java way" is to call a method on an object — running code in the context of an object — whereas the "Ruby way" is to send an object a message, to which the object responds by running its method.</p>
<p>Ruby would describe the line <code>my_string.length</code> as "sending <code>my_string</code> the <code>length</code> message". The <code>my_string</code> receives the message, and so is called the receiver; inside the definition of the <code>length</code> method, <code>self</code> would refer to <code>my_string</code>. You can get the same effect with <code>my_string.send(:length)</code>.</p>
<p>Thinking of this concept in terms of message passing is more flexible than thinking in terms of method invocation. To invoke a method on an object, that method must have been pre-defined, whereas you can send an object a message that it can choose to handle dynamically (with <code>respond_to?</code> and <code>method_missing</code>). This flexibility is one aspect that allows Ruby to be used as concise domain-specific languages (DSL).</p>
http://stackoverflow.com/questions/801317/why-is-json-important/801338#8013389Answer by jmah for Why is JSON important?jmah2009-04-29T07:56:31Z2009-04-29T07:56:31Z<p>JSON is much more concise. XML:</p>
<pre><code><person>
<name>John Doe</name>
<tags>
<tag>friend</tag>
<tag>male</tag>
</tags>
</person>
</code></pre>
<p>JSON:</p>
<pre><code>{"name": "John Doe", "tags": ["friend", "male"]}
</code></pre>
<p>There's fewer overlapping features, too. For example, in XML there's tension between choosing to use elements (as above), versus attributes (<code><person name="John Doe"></code>).</p>
http://stackoverflow.com/questions/790014/global-variables-as-aliases-for-singletons/796178#7961781Answer by jmah for Global variables as aliases for singletons?jmah2009-04-28T04:07:05Z2009-04-28T04:07:05Z<p>The main purpose of using a method call to get a singleton is so the singleton can be lazily prepared. For example:</p>
<pre><code>static State sharedStateInstance;
@implementation State
+ (id)sharedState {
if (!sharedStateInstance)
sharedStateInstance = /* Allocate instance */;
return sharedStateInstance;
}
@end
</code></pre>
<p>So this means that if no code ever calls <code>+sharedState</code>, no resources are spent creating it.</p>
<p>Also, this code can be improved in one place if other needs arise in the future, such as ensuring there's one instance per thread, or a shared instance for all threads (which would then need locking code around the initialization).</p>
http://stackoverflow.com/questions/37381/whats-a-good-way-to-write-a-cocoa-front-end-to-an-erlang-application6What's a good way to write a Cocoa front-end to an Erlang application?jmah2008-09-01T02:22:26Z2008-11-10T15:08:54Z
<p>I'm exploring the possibility of writing an application in Erlang, but it would need to have a portion written in Cocoa (presumably Objective-C). I'd like the front-end and back-end to be able to communicate easily. How can this best be done?</p>
<p>I can think of using C ports and connected processes, but I think I'd like a reverse situation (the front-end starting and connecting to the back-end). There are named pipes (FIFOs), or I could use network communications over a TCP port or a named BSD socket. Does anyone have experience in this area?</p>
http://stackoverflow.com/questions/161518/linking-an-external-jar-from-an-xcode-java-project/162574#1625740Answer by jmah for Linking an external .jar from an Xcode java project?jmah2008-10-02T14:25:48Z2008-10-02T14:25:48Z<p>Xcode 3.1 (I'm not certain about 3.0) uses an ant buildfile in its Java project templates. There's a ton of <a href="http://ant.apache.org/manual/using.html#path" rel="nofollow">documentation</a> out there on Ant. To change the classpath used when actually running the compiled code, edit the executable and add in an argument <code>-classpath path/to/lib</code></p>
http://stackoverflow.com/questions/161510/pass-parameter-by-reference-in-ruby/161644#1616442Answer by jmah for 'pass parameter by reference' in Ruby ?jmah2008-10-02T10:16:52Z2008-10-02T10:16:52Z<p>The bottom of this page shows how to create a more ref-like equivalent: <a href="http://onestepback.org/index.cgi/Tech/Ruby/RubyBindings.rdoc" rel="nofollow">http://onestepback.org/index.cgi/Tech/Ruby/RubyBindings.rdoc</a></p>
http://stackoverflow.com/questions/161510/pass-parameter-by-reference-in-ruby/161607#1616073Answer by jmah for 'pass parameter by reference' in Ruby ?jmah2008-10-02T10:06:23Z2008-10-02T10:15:18Z<p>You can accomplish this by explicitly passing in the current binding:</p>
<pre><code>def func(x, bdg)
eval "#{x} += 1", bdg
end
a = 5
func(:a, binding)
puts a # => 6
</code></pre>
http://stackoverflow.com/questions/113884/looking-for-tools-to-analyze-email-data/113932#1139320Answer by jmah for Looking for tools to analyze email datajmah2008-09-22T09:10:18Z2008-09-22T09:10:18Z<p><a href="http://www.xobni.com/" rel="nofollow">Xobni</a> (for Outlook)</p>
http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110254#1102546Answer by jmah for Objective-C switch using objects?jmah2008-09-21T04:37:51Z2008-09-21T04:37:51Z<p>You should take advantage of Key-Value Coding:</p>
<pre><code>[character setValue:currentElementText forKey:elementName];
</code></pre>
<p>If the data is untrusted, you might want to check that the key is valid:</p>
<pre><code>if (![validKeysCollection containsObject:elementName])
// Exception or error
</code></pre>
http://stackoverflow.com/questions/109440/best-git-repository-hosting-for-commercial-project/109995#1099957Answer by jmah for Best git repository hosting for commercial project?jmah2008-09-21T01:57:18Z2008-09-21T01:57:18Z<p><a href="http://unfuddle.com/" rel="nofollow">Unfuddle</a> is pretty nice, and has issue tracking as well.</p>
http://stackoverflow.com/questions/109781/uniq-by-object-attribute-in-ruby/109983#1099831Answer by jmah for Uniq by object attribute in Rubyjmah2008-09-21T01:48:53Z2008-09-21T01:48:53Z<p>You can use a hash, which contains only one value for each key:</p>
<pre><code>Hash[*recs.map{|ar| [ar[attr],ar]}.flatten].values
</code></pre>
http://stackoverflow.com/questions/88615/what-algorithm-can-you-use-to-find-duplicate-phrases-in-a-string/88648#886481Answer by jmah for What algorithm can you use to find duplicate phrases in a string?jmah2008-09-17T23:23:52Z2008-09-17T23:23:52Z<p><a href="http://en.wikipedia.org/wiki/Suffix_tree" rel="nofollow">Suffix trees</a> are a good way to implement this. The bottom of that article has links to implementations in different languages.</p>
http://stackoverflow.com/questions/88582/structure-of-a-pdf-file/88617#886171Answer by jmah for Structure of a PDF file?jmah2008-09-17T23:18:21Z2008-09-17T23:18:21Z<p>Here's the raw <a href="http://www.adobe.com/devnet/acrobat/pdfs/pdf_reference.pdf" rel="nofollow">reference of PDF 1.7</a>, and here's an article <a href="http://www.planetpdf.com/developer/article.asp?ContentID=navigating_the_internal_struct" rel="nofollow">describing the structure of a PDF</a> file. If you use Vim, the <a href="http://www.accesspdf.com/article.php?story=20041130152129869" rel="nofollow">pdftk plugin</a> is a good way to explore the document in an ever-so-slightly less raw form, and the <a href="http://www.accesspdf.com/index.php?topic=pdftk" rel="nofollow">pdftk</a> utility itself (and its GPL source) is a great way to tease documents apart.</p>
http://stackoverflow.com/questions/37808/examples-of-using-semantic-web-technologies-in-real-world-applications/37824#378241Answer by jmah for Examples of using semantic web technologies in real world applicationsjmah2008-09-01T12:05:56Z2008-09-01T12:05:56Z<p>O'Reilly's Practical RDF has a chatper titled <a href="http://safari.oreilly.com/0596002637/pracrdf-CHP-15-SECT-1" rel="nofollow">Commercial Uses of RDF/XML</a>. The table at the left lists the subsections: <a href="http://chandlerproject.org/" rel="nofollow">Chandler</a>, <a href="http://www.intellidimension.com/" rel="nofollow">RDF Gateway</a>, <a href="http://siderean.com/" rel="nofollow">Seamark</a>, and Adobe's <a href="http://www.adobe.com/products/xmp/" rel="nofollow">XMP</a> stuff.</p>
http://stackoverflow.com/questions/2540/good-stl-like-library-for-c/37358#373581Answer by jmah for Good STL-like library for C.jmah2008-09-01T01:56:18Z2008-09-01T01:56:18Z<p>There's some stuff in the <a href="http://apr.apache.org/" rel="nofollow" title="Apache Portable Runtime">Apache Portable Runtime</a> (APR) that I'd expect to be very solid.</p>
http://stackoverflow.com/questions/1405585/kvo-problem-retrieving-object-from-storage-and-displaying-for-edition/1406299#1406299Comment by jmah on KVO - problem retrieving object from storage and displaying for editionjmah2009-09-16T16:58:26Z2009-09-16T16:58:26ZGood to hear. Care to upvote and accept this answer then? ;)http://stackoverflow.com/questions/575055/how-to-build-a-nsarray-or-nsmutablearray-of-class-methods-in-objective-c/575321#575321Comment by jmah on How to build a NSArray (or NSMutableArray) of class methods in Objective-C?jmah2009-05-17T09:10:39Z2009-05-17T09:10:39ZI'd prefer to use strings instead of pointers, as it would make debugging much easier. Look at NSStringFromSelector() and NSSelectorFromString().http://stackoverflow.com/questions/873538/handling-class-methods-when-sub-classing-in-objective-c/873553#873553Comment by jmah on Handling class methods when sub-classing in objective-cjmah2009-05-17T09:09:05Z2009-05-17T09:09:05ZConvenience constructors generally return a dynamically-typed value (type id) for this reason; NSDecimalNumber is an exception, and I consider it to be in error. For example, [NSArray array] is typed as id, and [NSMutableArray array] would return an instance of NSMutableArray.http://stackoverflow.com/questions/78716/is-xslt-worth-it/78920#78920Comment by jmah on Is XSLT worth it?jmah2008-10-10T12:23:03Z2008-10-10T12:23:03ZXSLT isn't functional, it's declarative (like SQL).http://stackoverflow.com/questions/165314/how-do-i-get-my-hands-on-a-dvorak-keyboard/165323#165323Comment by jmah on How do I get my hands on a Dvorak keyboard?jmah2008-10-03T02:14:55Z2008-10-03T02:14:55ZMac: System Preferences -> International -> Input Menu (I have no edit karma)http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110254#110254Comment by jmah on Objective-C switch using objects?jmah2008-09-22T03:23:15Z2008-09-22T03:23:15ZBut that is the point, to avoid doing the multiple dispatch yourself, and letting aspects of the language (or framework) handle it. The if-else-else-else or switch pattern on object value should be discouraged, when you can do things like dictionary look-ups.