User Ryan Delucchi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T14:30:06Zhttp://stackoverflow.com/feeds/user/9931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/852055/build-a-gql-query-for-google-app-engine-that-has-a-condition-on-referenceproper1Build a GQL query (for Google App Engine) that has a condition on ReferencePropertyRyan Delucchi2009-05-12T10:06:18Z2009-11-24T05:35:40Z
<p>Say I have the following model:</p>
<pre><code>class Schedule(db.Model):
tripCode = db.StringProperty(required=True)
station = db.ReferenceProperty(Station, required=True)
arrivalTime = db.TimeProperty(required=True)
departureTime = db.TimeProperty(required=True)
</code></pre>
<p>And let's say I have a Station object stored in the var <code>foo</code>.</p>
<p>How do I assemble a GQL query that returns all Schedule objects with a reference to the Station object referenced by <code>foo</code>?</p>
<p>This is my best (albeit <strong>incorrect</strong>) attempt to form such a query:</p>
<pre><code>myQuery = "SELECT * FROM Schedule where station = " + str(foo.key())
</code></pre>
<p><em>Once again <code>foo</code> is a <strong>Station</strong> object</em></p>
http://stackoverflow.com/questions/1759820/functional-requirements-for-the-ultimate-web-development-framework0Functional Requirements for the ultimate web development framework?Ryan Delucchi2009-11-18T23:16:14Z2009-11-19T01:08:15Z
<p>With the wide variety of web development frameworks that are available, there always seems to be a perpetual incentive to "try something new". Hence, some of us find ourselves trading one framework for another, never being <em>entirely</em> satisfied with the end results. Granted there will always be niches where a given web framework will serve perfectly. But, there are many who have settled on using C++, Java or C# for building, say, desktop applications. The same isn't quite true when it comes to web development applications. Joel Spolsky touches on this in <a href="http://www.joelonsoftware.com/items/2007/09/18.html" rel="nofollow">link text</a>.</p>
<p>Let's say if I were to build such a framework: what would the functional requirements be? The goal here is to list <strong>concrete</strong> functional expectations (defined succinctly for the sake of a stackoverflow posting, of course). The best answer will be chosen based on its number of votes.</p>
<p>Just to get everyone started, the following would is a partial list of requirements. Note, these items were intentionally left somewhat abstract with the intent that folks can derive more concrete items from them:</p>
<ul>
<li><p><strong>OOP Consistency: Seamless data exchange and native object representation between server-side and client-side modules</strong>: That is, given a function on the client-side: <code>clientFoo()</code> and a function on the server-side: <code>serverFoo()</code> one should be able to pass an object <code>obj</code> of any type <code>T</code> without requiring any marshalling:</p>
<p>define clientFoo() {
T obj = createObject()
serverFoo(obj)
}</p>
<p>OR</p>
<p>define serverFoo() {
T obj = createObject()
clientFoo(obj)
}</p></li>
</ul>
<p>This adds the requirement that native object representations must be the same on both the client and server side, including all composition, inter-class coupling, and encapsulation semantics. Basically, it should be entirely irrelevant whether a given class or a given instance resides on the client-side or the server-side. </p>
<ul>
<li><p><strong>Functional Consistency: Seamless functional and thread execution</strong>: One should be able to create a function on the client/server side and pass it over the boundary for execution. This includes uniform support for multi-threading (which should work consistently on both the client and server sides).</p>
<ul>
<li><p><strong>Multiple Application Session Interoperability</strong>: A perfect example here is inter-application "cut and paste" (as mentioned in the article pointed out above). I am <em>not</em> talking about trivial copying of text within the browser to another browser instance (or tab). What if one wants to paste say, a contact object in MySocialApp to YetAnotherSocialApp? This kind of inter-application data exchange is important.</p></li>
<li><p><strong>Consistent cross-Browser compatible UI</strong>: creating AJAX "dialog boxes", progress indicators, tabs, etc should all be achievable using an API that is as seamless with the rest of the framework as the client/server integration discussed above. Oh, and yes, it has to work the same on all browsers (with browser distinctions being completely invisible to the developer).</p></li>
</ul></li>
</ul>
<p>Note: Just marked as community WIKI.</p>
http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure4Operator Overloading in ClojureRyan Delucchi2009-10-08T01:39:12Z2009-10-08T18:07:04Z
<p>Even looking closely over documentation on Clojure, I do not see any <em>direct</em> confirmation as to whether or not Clojure supports operator overloading.</p>
<p>If it does, could someone provide me with a quick snipplet of how to overload, let's say, the "+" operator to delegate to some predefined method that we can call <code>myPlus</code>.</p>
<p>I am <em>very</em> new to Clojure, so someone's help here would be greatly appreciated.</p>
http://stackoverflow.com/questions/1506728/on-performance-and-java-interoperability-clojure-vs-scala2On Performance and Java Interoperability: Clojure vs. ScalaRyan Delucchi2009-10-01T21:54:51Z2009-10-02T07:47:29Z
<p>I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it comes to comparing both Clojure with Scala:</p>
<p>1.) Which of the two languages is generally <em>faster</em>? I realize that this will vary from one language feature to another but an general assessment of performance would be helpful. For example: I know that Python dictionaries are really fast. But as a whole, it is a <em>much</em> slower language than Java. I don't want to go with Clojure and run into this problem down the road.</p>
<p>2.) How is interoperability with Java? All I have read so far is that Scala has native collections types that make it a bit clumsy to integrate with a large Java code-base, whereas Clojure follows a simple Iterable/Iterator-centric way to inter-operate with Java classes. Any more thoughts/details on this?</p>
<p>Ultimately, if it is a close enough draw between clojure and scala, I might try them both. One thing about Clojure is the language seems <em>very</em> simple. But then again, Scala has a very flexible type system. But, I know that Scala is fast (based on multiple personal accounts). So, if Clojure is significantly slower: I'd like to know sooner rather than later.</p>
http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine2Using the Python NLTK (2.0b5) on the Google App EngineRyan Delucchi2009-08-17T05:36:55Z2009-08-17T12:15:05Z
<p>I have been trying to make the NLTK (Natural Language Toolkit) work on the Google App Engine. The steps I followed are:</p>
<ol>
<li>Download the installer and run it (a .dmg file, as I am using a Mac).</li>
<li>copy the nltk folder out of the python site-packages directory and place it as a sub-folder in my project folder.</li>
<li>Create a python module in the folder that contains the nltk sub-folder and add the line: <code>from nltk.tokenize import *</code> </li>
</ol>
<p>Unfortunately, after launching it I get this error (note that this error is raised deep within NLTK and I'm seeing it for my system installation of python as opposed to the one that is in the sub-folder of the GAE project):</p>
<pre><code> <type 'exceptions.ImportError'>: No module named nltk
Traceback (most recent call last):
File "/base/data/home/apps/xxxx/1.335654715894946084/main.py", line 13, in <module>
from lingua import reducer
File "/base/data/home/apps/xxxx/1.335654715894946084/lingua/reducer.py", line 11, in <module>
from nltk.tokenizer import *
File "/base/data/home/apps/xxxx/1.335654715894946084/lingua/nltk/__init__.py", line 73, in <module>
from internals import config_java
File "/base/data/home/apps/xxxx/1.335654715894946084/lingua/nltk/internals.py", line 19, in <module>
from nltk import __file__
</code></pre>
<p>Note: this is how the error looks in the logs when uploaded to GAE. If I run it locally I get the same error (except it seems to originate inside my site-packages instance of NLTK ... so no difference there). And "xxxx" signifies the project name.</p>
<p>So in summary:</p>
<ul>
<li>Is what I am trying to do even possible? Will NLTK even run on the App Engine?</li>
<li>Is there something I missed? That is: copying "nltk" to the GAE project isn't enough?</li>
</ul>
<p><strong>EDIT: fixed typo and removed unnecessary step</strong></p>
http://stackoverflow.com/questions/1275708/jquery-get-failure-using-google-app-engine-on-the-back-end0JQuery "get" failure (using Google App Engine on the back-end)Ryan Delucchi2009-08-14T02:12:46Z2009-08-14T09:23:53Z
<p>What I am trying to do is pretty simple: yet something has clearly gone awry.</p>
<p>On the Front-End:</p>
<pre><code>function eval() {
var x = 'Unchanged X'
$.get("/", { entry: document.getElementById('entry').value },
function(data){
x = data;
}
);
$("#result").html(x);
}
</code></pre>
<p>On the Back-End:</p>
<pre><code>class MainHandler(webapp.RequestHandler):
def get(self):
path = os.path.join(os.path.dirname(__file__), 'index.html')
if self.request.get('entry') != '':
#self.response.out.write({'evalresult': self.request.get('entry')})
self.response.out.write(request.get('entry'))
else:
self.response.out.write(template.render(path, {'result': 'Welcome!!'}))
def main():
application = webapp.WSGIApplication([('/', MainHandler)],
debug=True)
wsgiref.handlers.CGIHandler().run(application)
</code></pre>
<p>Yet, apparently the function is never being called and #result gets set to 'Unchanged X'. What am I missing?</p>
<p><strong>NOTE: The callback is NOT being called. I have verified this by placing an alert("Test") within the callback function. Any ideas anyone?</strong></p>
http://stackoverflow.com/questions/1275708/jquery-get-failure-using-google-app-engine-on-the-back-end/1276473#12764731Answer by Ryan Delucchi for JQuery "get" failure (using Google App Engine on the back-end)Ryan Delucchi2009-08-14T07:20:48Z2009-08-14T07:20:48Z<p>First we have the silly mistake:</p>
<pre><code><font size="3" face="Trebuchet MS">Speak Your Mind:&nbsp;&nbsp;</font><input type="text"
size="60" id="entry"/> <img valign="bottom" src='/assets/cognifyup.png'
onMouseOver="over()" onMouseOut="out()" onMouseDown="out(); evaluate();"
onMouseUp="over()"><br><br>
</code></pre>
<p>Semicolons are required after the calls to <code>over()</code> and <code>out()</code> (roger that? <em>--- sorry couldn't resist</em>)</p>
<p>Secondly (the much more subtle problem):</p>
<p>If we ever need intend to translate the <code>get()</code> into a <code>getJSON()</code> call, (which you might have noted was my original intent from the commented python code that returns a dict), then we need to wrap a <code>str()</code> call around <code>self.request.get('entry')</code>. Hence, </p>
<p><code>self.response.out.write({'evalresult': self.request.get('entry')})</code> </p>
<p>becomes: </p>
<p><code>self.response.out.write({'evalresult': str(self.request.get('entry'))})</code> </p>
<p>As strings from an HTML field translate to unicode text in Python, at the back-end, we apparently need to convert it to a Python string (as <code>getJSON()</code> apparently doesn't like Python's representation of a unicode string -- any ideas why this this is the case anyone?).</p>
<p>At any rate, the original problem has been solved. In conclusion: any JSON object with a Python unicode string will <em>not</em> be accepted as a valid JSON object and will fail silently -- a nasty gotcha that I can see biting anyone using JQuery with Python on the server-side.</p>
http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices77Favorite (Clever) Defensive Programming Best PracticesRyan Delucchi2009-01-29T03:48:51Z2009-05-14T21:32:52Z
<p>If you had to choose your <strong>Favorite</strong> (clever) techniques for defensive coding, what would they be? Although my current languages are Java and Objective-C (with a background in C++), feel free to answer in any language. Emphasis here would be on <em>clever</em> defensive techniques other than those that 70%+ of us here already know about. So now it is time to dig deep into your bag of tricks.</p>
<p>In other words try to think of other than this <strong>uninteresting</strong> example:</p>
<ul>
<li><code>if(5 == x)</code> <strong>instead of</strong> <code>if(x == 5)</code>: to avoid unintended assignment</li>
</ul>
<p>Here are some examples of some <strong>intriguing</strong> best defensive programming practices (language-specific examples are in Java):</p>
<p><strong>- Lock down your variables until you know that you need to change them</strong></p>
<p>That is, you can declare <em>all</em> variables <code>final</code> until you know that you will need to change it, at which point you can remove the <code>final</code>. One commonly unknown fact is that this is also valid for method params:</p>
<pre><code>public void foo(final int arg) { /* Stuff Here */ }
</code></pre>
<p><strong>- When something bad happens, leave a trail of evidence behind</strong></p>
<p>There are a number of things you can do when you have an exception: obviously logging it and performing some cleanup would be a few. But you can also leave a trail of evidence (e.g. setting variables to sentinel values like "UNABLE TO LOAD FILE" or 99999 would be useful in the debugger, in case you happen to blow past an exception <code>catch</code>-block).</p>
<p><strong>- When it comes to consistency: the devil is in the details</strong></p>
<p>Be as consistent with the other libraries that you are using. For example, in Java, if you are creating a method that extracts a range of values make the lower bound <em>inclusive</em> and the upper bound <em>exclusive</em>. This will make it consistent with methods like <code>String.substring(start, end)</code> which operates in the same way. You'll find all of these type of methods in the Sun JDK to behave this way as it makes various operations including iteration of elements consistent with arrays, where the indices are from Zero (<em>inclusive</em>) to the length of the array (<em>exclusive</em>). </p>
<p>So what are some favorite defensive practices of yours?</p>
<p><strong>Update: If you haven't already, feel free to chime in. I am giving a chance for more responses to come in before I choose the <em>official</em> answer.</strong></p>
http://stackoverflow.com/questions/156395/sending-a-message-to-nil12Sending a message to nil?Ryan Delucchi2008-10-01T06:00:47Z2009-03-14T21:41:19Z
<p>As a Java developer whom is pouring over Apple's Objective-C 2.0 documentation: I am in a state of wonderment as to what <em>sending a message to nil</em> means - let alone how it is actually useful. Taking an excerpt from the documentation:</p>
<blockquote>
<p>There are several patterns in Cocoa
that take advantage of this fact. The
value returned from a message to nil
may also be valid:</p>
<ul>
<li>If the method returns an object, any pointer type, any integer scalar
of size less than or equal to
sizeof(void*), a float, a double, a
long double, or a long long, then a
message sent to nil returns 0.</li>
<li>If the method returns a struct, as defined by the Mac OS X ABI Function
Call Guide to be returned in
registers, then a message sent to nil
returns 0.0 for every field in the
data structure. Other struct data
types will not be filled with zeros.</li>
<li>If the method returns anything other than the aforementioned value
types the return value of a message
sent to nil is undefined.</li>
</ul>
</blockquote>
<p>Has Java rendered my brain incapable of grokking the explanation above? Or is there something that I am missing that would make this as clear as glass?</p>
<p>Note: Yes, I do get the idea of messages/receivers in Objective-C, I am simply confused about a receiver that happens to be nil.</p>
http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/498541#4985414Answer by Ryan Delucchi for How to be an eco-friendly programmer?Ryan Delucchi2009-01-31T09:01:17Z2009-01-31T09:01:17Z<p>Buy an Aeron Chair. Not only because it's 94% recyclable; odds are you'll use it for a time span within which others would go through twenty (all destined for a local land fill).</p>
<p>Extra Bonus: they are nice and comfy.</p>
http://stackoverflow.com/questions/490661/how-many-constructors-should-a-class-have/490748#4907483Answer by Ryan Delucchi for How many constructors should a class have?Ryan Delucchi2009-01-29T07:16:32Z2009-01-29T07:16:32Z<p>If you arbitrarily limit the number of constructors in a class, you could end up with a constructor that has a massive number of arguments. I would take a class with 100 constructors over a constructor with 100 arguments everyday. When you have a lot of constructors, you can choose to ignore most of them, but you <em>can't</em> ignore method arguments.</p>
<p>Think of the set of constructors in a class as a mathematical function mapping M sets (where each set is a single constructor's argument list) to N instances of the given class. Now say, class <code>Bar</code> can take a <code>Foo</code> in one of its constructors, and class <code>Foo</code> takes a <code>Baz</code> as a constructor argument as we show here:</p>
<pre><code> Foo --> Bar
Baz --> Foo
</code></pre>
<p>We have the <em>option</em> of adding another constructor to Bar such that:</p>
<pre><code> Foo --> Bar
Baz --> Bar
Baz --> Foo
</code></pre>
<p>This can be convenient for users of the Bar class, but since we already have a path from Baz to Bar (through Foo), we don't <em>need</em> that additional constructor. Hence, this is where the judgement call resides.</p>
<p>But if we suddenly add a new class called <code>Qux</code> and we find ourselves in need to create an instance of <code>Bar</code> from it: we have to add a constructor <em>somewhere</em>. So it could either be:</p>
<pre><code> Foo --> Bar
Baz --> Bar
Qux --> Bar
Baz --> Foo
</code></pre>
<p>OR:</p>
<pre><code> Foo --> Bar
Baz --> Bar
Baz --> Foo
Qux --> Foo
</code></pre>
<p>The later would have a more even distribution of constructors between the classes but whether it is a <em>better</em> solution depends largely on the way in which they are going to be used.</p>
http://stackoverflow.com/questions/484676/who-cares-as-long-as-the-result-is-ok/485816#4858161Answer by Ryan Delucchi for Who cares... as long as the result is ok?Ryan Delucchi2009-01-27T23:23:26Z2009-01-27T23:30:17Z<p>Observing the examples that you have provided --
The following:</p>
<p><strong><code>operator++</code> (postfix/prefix)</strong></p>
<p><strong><code>string.empty()</code> vs. <code>string == ""</code></strong></p>
<p>Don't seem to be good examples, as they compare operations that are different in <code>functionality</code>. Hence, one better <strong>not</strong> disregard their semantic distinctions.</p>
<p>In contrast, the following examples: </p>
<p><strong><code>vector.empty()</code> vs. <code>vector.size() == 0</code></strong></p>
<p><strong><code>enum</code>erate { <code>on</code>, <code>off</code>} vs. <code>boolean</code> <code>on=true</code>; <code>off=false</code></strong></p>
<p>Are perfectly reasonable.</p>
<p><code>vector.empty()</code> is preferable if the context of its use is only to determine if the vector is empty. At the risk sounding condescending (which I do <strong>not</strong> intend to be): this boils down to common sense. Why ask for the vector's size if you only want to know if it's empty? That's like asking someone how much money they have in their wallet when you simply wish to know if they have enough cash to by a Coke.</p>
<p>As for <code>enum</code>erate { <code>on</code>, <code>off</code>} vs. <code>boolean</code> <code>on=true</code>; <code>off=false</code>, ask yourself this: how likely is it that you may add another value to the enumeration, in the future? It seems reasonable that one might want <code>enum</code>erate{<code>on</code>, <code>off</code>, <code>indeterminate</code>}` (or some variation), so the answer may be yes. Otherwise, a simple boolean would suffice.</p>
<p>This leads me to the crux of your question: which seems to be if there is some deterministic/algorithmic approach to deciding one way or another on questions such as these, or their relevance? My answer is that until the day that <a href="http://en.wikipedia.org/wiki/Turing_machine" rel="nofollow">Turing Machines</a> are able to pass the <a href="http://en.wikipedia.org/wiki/Turing_test" rel="nofollow">Turing Test</a>, I would say No. This is the reason why humans are required to engineer software.</p>
http://stackoverflow.com/questions/4101/where-do-you-store-your-code-snippets/485456#4854561Answer by Ryan Delucchi for Where do you store your code snippets?Ryan Delucchi2009-01-27T21:50:59Z2009-01-27T21:50:59Z<p>I use <a href="http://www.instiki.org/show/HomePage" rel="nofollow">Instiki</a>, which is a very simple to setup, no frills, WIKI.</p>
<p>You could run this on any disk (e.g. portable USB drive, harddrive) and under any OS (I'm using it under Mac OS X). I keep it running in the background as I am working and switch over to it to add/view any kind of notes (including code snipplets) as needed and it works like a charm.</p>
http://stackoverflow.com/questions/474316/hashtables-in-cocoa2HashTables in CocoaRyan Delucchi2009-01-23T20:09:25Z2009-01-24T20:04:41Z
<p>HashTables/HashMaps are one of the most (if not <em>the</em> most) useful of data-structures in existence. As such, one of the first things I investigated when starting to learn programming in Cocoa was how to create, populate, and read data from a hashtable.</p>
<p>To my surprise: all the documentation I've been reading on Cocoa/Objective-C programming doesn't seem to explain this much at all. As a Java developer that uses "java.util" as if it were a bodily function: I am utterly baffled by this.</p>
<p>So, if someone could provide me with a primer for creating, populating, and reading the contents of a hashtable: I would greatly appreciate it.</p>
http://stackoverflow.com/questions/475675/when-is-a-function-too-long/475762#47576229Answer by Ryan Delucchi for When is a function too long?Ryan Delucchi2009-01-24T08:57:29Z2009-01-24T08:57:29Z<p>Here is a list of red-flags (in no particular order) that could indicate that a function is too long:</p>
<ol>
<li><p><strong>Deeply nested control structures</strong>: e.g. for-loops 3 levels deep or even just 2 levels deep with nested if-statements that have complex conditions.</p></li>
<li><p><strong>Too many <em>state-defining</em> parameters</strong>: By <em>state-defining parameter</em>, I mean a function parameter that guarantees a particular execution path through the function. Get too many of these type of parameters and you have a combinatorial explosion of execution paths (this usually happens in tandem with #1).</p></li>
<li><p><strong>Logic that is duplicated in other methods</strong>: poor code re-use is a huge contributor to monolithic procedural code. A lot of such <em>logic duplication</em> can be very subtle, but once re-factored, the end result can be a far more elegant design.</p></li>
<li><p><strong>Excessive inter-class coupling</strong>: this lack of proper encapsulation results in functions being concerned with intimate characteristics of other classes, hence lengthening them.</p></li>
<li><p><strong>Unnecessary overhead</strong>: Comments that point out the obvious, deeply nested classes, superfluous getters and setters for private nested class variables, and unusually long function/variable names can all create syntactic noise within related functions that will ultimately increase their length.</p></li>
<li><p><strong>Your massive developer-grade display isn't big enough to display it</strong>: Actually, displays of today are big enough that a function that is anywhere close to its height is probably way too long. But, if it is <strong>larger</strong>, this is a smoking gun that something is wrong.</p></li>
<li><p><strong>You can't immediately determine the function's purpose</strong>: Furthermore, once you actually <em>do</em> determine its purpose, if you can't summarize this purpose in a single sentence or happen to have a tremendous headache, this should be a clue. </p></li>
</ol>
<p>In conclusion, monolithic functions can have far-reaching consequences and are often a symptom of major design deficiencies. Whenever I encounter code that is an absolute <em>joy</em> to read, it's elegance is immediately apparent. And guess what: the functions are often <em>very</em> short in length.</p>
http://stackoverflow.com/questions/357421/what-is-the-best-way-to-remove-duplicates-in-an-array-in-java/358102#3581021Answer by Ryan Delucchi for What is the best way to remove duplicates in an Array in Java?Ryan Delucchi2008-12-11T00:28:56Z2008-12-11T00:28:56Z<p>Basically, you want a <code>LinkedHashSet<T></code> implementation that supports the <code>List<T></code> interface for random access. Hence, this is what you need:</p>
<blockquote>
<p><code>public class LinkedHashSetList<T> extends LinkedHashSet<T> implements List<T> {</code></p>
<p><code> // Implementations for List<T> methods here</code>
<code> ... </code></p>
<p><code>}</code></p>
</blockquote>
<p>The implementation of the <code>List<T></code> methods would access and manipulate the underlying <code>LinkedHashSet<T></code>. The trick is to have this class behave correctly when one attempts to add duplicates via the <code>List<T></code> add methods (throwing an exception or re-adding the item at a different index would be options: which you can either choose one of or make configurable by users of the class). </p>
http://stackoverflow.com/questions/135112/java-developer-meets-objectivec-on-mac-os3Java Developer meets ObjectiveC on Mac OSRyan Delucchi2008-09-25T18:34:23Z2008-12-04T09:13:56Z
<p>I have developed in C++ many years ago, but these days I am primarily a Java software engineer. Given I own an iPhone, am ready to spring for a MacBook next month, and am generally interested in getting started with Mac OS developmentmt (using Objective C), I thought I would just put this question out there: What Next?</p>
<p>More specifically, what books should I pick up, and are there any web resources that some folks could point me to? Some books that I am planning to purchase:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0321566157" rel="nofollow">Programming in Objective-C 2.0</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa(R) Programming for Mac OS X (3rd Edition)</a></li>
</ul>
<p>Anyone familiar with these titles? Finally, I would be very interested in a summary of what I should be prepared to expect, once I embark on this journey. As someone that develops in Java using IntelliJ IDEA, what are some key differences I will notice as I move over to writing ObjectiveC code in Xcode? What's the differences between Mac OS desktop development and iPhone development? Being used to Java garbage collection, what should I know about ObjectiveC garbage collection / memory management. Any other language specific issues that anyone would like to point out? How about building UIs? Is it closer to Swing, building Visual C++ resource files that code interacts with, or is it more like some of the borland IDEs that will generate code for guis?</p>
http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282383#28238344Answer by Ryan Delucchi for What are five things you hate about your favorite language?Ryan Delucchi2008-11-11T22:38:59Z2008-11-11T22:38:59Z<p>Five things I hate about Java (which presently my favorite language) in no particular order.</p>
<ol>
<li>As much as I am a fan of Java Generics, there are a lot of oddities that arise from the way it was designed. As such there a myriad of annoying limitations with generics (some of which are the result of type-erasure).</li>
<li>The way Object.clone() and the Cloneable interfaces work is totally broken.</li>
<li>Instead of taking the high-road and making everything an object (a.la. SmallTalk), Sun wimped out created two distinct categories of data-types: Objects and primitives. As a result there are now <em>two</em> representations for fundamental data types and wierd curiosities such as boxing/unboxing and not being able to put primitives in a Collection.</li>
<li>Swing is too complex. Don't get me wrong: there's a lot of cool stuff one can do with Swing but it is a great example of over-engineering.</li>
<li>This final complaint is equally the fault of Sun and those whom have written XML libraries for Java. Java XML libraries are way too complicated. In order to simply read in an XML file, I often have to worry about what parser I am using: DOM or SAX? The APIs for each is equally confusing. Native support in the language for <strong>easily</strong> parsing/writing XML would be very nice.</li>
</ol>
http://stackoverflow.com/questions/245803/jvm-terminates-when-launching-eclipse-mat-on-mac-os-with-j2se-6-00JVM terminates when launching Eclipse MAT on Mac OS with J2SE 6.0Ryan Delucchi2008-10-29T04:33:53Z2008-10-29T18:31:21Z
<p>I have recently discovered the incredibly useful <a href="http://www.eclipse.org/mat/" rel="nofollow">Eclipse Memory Analysis Tool</a>, which makes quick work of finding memory leaks in Java applications. Unfortunately, after switching my JDK to 1.6 (under Mac OS 10.5), the JVM terminates immediately upon startup. All that appears is a dialog stating "JVM terminated" with "Exit code = -1".</p>
<p>Anyone else encounter this one? Perhaps there is a way to configure it to use a different JDK? (such as 1.5: which it was shown to be compatible with)</p>
http://stackoverflow.com/questions/128529/ideas-for-a-scary-programming-halloween-costume/232623#2326230Answer by Ryan Delucchi for Ideas for a scary programming Halloween costume?Ryan Delucchi2008-10-24T06:14:09Z2008-10-24T06:14:09Z<p>Captain <a href="http://en.wikipedia.org/wiki/Intercal" rel="nofollow">Intercal</a></p>
http://stackoverflow.com/questions/199462/java-best-practice-for-a-comparator-class/199599#1995990Answer by Ryan Delucchi for Java: Best Practice for a Comparator class?Ryan Delucchi2008-10-14T00:41:39Z2008-10-14T00:41:39Z<p>It turns out I had to do this recently and they I solved it was to create an implementation of <code>Comparable</code> that would allow sorting on N criteria (which said implementation would have control over). However, it is also perfectly acceptable to implement this as a <code>Comparator</code>. Here is a general solution:</p>
<pre><code>public class CompositeComparator<T> implements Comparator<T> {
private Comparator<T> majorKey;
private Comparator<T> minorKey;
public final Comparator<T> cynicalCompare = new Comparator<T>() {
public int compare(T left, T right) {
return 0;
}
};
public CompositeComparator(Comparator<T> majorKey, Comparator<T> minorKey) {
this.majorKey = majorKey != null ? majorKey : cynicalCompare;
this.minorKey = minorKey != null ? minorKey : cynicalCompare;
}
public static <T> CompositeComparator<T> compose(Comparator<T> ... comparators) {
CompositeComparator<T> composition = new CompositeComparator<T>(null, null);
for(Comparator<T> minorKey: comparators)
composition = new CompositeComparator<T>(composition, minorKey);
return composition;
}
public int compare(T left, T right) {
int majorCompare;
if((majorCompare = majorKey.compare(left, right)) == 0)
return minorKey.compare(left, right);
else
return majorCompare;
}
}
</code></pre>
<p>The <code>compose()</code> method is provided for convenience. It allows one to easily combine a chain of <code>CompositeComparators</code> so that one can sort by a large number of keys.</p>
<p>Using this, we could sort <code>myList</code> in this way:</p>
<pre><code>Collections.sort(myList, new CompositeComparator<Employee>(
new Employee.AgeComparator(),
new Employee.NameComparator()));
</code></pre>
<p>And if we have more comparators to sort by:</p>
<pre><code>Collections.sort(myList, CompositeComparator.compose(
new Employee.AgeComparator(),
new Employee.NameCompatator(),
new Employee.FavoriteColorComparator(),
new Employee.MoodComparator()));
</code></pre>
http://stackoverflow.com/questions/182600/should-one-use-or-in-a-for-loop/184201#1842011Answer by Ryan Delucchi for Should one use < or <= in a for loopRyan Delucchi2008-10-08T18:36:18Z2008-10-08T18:36:18Z<p>This falls directly under the category of <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">"Making Wrong Code Look Wrong"</a>. </p>
<p>In zero-based indexing languages, such as Java or C# people are accustomed to variations on the <code>index < count</code> condition. Thus, leveraging this defacto convention would make off-by-one errors more obvious.</p>
<p>Regarding performance: any good compiler worth its memory footprint should render such as a non-issue.</p>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/184164#1841641Answer by Ryan Delucchi for What are some funny loading statements to keep users amused?Ryan Delucchi2008-10-08T18:28:08Z2008-10-08T18:28:08Z<p>Searching for an external observer required to conduct Turing Test ...</p>
http://stackoverflow.com/questions/176745/circular-references-in-java6Circular References in JavaRyan Delucchi2008-10-06T23:59:45Z2008-10-07T18:31:42Z
<p>Given an aggregation of class instances which refer to each other in a complex, circular, fashion: is it possible that the garbage collector may not be able to free these objects?</p>
<p>I vaguely recall this being an issue in the JVM in the past, but I <em>thought</em> this was resolved years ago. yet, some investigation in jhat has revealed a circular reference being the reason for a memory leak that I am now faced with.</p>
<p><em>Note: I have always been under the impression that the JVM was capable of resolving circular references and freeing such "islands of garbage" from memory. However, I am posing this question just to see if anyone has found any exceptions.</em> </p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/177344#17734410Answer by Ryan Delucchi for What's the most egregious pop culture perversion of programming?Ryan Delucchi2008-10-07T05:59:12Z2008-10-07T05:59:12Z<p>Any movie where the "hacker" types furiously for 30 seconds and then utters the cliched announcement of accomplishment: "I'm In!"</p>
http://stackoverflow.com/questions/169277/can-i-use-collections-emptylist-wihout-an-uncheckedexception/169286#16928610Answer by Ryan Delucchi for Can I use Collections.EMPTY_LIST wihout an UncheckedException?Ryan Delucchi2008-10-03T23:18:55Z2008-10-03T23:54:00Z<p>By doing the following:</p>
<pre><code>List<User> users = Collections.emptyList();
</code></pre>
<p>The type of the returned list from <code>Collections.emptyList();</code> will be <em>inferred</em> as a <code>String</code> due to the left-hand-side of the assignment. However, if you prefer to not have this inference, you can define it explicitly by doing the following:</p>
<pre><code>List<User> users = Collections.<User>emptyList();
</code></pre>
<p>In this particular instance, this may appear as redundant to most people (in fact, I've seen very little code out in the wild that makes use of explicit type arguments), however for a method with the signature: <code>void doStuff(List<String> users)</code> it would be perfectly clean for one to invoke <code>doStuff()</code> with an explicit type argument as follows:</p>
<pre><code>doStuff(Collections.<String>emptyList());
</code></pre>
http://stackoverflow.com/questions/58640/great-programming-quotes/164394#1643944Answer by Ryan Delucchi for Great programming quotesRyan Delucchi2008-10-02T20:23:33Z2008-10-02T20:23:33Z<p>Software Engineering isn't rocket science ...</p>
<p><em>It's harder</em></p>
http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary/160460#16046015Answer by Ryan Delucchi for To ternary or not to ternary?Ryan Delucchi2008-10-02T01:13:45Z2008-10-02T01:13:45Z<p>The Ternary <strong>?:</strong> operator is merely a functional equivalent of the procedural <strong>if</strong> construct. So as long as you are not using nested <strong>?:</strong> expressions, the arguments for/against the functional representation of any operation applies here. But nesting ternary operations can result in code that is downright confusing (exercise for the reader: try writing a parser that will handle nested ternary conditionals and you will appreciate their complexity).</p>
<p>But there are plenty of situations where conservative use of the <strong>?:</strong> operator can result in code that is actually <em>easier</em> to read than otherwise. For example:</p>
<pre><code>int compareTo(Object object) {
if((isLessThan(object) && reverseOrder) || (isGreaterThan(object) && !reverseOrder)) {
return 1;
if((isLessThan(object) && !reverseOrder) || (isGreaterThan(object) && reverseOrder)) {
return -1;
else
return 0;
}
</code></pre>
<p>Now compare that with this:</p>
<pre><code>int compareTo(Object object) {
if(isLessThan(object))
return reverseOrder ? 1 : -1;
else(isGreaterThan(object))
return reverseOrder ? -1 : 1;
else
return 0;
}
</code></pre>
<p>As the code is more compact it there is less syntactic noise, and by using the ternary operator judiciously (that is only in relation with the <em>reverseOrder</em> property) the end result isn't particularly terse.</p>
http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written/131667#1316674Answer by Ryan Delucchi for What is the worst code you've ever written?Ryan Delucchi2008-09-25T06:00:32Z2008-09-25T06:00:32Z<p>Unfortunately, this was so long ago I no longer have the code. However, there is a particular instance that stands out in a rather spectacular fashion: It was an Win32 App I wrote using MFC in C++. In summary: there was a lot of incredibly complex Windows GDI code. When the application was ran it didn't merely crash, it killed the display driver (as observed by the cool unintentional visual effects and the frozen mouse cursor). At least I can have <em>some</em> measure of pride in writing an application that brings down an entire 32-bit Operating System in a matter of milliseconds without bothering with the dull "Blue Screen of Death".</p>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/131639#1316395Answer by Ryan Delucchi for Recommended Books for Software EngineeringRyan Delucchi2008-09-25T05:46:17Z2008-09-25T05:46:17Z<p>Here are three essentials</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer: From Journeyman to Master</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a> </li>
</ul>
http://stackoverflow.com/questions/1759820/functional-requirements-for-the-ultimate-web-development-frameworkComment by Ryan Delucchi on Functional Requirements for the ultimate web development framework?Ryan Delucchi2009-11-18T23:35:03Z2009-11-18T23:35:03ZWhy the negative votes? And how is a request for some concrete requirements on how to solve a very real problem: "too subjective"?http://stackoverflow.com/questions/58640/great-programming-quotes/67723#67723Comment by Ryan Delucchi on Great programming quotesRyan Delucchi2009-11-10T20:46:43Z2009-11-10T20:46:43ZActually yes, SnOrfus. I've reached the point where sleep deprivation == me feeling <i>very</i> physically and mentally strained.http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T16:39:14Z2009-10-08T16:39:14ZMake some arbitrary changes to your answer, and I should be able to fix my voting mistake.http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T06:46:03Z2009-10-08T06:46:03ZPlease enable public editing so I can fix my vote on your answer (and give you a well-deserved +1)http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T06:43:15Z2009-10-08T06:43:15ZMy mistake! It works :-) ignore my last commenthttp://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T06:39:17Z2009-10-08T06:39:17ZActually, after trying this: it doesn't seem to work. I try it and get the following error: java.lang.Exception: Name conflict, can't def + because namespace: my-ns refers to:#'clojure.core/+ (NO_SOURCE_FILE:5)http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T02:18:10Z2009-10-08T02:18:10ZBingo, exactly what I am looking for! Thanks.http://stackoverflow.com/questions/1535176/operator-overloading-in-clojure/1535235#1535235Comment by Ryan Delucchi on Operator Overloading in ClojureRyan Delucchi2009-10-08T02:08:08Z2009-10-08T02:08:08ZSo, if I were to exclude clojure.core/+, I could do the following (defn + [x y] (myPlus x y)) correct? If so, that is exactly what I want to do. How do I exclude clojure.core/+ from my namespace?http://stackoverflow.com/questions/1506728/on-performance-and-java-interoperability-clojure-vs-scala/1506938#1506938Comment by Ryan Delucchi on On Performance and Java Interoperability: Clojure vs. ScalaRyan Delucchi2009-10-01T23:18:12Z2009-10-01T23:18:12ZThe functional programming features of clojure are the most compelling reason why I am considering this language. I'm reaching the point where: if I'm not coding something in a functional fashion - why am I bothering with a scripting language embedded in Java anyway? I already have Python at my side for doing quick-and-dirty tasks.http://stackoverflow.com/questions/1506728/on-performance-and-java-interoperability-clojure-vs-scala/1506844#1506844Comment by Ryan Delucchi on On Performance and Java Interoperability: Clojure vs. ScalaRyan Delucchi2009-10-01T22:47:19Z2009-10-01T22:47:19ZAnd I'd like to add that I do have a bit of a "soft spot" for LISP so the fact that Clojure suffers from parethesitis isn't enough to scare me away. http://stackoverflow.com/questions/1506728/on-performance-and-java-interoperability-clojure-vs-scala/1506844#1506844Comment by Ryan Delucchi on On Performance and Java Interoperability: Clojure vs. ScalaRyan Delucchi2009-10-01T22:44:55Z2009-10-01T22:44:55ZHuh. Well, thanks for all of the insights. At first, I was in the mode where I wanted to just pick one and run with it. But for some reason, it didn't occur to me that I could just use both and have them inter-operate. So, perhaps I'll pick both and do a fast-walk with them :-) http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine/1287621#1287621Comment by Ryan Delucchi on Using the Python NLTK (2.0b5) on the Google App EngineRyan Delucchi2009-08-18T18:03:42Z2009-08-18T18:03:42ZYes! It all seems to come down to NLTK's wacky importing. And yes, it does work fine on the console. The solution must involve going in all the references to "nltk" and fixing them. This is however non-trivial because there seems to also be issues referring to other packages as well. So, preferably: it would be nice to have a general way to resolve all the annoying importing issues.http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine/1287150#1287150Comment by Ryan Delucchi on Using the Python NLTK (2.0b5) on the Google App EngineRyan Delucchi2009-08-18T17:58:59Z2009-08-18T17:58:59ZThanks for the link. This gave me some good hints (although I don't think it's the <i>complete</i> solution to the problem).http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine/1286326#1286326Comment by Ryan Delucchi on Using the Python NLTK (2.0b5) on the Google App EngineRyan Delucchi2009-08-17T06:17:22Z2009-08-17T06:17:22Z2.0b5. Once again, I am seeing the same error both on my local machine (running within the GAE dev. environment) in addition to Google App Engine.http://stackoverflow.com/questions/1286301/using-the-python-nltk-2-0b5-on-the-google-app-engine/1286326#1286326Comment by Ryan Delucchi on Using the Python NLTK (2.0b5) on the Google App EngineRyan Delucchi2009-08-17T06:04:53Z2009-08-17T06:04:53ZAh, ok, a mistake on my part. But, this is a red-herring (which I would have likely discovered if it weren't for being able to import <i>ANY</i> of NLTK) :-) So, why is it that I need to use zipimport? I actually haven't had to do with this with a python library before. thanks.