User Jon Homan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T09:44:32Z http://stackoverflow.com/feeds/user/7589 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1561496/should-one-just-read-sicp-and-not-solve-problems/1561642#1561642 1 Answer by Jon Homan for Should one just read SICP and not solve problems? Jon Homan 2009-10-13T17:12:02Z 2009-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-framework 1 What is the community-preferred Ruby unit testing framework? Jon Homan 2009-09-25T20:14:29Z 2009-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#1460539 1 Answer by Jon Homan for Recommended programming books published in 2009 Jon Homan 2009-09-22T14:48:52Z 2009-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#1456368 4 Answer by Jon Homan for What is the difference in productivity ? Jon Homan 2009-09-21T19:27:00Z 2009-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#77073 0 Answer by Jon Homan for Which open-source C++ database GUI project should I help with? Jon Homan 2008-09-16T21:03:57Z 2008-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#75930 0 Answer by Jon Homan for Firefox add-ons Jon Homan 2008-09-16T19:19:36Z 2008-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#73854 2 Answer by Jon Homan for Hardest Programming discipline? Jon Homan 2008-09-16T15:52:32Z 2008-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 -2 Answer by Jon Homan for How to implement a simple auto-complete functionality? Jon Homan 2008-09-16T14:49:56Z 2008-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#73017 0 Answer by Jon Homan for Which text/code editor on Linux is most similar to TextMate? Jon Homan 2008-09-16T14:36:47Z 2008-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 -1 Answer by Jon Homan for Python's unittest logic Jon Homan 2008-09-16T14:12:08Z 2008-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#1704196 Comment by Jon Homan on Can someone explain javascript prototypal inheritance Jon Homan 2009-11-09T22:07:42Z 2009-11-09T22:07:42Z There'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#1687666 Comment by Jon Homan on From Java code to UML diagram Jon Homan 2009-11-06T17:06:43Z 2009-11-06T17:06:43Z I'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#1688129 Comment by Jon Homan on Converting Json to Java Jon Homan 2009-11-06T17:00:51Z 2009-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).