User Jon Homan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T09:44:32Zhttp://stackoverflow.com/feeds/user/7589http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1561496/should-one-just-read-sicp-and-not-solve-problems/1561642#15616421Answer by Jon Homan for Should one just read SICP and not solve problems?Jon Homan2009-10-13T17:12:02Z2009-10-13T17:12:02Z<p>There is a <a href="http://groups.google.com/group/wizardbookstudy" rel="nofollow">group of people</a> on Google Groups banding together to read through SICP. Some of the group meetings are also recorded (I haven't watched them, so I can't say anything about their quality). This group might help you stay motivated to finish the entire book.</p>
<p>There has also been at least one <a href="http://groups.google.com/group/wizardbookstudy/browse%5Fthread/thread/2d9f9c1635571804" rel="nofollow">discussion thread</a> about pacing and which problems are the most important, etc. This might help you determine which set of problems, exercises are worth looking at on short time.</p>
http://stackoverflow.com/questions/1479361/what-is-the-community-preferred-ruby-unit-testing-framework1What is the community-preferred Ruby unit testing framework?Jon Homan2009-09-25T20:14:29Z2009-09-25T20:46:38Z
<p>In the Java space, JUnit is predominately used and in .NET I believe nUnit is very popular. Is a community agreed upon unit testing framework for the Ruby world? </p>
<p>Background: I ask because I am new to Ruby and want to practice TDD at same time as I learn Ruby. So far I've only played with Test::Unit. </p>
http://stackoverflow.com/questions/1460494/recommended-programming-books-published-in-2009/1460539#14605391Answer by Jon Homan for Recommended programming books published in 2009Jon Homan2009-09-22T14:48:52Z2009-09-22T14:48:52Z<p><a href="http://programmingscala.com/" rel="nofollow">Programming Scala</a></p>
http://stackoverflow.com/questions/1456322/what-is-the-difference-in-productivity/1456368#14563684Answer by Jon Homan for What is the difference in productivity ?Jon Homan2009-09-21T19:27:00Z2009-09-21T19:27:00Z<p>It's been said that the best programmers are 10 times more productive than the average programmer. See <a href="http://blogs.construx.com/blogs/stevemcc/archive/2008/03/27/productivity-variations-among-software-developers-and-teams-the-origin-of-quot-10x-quot.aspx" rel="nofollow">Productivity Variations Among Software Developers and Teams</a>.</p>
<p>But the difference between the average and best at any given company could be very different. Productivity doesn't mean the ability to type really fast or churn endless class hierarchies.</p>
http://stackoverflow.com/questions/77013/which-open-source-c-database-gui-project-should-i-help-with/77073#770730Answer by Jon Homan for Which open-source C++ database GUI project should I help with?Jon Homan2008-09-16T21:03:57Z2008-09-16T21:03:57Z<p>In my brief experience contributing to an open-source project, I found two points keep me contributing:</p>
<ul>
<li>Great people - the other people contributing were fun to collaborate with and hang out with (virtually).</li>
<li>Project you care about - doesn't really matter which project as long as the its goals are something you want to spend your free time working on.</li>
</ul>
http://stackoverflow.com/questions/36407/firefox-add-ons/75930#759300Answer by Jon Homan for Firefox add-onsJon Homan2008-09-16T19:19:36Z2008-09-16T19:19:36Z<p><a href="http://fireftp.mozdev.org/" rel="nofollow">FireFTP</a> is good for grabbing/uploading any necessary files.</p>
http://stackoverflow.com/questions/73801/hardest-programming-discipline/73854#738542Answer by Jon Homan for Hardest Programming discipline?Jon Homan2008-09-16T15:52:32Z2008-09-16T15:52:32Z<p>Game Programming, especially at EA, ;)</p>
http://stackoverflow.com/questions/73095/how-to-implement-a-simple-auto-complete-functionality/73161#73161-2Answer by Jon Homan for How to implement a simple auto-complete functionality?Jon Homan2008-09-16T14:49:56Z2008-09-16T14:49:56Z<p>Regular expressions.</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/73017#730170Answer by Jon Homan for Which text/code editor on Linux is most similar to TextMate?Jon Homan2008-09-16T14:36:47Z2008-09-16T14:36:47Z<p>Google'ing for "linux textmate" returns quite a few results. Must be a popular wish.</p>
<p>I second Gedit. I've used it quite a bit when write Java code for school and also some Python and Bash scripts. </p>
<p>If you look around, there are many tutorials about "tricking" out Gedit:</p>
<p><a href="http://www.micahcarrick.com/09-29-2007/gedit-html-editor.html" rel="nofollow">Gedit html editor</a></p>
<p><a href="http://www.linux.com/feature/138509" rel="nofollow">Gedit plugins</a></p>
<p><a href="http://live.gnome.org/Gedit/Plugins" rel="nofollow">List of Gedit plugins</a></p>
http://stackoverflow.com/questions/72422/pythons-unittest-logic/72702#72702-1Answer by Jon Homan for Python's unittest logicJon Homan2008-09-16T14:12:08Z2008-09-16T14:12:08Z<p>The setUp method, as everyone else has said, runs before every test method you write. So, when testB runs, the value of i is 1, not 3.</p>
<p>You can also use a tearDown method which runs after every test method. However if one of your tests crashes, your tearDown method will never run.</p>
http://stackoverflow.com/questions/1703672/can-someone-explain-javascript-prototypal-inheritance/1704196#1704196Comment by Jon Homan on Can someone explain javascript prototypal inheritanceJon Homan2009-11-09T22:07:42Z2009-11-09T22:07:42ZThere's also a Google Tech Talk of the same name: <a href="http://www.youtube.com/watch?v=hQVTIJBZook" rel="nofollow">youtube.com/watch?v=hQVTIJBZook</a>
Just watched it today.http://stackoverflow.com/questions/1687323/from-java-code-to-uml-diagram/1687666#1687666Comment by Jon Homan on From Java code to UML diagramJon Homan2009-11-06T17:06:43Z2009-11-06T17:06:43ZI've had good experiences using this. But it's been a good while since I've dealt with UML.http://stackoverflow.com/questions/1688099/converting-json-to-java/1688129#1688129Comment by Jon Homan on Converting Json to JavaJon Homan2009-11-06T17:00:51Z2009-11-06T17:00:51Z@Malax Since you have access to the code, couldn't you change JSONObject#getNames to return whatever you'd like in that case? But that JSON library could still stink for other reasons (never used them personally, but I know we're using them at work).