User Mongo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T09:15:10Zhttp://stackoverflow.com/feeds/user/43396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1181032/recommend-some-open-source-web-frameworks-for-a-fun-project0Recommend some open source web frameworks for a fun projectMongo2009-07-25T02:40:39Z2009-07-25T02:54:45Z
<p>I maintain very dull in-house business software for a living. Technologies included here are Java, Struts, Spring MVC, jsp, wicket, and a few others. I think it's time to branch out and learn something new.</p>
<p>I am hoping to show myself with a side project that writing code can, in fact, be fun (in some plane of the universe), and that I haven't wasted the past few years of my life doing something I can never love or have fun doing.</p>
<p>I'm thinking of having a fantasy-sport style web site - obviously much, much smaller with regards to features and all that. I was hoping I could get some recommendations for the newest or cleanest frameworks that will allow me to accomplish such a project. My goals are to work on following a real development process instead of just hacking a bunch of crap into an already crappy application on a daily basis. Also I will strive to follow best practices and create good, clean, understandable code that I don't shudder at the thought of having to modify. It's hard to do this at work, because the software I work on has already been developed by 50 guys from various continents that never took the time to design anything before jumping into coding.</p>
<p>I would need a simple database to store users and their picks for each event. Also at my job, the login security is all handled by another group completely. Do people usually write their own login systems from scratch, or are there open source utilities for that as well? I'd be interested in those, as my site will need to have a user login system, and be secure.</p>
<p>I had ruby and rails installed on my computer the last time I conjured up the motivation for this idea, but that was nixed by a hard drive crash. I figured before I just jumped straight to rails for this idea, that I would get a few other opinions off stack overflow to see if people liked something else that I didn't know about.</p>
<p>Also, if anyone has any good resources for how to think about OO design, I could brush up on that as well. I'm looking for anything that will help me to just think about the design from the start and how to get my thoughts into a diagram. I'd like it not to focus so much on patterns and other principles as much as just how to get started and actually put my thoughts in a professional document that I can use to build my project from. I tried to practice this prior to a card game that I wrote, and it got way too complicated way too fast, and the results ended up being not so great.</p>
http://stackoverflow.com/questions/530396/how-to-draw-a-perspective-correct-grid-in-2d/530497#5304973Answer by Mongo for How to draw a perspective correct grid in 2DMongo2009-02-09T23:12:55Z2009-02-09T23:12:55Z<p>While my google-fu has failed to produce any rock solid mathematical solution, perhaps this drawing that I found could help a little.
<br/><br/>
<a href="http://studiochalkboard.evansville.edu/lp-diminish.html" rel="nofollow">http://studiochalkboard.evansville.edu/lp-diminish.html</a>
<br/><br/>
I think it might actually be pretty difficult to come up with the correct math on your own, it's probably some sort of logarithmic or summation expression. Hopefully the drawing and terms at that link might provide something a little more searchable for you.</p>
http://stackoverflow.com/questions/491295/migrate-from-source-depot-to-svn/504819#5048190Answer by Mongo for Migrate from Source Depot to SVNMongo2009-02-02T20:46:03Z2009-02-02T20:46:03Z<p>My company had a contractor visit us for an info session a while back about migrating the all of the source and version history from MKS to SVN. It turns out that it's actually very difficult to keep the version history intact through a migration process because they all have their own methods for storing that history. What I took away from that visit was that there are some expensive third party tools that will do migrations, but they are hard to find and really aren't all that great.</p>
<p>We ended up deciding that for most projects, we would bite the bullet and just create new source control projects with the existing source, losing the version history for the new software and keeping the old ones backed up on disk.</p>
<p>Granted, our situations differ a little in that our base version histories are not in the same format (mine is MKS, yours is SD). But, I don't believe it will be easy to find a magic script for converting it. I could be wrong, but this is what I got out of that meeting that we had, anyway.</p>
http://stackoverflow.com/questions/492799/difference-between-invariantculture-and-ordinal-string-comparision/492830#4928301Answer by Mongo for Difference between InvariantCulture and Ordinal string comparisionMongo2009-01-29T18:30:32Z2009-01-29T18:30:32Z<p>Maybe <a href="http://blogs.msdn.com/michkap/archive/2004/12/29/344136.aspx" rel="nofollow">http://blogs.msdn.com/michkap/archive/2004/12/29/344136.aspx</a> ? (googled)</p>
http://stackoverflow.com/questions/222826/silverlight-keydown-event-doesnt-fire-for-arrow-keys/469999#4699990Answer by Mongo for silverlight keydown event doesn't fire for arrow keysMongo2009-01-22T17:10:14Z2009-01-22T17:10:14Z<p>I have no idea how silverlight works, but it sounds like the arrow keys are pre-binded to some function. Can you just un-bind them?</p>
http://stackoverflow.com/questions/459268/where-are-the-class-files-located-in-jdk-folder/459297#4592972Answer by Mongo for Where are the class files located in JDK folder?Mongo2009-01-19T21:45:42Z2009-01-19T21:45:42Z<p>They are spread between several jars. It looks like Button is in jre/lib/rt.jar though.</p>
http://stackoverflow.com/questions/458915/searching-word-in-vim/459068#4590681Answer by Mongo for Searching word in vim?Mongo2009-01-19T20:35:35Z2009-01-19T20:35:35Z<p>I usually google my trusty vim cheat sheets whenever I go a long time without using it.</p>
<p><a href="http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html" rel="nofollow">http://www.viemu.com/a_vi_vim_graphical_cheat_sheet_tutorial.html</a>
<a href="http://www.tuxfiles.org/linuxhelp/vimcheat.html" rel="nofollow">http://www.tuxfiles.org/linuxhelp/vimcheat.html</a></p>
http://stackoverflow.com/questions/452059/how-complex-should-code-be/452064#4520643Answer by Mongo for How complex should code be? Mongo2009-01-16T21:22:03Z2009-01-16T21:22:03Z<p>Simpler is usually better. Remember that other people will probably have to maintain it someday.</p>
http://stackoverflow.com/questions/451426/how-do-i-calculate-the-surface-area-of-a-2d-polygon/451510#4515103Answer by Mongo for How do I calculate the surface area of a 2d polygon?Mongo2009-01-16T18:48:38Z2009-01-16T18:48:38Z<p>Here is a good explanation that hasn't been linked yet: <a href="http://www.wikihow.com/Calculate-the-Area-of-a-Polygon" rel="nofollow">http://www.wikihow.com/Calculate-the-Area-of-a-Polygon</a></p>
http://stackoverflow.com/questions/447898/what-is-object-serialization/447918#4479181Answer by Mongo for What is object serialization?Mongo2009-01-15T18:36:43Z2009-01-15T18:36:43Z<p>Serialization is the process of converting an object's state to bits so that it can be stored on a hard drive. When you deserialize the same object, it will retain its state later. It lets you recreate objects without having to save the objects' properties by hand.</p>
<p><a href="http://en.wikipedia.org/wiki/Serialization" rel="nofollow">http://en.wikipedia.org/wiki/Serialization</a></p>
http://stackoverflow.com/questions/444606/convincing-a-large-company-to-use-free-software/444648#4446480Answer by Mongo for Convincing a large company to use free software?Mongo2009-01-14T21:00:23Z2009-01-14T21:00:23Z<p>Big companies need to hire support staff for stuff like that. When they purchase software from a company, they are guaranteed support with the contract. Open source projects can die off a lot easier, whereas a large software vendor can be held responsible for much greater periods of time.</p>
http://stackoverflow.com/questions/440786/junit-java-testing-non-public-methods/441076#4410760Answer by Mongo for junit & java : testing non-public methodsMongo2009-01-13T22:22:56Z2009-01-13T22:22:56Z<p>Here is the "probably shouldn't do it this way" method that everyone else keeps harping at you about. I think it's certainly within the realm of possibility that there are reasons for doing it this way, though. The following code will access a private field, but the code for a private method is nearly identical.</p>
<pre><code>public void testPrivateField() throws InterruptedException {
Class<ClassWPrivateField> clazz = ClassWPrivateField.class;
try {
Field privateField = clazz.getDeclaredField("nameOfPrivateField");
privateField.setAccessible(true); // This is the line
// do stuff
} catch(NoSuchFieldException nsfe) {
nsfe.printStackTrace();
fail();
} catch(IllegalAccessException iae) {
iae.printStackTrace();
fail();
}
}
</code></pre>
http://stackoverflow.com/questions/440931/how-many-multiple-eclipse-projects-is-considered-too-excessive-for-one-actual-d/441000#4410001Answer by Mongo for How many multiple "Eclipse Projects" is considered too excessive for one actual development project?Mongo2009-01-13T22:02:07Z2009-01-13T22:02:07Z<p>Create jars for the projects you don't work in often. That should greatly reduce the clutter. If you work on all the projects often, then you can add targets to your build that will jar up the respective projects for you, which condenses everything down to one file that you can then include on the class path.</p>
http://stackoverflow.com/questions/369755/how-do-i-do-a-fuzzy-match-of-company-names-in-mysql-with-php-for-auto-complete/379644#3796440Answer by Mongo for How do I do a fuzzy match of company names in MYSQL with PHP for auto-complete?Mongo2008-12-18T23:07:49Z2008-12-18T23:07:49Z<p>SOUNDEX is an OK algorithm for this, but there have been recent advances on this topic. Another algorithm was created called the Metaphone, and it was later revised to a Double Metaphone algorithm. I have personally used the java apache commons implementation of double metaphone and it is customizable and accurate.</p>
<p>They have implementations in lots of other languages on the wikipedia page for it, too. This question has been answered, but should you find any of the identified problems with the SOUNDEX appearing in your application, it's nice to know there are options. Sometimes it can generate the same code for two really different words. Double metaphone was created to help take care of that problem.</p>
<p>Stolen from wikipedia: <a href="http://en.wikipedia.org/wiki/Soundex" rel="nofollow">http://en.wikipedia.org/wiki/Soundex</a></p>
<blockquote>
<p>As a response to deficiencies in the
Soundex algorithm, Lawrence Philips
developed the Metaphone algorithm for
the same purpose. Philips later
developed an improvement to Metaphone,
which he called Double-Metaphone.
Double-Metaphone includes a much
larger encoding rule set than its
predecessor, handles a subset of
non-Latin characters, and returns a
primary and a secondary encoding to
account for different pronunciations
of a single word in English.</p>
</blockquote>
<p>At the bottom of the double metaphone page, they have the implementations of it for all kinds of programming languages: <a href="http://en.wikipedia.org/wiki/Double-Metaphone" rel="nofollow">http://en.wikipedia.org/wiki/Double-Metaphone</a></p>
<p>MySQL implementation: <a href="http://atomboy.isa-geek.com/plone/Members/acoil/programing/double-metaphone/" rel="nofollow">http://atomboy.isa-geek.com/plone/Members/acoil/programing/double-metaphone/</a></p>
http://stackoverflow.com/questions/379176/format-double-as-fraction/379449#3794494Answer by Mongo for Format Double as FractionMongo2008-12-18T21:55:13Z2008-12-18T21:55:13Z<p>How about org.apache.commons.math ? They have a Fraction class that takes a double.</p>
<p><a href="http://commons.apache.org/math/api-1.2/org/apache/commons/math/fraction/Fraction.html" rel="nofollow">http://commons.apache.org/math/api-1.2/org/apache/commons/math/fraction/Fraction.html</a></p>
<p>You should be able to extend it and give it functionality for the 64th. And you can also add a toString that will easily print out the whole number part of the fraction for you.</p>
<blockquote>
<p>Fraction(double value, int
maxDenominator) Create a fraction
given the double value and maximum
denominator.</p>
</blockquote>
http://stackoverflow.com/questions/351268/how-to-stop-link-being-followed-until-after-jquery-animate-has-complete/351302#3513021Answer by Mongo for how to stop link being followed until after jquery .animate has completeMongo2008-12-08T23:12:58Z2008-12-08T23:12:58Z<p>You should be able to use the animate function listed here: <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">(jquery doc)</a></p>
<p>It says that the callback should not be executed until the animation is complete.</p>
<blockquote>
<p>callback (Optional) Function
A function to be executed whenever the animation completes, executes once for each element animated against.</p>
</blockquote>
http://stackoverflow.com/questions/1181032/recommend-some-open-source-web-frameworks-for-a-fun-projectComment by Mongo on Recommend some open source web frameworks for a fun projectMongo2009-07-25T22:14:04Z2009-07-25T22:14:04ZThanks for the responses. I have seen lots of references to Python and Django here, I shall check those out. Does anybody else have any other suggestions?http://stackoverflow.com/questions/122110/is-there-a-way-to-get-jadclipse-working-with-eclipse-3-4/183577#183577Comment by Mongo on Is there a way to get jadclipse working with Eclipse 3.4?Mongo2009-02-09T22:41:08Z2009-02-09T22:41:08ZThis solution works for me. Downloading the jar and manually placing it into the plugins directory (as suggested on their website) did not work for me. Thanks.http://stackoverflow.com/questions/491295/migrate-from-source-depot-to-svn/504791#504791Comment by Mongo on Migrate from Source Depot to SVNMongo2009-02-02T20:58:34Z2009-02-02T20:58:34ZIt might or might not include some meta file, but SVN most likely doesn't support the format.