User Justin Standard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:08:02Zhttp://stackoverflow.com/feeds/user/92http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655570/returning-the-value-of-a-new-checkbox-in-flex-air/1655640#16556400Answer by Justin Standard for Returning the value of a new CheckBox in Flex AirJustin Standard2009-10-31T21:06:17Z2009-10-31T21:06:17Z<p>One thing to realize is that the checkbox should always have a value once you create a data binding between the checkbox and some boolean field.</p>
http://stackoverflow.com/questions/296/should-i-learn-c76Should I learn C?Justin Standard2008-08-02T01:07:02Z2009-10-28T09:54:20Z
<h2>Original Question: Should I Learn C?</h2>
<p>In the theme of the stackoverflow podcast, here's a fun question: should I learn C? I expect <a href="http://beta.stackoverflow.com/users/1/jeff-atwood" rel="nofollow">Jeff</a> & <a href="http://beta.stackoverflow.com/users/4/joel-spolsky" rel="nofollow">Joel</a> will have something to say on this.</p>
<p>Some info on my background:</p>
<ul>
<li>Primarily a Java programmer on "enterprisy" systems.</li>
<li>Favorite languages: python, scheme</li>
<li>7 years programming experience</li>
<li>A very small amount of C++ experience, practically no C experience</li>
<li>No immediate "need" to learn C</li>
</ul>
<p>So <em>should</em> I learn C? If so, why? If not, why?</p>
<p><hr /></p>
<h2>C or Assembly?</h2>
<p><em>Lots of folks recomending Assembler, so add on question: <strong>Is it better to learn C or Assembler? If Assembler, which one?</em></strong></p>
<p>Recommended assemblers so far:</p>
<ul>
<li>Motorolla 68000</li>
<li>Intel Assembler <em>(does he mean x86?)</em></li>
<li>MASM32</li>
</ul>
<p><hr /></p>
http://stackoverflow.com/questions/699585/which-version-of-flexmojos-should-be-used1Which version of flexmojos should be used?Justin Standard2009-03-31T00:32:44Z2009-10-22T08:38:22Z
<p>Recently I reorganized my Adobe AIR project as a maven project so I could hook into my continuous integration server. Most of the information I found to get it working came from various blogs, which seems to be the only way to go as far as flex stuff is concerned.</p>
<p>When I was deciding which super-pom to inherit from, though, I found that there are a bunch of different flexmojos super-poms that different people are using.</p>
<p>Here are a few that I found (with each of these in use by some examples in the wild)</p>
<ul>
<li><a href="http://repository.sonatype.org/content/groups/public/org/sonatype/flexmojos/flexmojos-air-super-pom/" rel="nofollow">org.sonatype.flexmojos</a> <em>(this is the one I used)</em></li>
<li><a href="http://repository.sonatype.org/content/groups/public/info/flex-mojos/air-super-pom/" rel="nofollow">info.flex-mojos</a></li>
<li><a href="http://repository.sonatype.org/content/groups/public/info/rvin/mojo/air-super-pom/" rel="nofollow">info.rvin.mojo</a></li>
</ul>
<p><strong>What is the difference between the various super-poms and which is the de facto standard?</strong></p>
http://stackoverflow.com/questions/987332/how-to-automate-testing-of-medium-trust-code/1603965#16039650Answer by Justin Standard for How to Automate Testing of Medium Trust CodeJustin Standard2009-10-21T22:12:04Z2009-10-21T22:12:04Z<p>The answer depends on what your code does when someone with medium trust privilege attempts to access a full trust feature. I assume some kind of exception will be thrown.</p>
<p>In that case, write a unit test that runs in medium trust context, attempts to access a full trust feature, and expects the exception to be thrown. If you've never written a test like this, one common way to do it that most testing frameworks will support is this:</p>
<pre><code>testMediumTrustUserWontAccessFeatureX()
{
// set up the context of your test ...
try
{
accessFullTrustFeature();
fail("Test failed - Medium trust user can access full trust feature");
}
catch( SomeKindOfException e )
{
// Success - feature was denied to the untrusted user
}
}
</code></pre>
<p>If the exception is caught, it means your untrusted user didn't get to access the feature (and the test passes) but if the exception is never caught, the test fails (we expected an exception and didn't get it).</p>
<p>This is java-esque pseudo code but this pattern should work in whatever language you are using assuming it support exception handling.</p>
http://stackoverflow.com/questions/1569206/how-to-use-python-to-log-into-facebook-myspace-and-crawl-the-content/1569231#15692311Answer by Justin Standard for How to use Python to log into Facebook/Myspace and crawl the content?Justin Standard2009-10-14T21:53:47Z2009-10-14T21:53:47Z<p>You can do POST requests by first encoding the data using urllib, and then sending the request using urllib2 just as you are doing now.</p>
<p>This is explained in <a href="http://www.voidspace.org.uk/python/articles/urllib2.shtml" rel="nofollow">this article</a>.</p>
http://stackoverflow.com/questions/1518997/how-do-i-test-an-ifsomecondition-return-statement/1519025#15190250Answer by Justin Standard for How do i test an "if(somecondition) return;" statement?Justin Standard2009-10-05T09:25:40Z2009-10-05T09:25:40Z<p>Sometimes you encounter this sort of thing when you have a function whose sole job is to take in one or more objects, delegate some calls, then return.</p>
<p>A way to test that is with Mocks - create a mock of the passed in object, check the mock to ensure that the expected calls were actually made (which is the purpose of your function).</p>
<p>If the expected calls weren't made prior to return, your test will fail, otherwise it will pass.</p>
<p>Beware though, this sort of test flirts dangerously close to knowledge of the implementation.</p>
http://stackoverflow.com/questions/1515075/java-where-and-how-should-exceptions-be-used/1515127#15151271Answer by Justin Standard for Java - where and how should exceptions be used?Justin Standard2009-10-03T23:26:27Z2009-10-03T23:26:27Z<p>One thing that we have done on our team is to have custom exceptions for our errors. We are using the Hibernate Validator framework, but you can do this with any framework, or stock exceptions.</p>
<p>For example, we have a ValidationException to handle validation errors. We have a ApplicationException to handle system errors.</p>
<p>You DO want to minimize your try-catch-ing. In our case, we will have the validator collect ALL the validations in "InvalidValue" objects, and then throw a single ValidationException with the invalid value information bundled into it. Then you can report to the user which fields were in error, etc.</p>
<p>In the case you mentioned of a database error - you may not want to send the stacktrace to the UI (logging it is a good idea). This is a case where you can catch the database exception, then throw your own ApplicationException to your GUI. Your GUI won't have to know how to deal with an infinite number of server errors, but can be set to deal with the more generalized ApplicationException - possibly reporting that there is a problem with the server, and indicating that the user should contact your customer support department to report the problem.</p>
<p>Lastly, sometimes you can't help but use a lot of try/catch blocks because of the external APIs you rely on. This is fine. As mentioned before, catch the external exception, and format it into one which makes more sense to YOUR application. Then throw the custom exception.</p>
http://stackoverflow.com/questions/1488789/why-cant-i-invoke-python-from-the-command-line/1488818#14888183Answer by Justin Standard for Why can't I invoke python from the command line?Justin Standard2009-09-28T19:09:56Z2009-09-28T19:17:13Z<p>This still sounds like a path issue. </p>
<p>If you have just added c:\Python26 to your path, then you need to open a new cmd window before those changes take effect, they won't apply to your existing cmd windows.</p>
<p>If you're unsure how to do this in Windows Vista, here is the instructions.</p>
<ol>
<li>Select Settings -> Control Panel from the start menu.</li>
<li>Double click the 'System' icon.</li>
<li>Choose 'Advanced System Settings' on the left hand side.</li>
<li>Choose 'Environment Variables'</li>
<li>In the bottom list, select 'Path', and click 'Edit...'</li>
<li>At the end of the path string, add <strong><em>;C:\Python26</em></strong>, leaving everything else the same, then click OK, then click OK again on the various windows still open.</li>
</ol>
<p>Now open a new cmd window, and try the 'python' command from any directory - it should work.</p>
<p>This may be obvious to most people, but hopefully anyone with the same problem will find the help they need in this answer.</p>
http://stackoverflow.com/questions/1455722/can-i-embed-a-python-back-end-in-an-air-application/1455746#14557460Answer by Justin Standard for Can I "embed" a Python back-end in an AIR application?Justin Standard2009-09-21T17:30:19Z2009-09-21T17:35:38Z<p>Probably. We are using a J2EE server side which uses SOAP webservices to talk to our AIR application on the frontend. You should be able to do the same because soap doesn't care which technology sits on either side of it.</p>
<p>You can always have the application launch from a single binary which first fires up the server, then the client, if both are expected to sit on the users system. Also it gives you flexibility to have a more service oriented model later, if you want to. Without knowing what your app does, it is hard to know if that makes sense or not.</p>
<p>For setting up the python side of SOAP webservices, here's a useful link to a <a href="http://diveintopython.org/soap%5Fweb%5Fservices/index.html" rel="nofollow">diveintopython article</a>. Then, if you have your server running with the wsdl, <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=data%5F4.html" rel="nofollow">FlexBuilder can generate the AIR side of the webservices for you</a>.</p>
http://stackoverflow.com/questions/1445286/code-review-conducted-by-an-engineer-who-codes-in-a-different-language-is-it-con/1445594#14455940Answer by Justin Standard for Code review conducted by an engineer who codes in a different language. Is it constructive?Justin Standard2009-09-18T16:23:56Z2009-09-18T16:31:08Z<blockquote>
<p>Can a programmer who writes in one language effectively perform a helpful/constructive code review of another language they have no knowledge of?</p>
</blockquote>
<p>You may be making a bit of a hasty generalization here about code reviewers, namely that if a programmer writes proficiently in one language that he or she will perform helpful/constructive code review sin that language. That is often not the case.</p>
<p>To provide a helpful/constructive code review in <em>any</em> language, you have to be a good teacher, in addition to having a good working knowledge of programming (in some language). A very high percentage of code review comments (the most helpful ones, anyway) are not specific to the syntax of a given language, but rather deal with high level concepts. So an effective reviewer will usually have a good working knowledge of "code smells" and common refactoring techniques.</p>
<p><strong>So the short answer to your question is "Yes". But they have to be a good teacher as well.</strong></p>
<blockquote>
<p>The last review we had was horrible, I
had to walk out of the building -
because his criticisms didn't really
guide me in any direction...</p>
</blockquote>
<p>Review comments should not be taken as criticism (and they shouldn't be dished out that way either). The review is a chance for both the author and reviewer to learn something. The best code reviews have more than one reviewer where a group discussion can lead everyone to the best answer. The code itself is almost secondary to the review. The review is a success not when the code is fixed, but when the participants learn a better way to code that they can apply to future efforts.</p>
http://stackoverflow.com/questions/3088/best-ways-to-teach-a-beginner-to-program150Best ways to teach a beginner to program?Justin Standard2008-08-06T05:01:16Z2009-09-12T22:21:26Z
<p><strong>Original Question</strong></p>
<p>I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have gotten bogged down in minor details, and I don't feel I've been very organized. (<em>But the answers to this post have helped a lot.</em>)</p>
<p>What can I do better to teach him effectively? Is there a logical order that I can use to run through concept by concept? Are there complexities I should avoid till later?</p>
<p>The language we are working with is <a href="http://www.python.org" rel="nofollow">Python</a>, but advice in any language is welcome.</p>
<p><hr /></p>
<p><strong>How to Help</strong></p>
<p>If you have good ones please add the following in your answer:</p>
<ul>
<li>Beginner Exercises and Project Ideas</li>
<li>Resources for teaching beginners</li>
<li>Screencasts / blog posts / free e-books</li>
<li>Print books that are good for beginners</li>
</ul>
<p>Please describe the resource <em>with a link to it</em> so I can take a look. I want everyone to know that I have definitely been using some of these ideas. Your submissions will be aggregated in this post.</p>
<p><hr /></p>
<p><strong>Online Resources</strong> for teaching beginners:</p>
<ul>
<li><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-189January--IAP--2008/CourseHome/" rel="nofollow">A Gentle Introduction to Programming Using Python</a></li>
<li><a href="http://www.openbookproject.net/thinkcs/python/english2e/index.xhtml" rel="nofollow">How to Think Like a Computer Scientist</a></li>
<li><a href="http://www.alice.org/" rel="nofollow">Alice: a 3d program for beginners</a></li>
<li><a href="http://scratch.mit.edu/" rel="nofollow">Scratch (A system to develop programming skills)</a></li>
<li><a href="http://www.htdp.org/" rel="nofollow">How To Design Programs</a></li>
<li><a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">Structure and Interpretation of Computer Programs</a></li>
<li><a href="http://pine.fm/LearnToProgram/" rel="nofollow">Learn To Program</a></li>
<li><a href="http://samizdat.mines.edu/howto/HowToBeAProgrammer.html" rel="nofollow">Robert Read's How To Be a Programmer</a></li>
<li><a href="http://creators.xna.com/" rel="nofollow">Microsoft XNA</a></li>
<li><a href="http://vodpod.com/watch/914464-inspirational-oscon-keynote" rel="nofollow">Spawning the Next Generation of Hackers</a></li>
<li><a href="http://deimos3.apple.com/WebObjects/Core.woa/Browse/unsw.edu.au.1504975442.01504975444" rel="nofollow"><em>COMP1917 Higher Computing</em> lectures by Richard Buckland</a> (requires iTunes)</li>
<li><a href="http://diveintopython.org/" rel="nofollow">Dive into Python</a></li>
<li><a href="http://en.wikibooks.org/wiki/Programming%3APython" rel="nofollow">Python Wikibook</a></li>
<li><a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> - sample problems (mostly mathematical)</li>
<li><a href="http://www.pygame.org/" rel="nofollow">pygame</a> - an easy python library for creating games</li>
<li><a href="http://pythonbook.coffeeghost.net/book1/IYOCGwP%5Fbook1.pdf" rel="nofollow">Create Your Own Games With Python ebook</a></li>
<li><a href="http://codebetter.com/blogs/karlseguin/archive/2008/06/24/foundations-of-programming-ebook.aspx" rel="nofollow">Foundations of Programming</a> for a next step beyond basics.</li>
<li><a href="http://www.iam.unibe.ch/~scg/SBE/" rel="nofollow">Squeak by Example</a> </li>
</ul>
<p><hr /></p>
<p><strong>Recommended Print Books</strong> for teaching beginners</p>
<ul>
<li><a href="http://www.acceleratedcpp.com/" rel="nofollow">Accelerated C++</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1598631128" rel="nofollow">Python Programming for the Absolute Beginner</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0735611319" rel="nofollow">Code by Charles Petzold</a></li>
</ul>
http://stackoverflow.com/questions/1395603/trouble-with-simple-python-code/1395635#13956356Answer by Justin Standard for Trouble with simple Python CodeJustin Standard2009-09-08T18:43:50Z2009-09-09T21:59:00Z<p>Because you are using <code>raw_input</code> you are getting the value as a String, which is always considered greater than 0 (even if the String is '-10')</p>
<p>Instead, try using input('Enter a number: ') and python will do the type conversion for you.</p>
<p>The final code would look like this:</p>
<pre><code>a = input('Enter a number: ')
if a > 0:
print 'Positive'
elif a == 0:
print 'Null'
elif a < 0:
print 'Negative'
</code></pre>
<p>However, as a number of folks have pointed out, using input() may lead to an error because it actually interprets the python objects passed in.</p>
<p>A safer way to handle this can be to cast raw_input with the desired type, as in:</p>
<pre><code>a = int( raw_input('Enter a number: '))
</code></pre>
<p>But beware, you will still need to do some error handling here to avoid trouble!</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713720Answer by Justin Standard for What is the single most influential book every programmer should read?Justin Standard2008-08-04T23:51:07Z2009-09-09T19:53:57Z<p><a href="http://cc2e.com/" rel="nofollow">Code Complete by Steve McConnell</a></p>
<ul>
<li>"The encyclopedia of good programming practice, Code Complete focuses on individual craftsmanship -- all the things that add up to what we instinctively call "writing clean code." This is the kind of book that has 50 pages just talking about code layout and whitespace." --<a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">Joel</a> (<em>NB imo there's more to it than semantics</em>)</li>
</ul>
<p><a href="http://cc2e.com/" rel="nofollow"><img src="http://cc2e.com/%5Fimg/cc2e-cover-small.gif" alt="Code Complete 2" /></a></p>
http://stackoverflow.com/questions/1380806/changing-company-name-do-we-change-namespaces/1380949#13809492Answer by Justin Standard for Changing company name...do we change namespaces?Justin Standard2009-09-04T18:53:39Z2009-09-04T18:53:39Z<p>Whichever choice you make, don't mix the two namespaces on new development. Be consistent. If you choose to stick with the old one, new development should use that too. If you move to a new one, move everything.</p>
<p>It may require some more analysis of the work involved with your particular scenario to decide if its worth it to switch or not.</p>
http://stackoverflow.com/questions/781516/why-does-hibernate-validator-notempty-produce-duplicate-messages0Why does Hibernate Validator @NotEmpty produce duplicate messages?Justin Standard2009-04-23T12:42:46Z2009-09-03T12:00:13Z
<p>While working with Hibernate Validator, I noticed that the <code>@NotEmpty</code> and <code>@NotNull</code> annotations produce duplicate messages in the <code>InvalidValue</code> array returned by <code>getInvalidValues(...)</code>.</p>
<p>If I specify a message like <code>@NotEmpty(message = "My error message.")</code>, then I'll get one InvalidValue of "My error message." and a second of "may not be null or empty"</p>
<p>If i don't include a message (eg <code>@NotEmpty</code> by itself), then I get two copies of the InvalidValue with a message field of "may not be null or empty".</p>
<p>Why does Hibernate Validator do this?? Shouldn't I get one message, either the value that I override using the parameter, or the default message, but not both??</p>
<p><hr /></p>
<p><em>For some more context:</em></p>
<p>I am extending <code>ClassValidator<T></code> with my own <code>ClassValidator<MyClass></code> implementation. I do so to add some custom validations <strong>which cannot be done by annotation</strong>. I need to see the run time value of more than one property of the class in order to determine the validation. </p>
<p>I get the validations when I call myClassValidator.getInvalidValues(), which I override. Inside my implementation of <code>getInvalidValues()</code> I call <code>super.getInvalidValues()</code> to create the initial error list, and then I add my custom errors to that list. In any case, the call to <code>super.getInvalidValues()</code> contains the duplicate messages, one matching the message property passed into the annotation, and a second with the stock value of the annotation message.</p>
<p><hr /></p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications18What Hosting Service is best for Django applications?Justin Standard2008-08-05T19:24:58Z2009-08-21T12:59:19Z
<p>I have been using django a great deal lately and would like to find a home to host my apps.</p>
<p>What is the <strong>best</strong> django web host? (<em>Official django support preferred</em>)</p>
<p>Which service has the lowest price (<em>without a long contract</em>)?</p>
http://stackoverflow.com/questions/127588/what-is-a-closed-question-in-stackoverflow-how-do-they-work21What is a "closed" question in Stackoverflow? How do they work? [closed]Justin Standard2008-09-24T14:42:03Z2009-07-05T05:09:09Z
<p>In Stackoverflow questions can be <em>closed</em>.</p>
<ul>
<li>What does it mean for a question to be <em>closed</em>?</li>
<li>Who can <em>close</em> a question?</li>
<li>When should questions be <em>closed</em>?</li>
</ul>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
<h3>See also</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/457088/how-do-you-challenge-the-closing-of-one-of-your-questions">How do you challenge the closing of one of your questions?</a><br />
<a href="http://stackoverflow.com/questions/34456/etiquette-for-closing-your-own-questions">Etiquette for closing your own questions</a></p>
</blockquote>
http://stackoverflow.com/questions/132017/how-do-comments-work-in-stackoverflow8How do Comments work in Stackoverflow? [closed]Justin Standard2008-09-25T07:54:14Z2009-06-26T11:43:04Z
<p>In Stackoverflow you may leave <em>comments</em> on a question or answer.</p>
<ul>
<li>How do the <em>comments</em> work on Stackoverflow?</li>
<li>When should <em>comments</em> be used?</li>
<li>When should <em>comments</em> be deleted?</li>
</ul>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
http://stackoverflow.com/questions/96729/what-are-the-best-books-for-hibernate-jpa7What are the best books for Hibernate & JPA?Justin Standard2008-09-18T20:42:34Z2009-06-04T08:28:41Z
<p>My team is about to build a new product and we are using Hibernate/JPA as the persistence mechanism. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.</p>
<p>My manager will be purchasing books for our team to use as a resource so...</p>
<p>What are the best books about Hibernate and JPA?</p>
<p>(Please list each book suggestion in a separate answer)<br />
(If you already see your book answered, instead of adding it again, just vote it up)</p>
http://stackoverflow.com/questions/643410/how-to-avoid-duplicate-logic-with-mocks/854958#8549581Answer by Justin Standard for How to avoid duplicate logic with MocksJustin Standard2009-05-12T21:30:36Z2009-05-12T21:30:36Z<p>Here's how I understand your question:</p>
<p><em>You are using mock objects of your entities to test the business layer of your application using JMock. You are also testing your DAO layer (the interface between your app and your database) using DBUnit, and passing real copies of your entity objects populated with a known set of values. Because you are using 2 different methods of preparing your test objects, your code is violating DRY, and you risk your tests getting out of sync with reality as code changes.</em></p>
<p><strong>Folwer says...</strong></p>
<p>Its not exactly the same, but it certainly reminds me of Martin Fowler's <a href="http://martinfowler.com/articles/mocksArentStubs.html" rel="nofollow">Mocks Aren't Stubs</a> article. I see the JMock route as being the <em>mockist</em> way, and the 'real objects' route as being the <em>classicist</em> way to perform testing.</p>
<p>One way to be as DRY as possible when tackling this problem is to be more of a <em>classicist</em> then a <em>mockist</em>. Maybe you can compromise and use real copies of your bean objects in your tests. </p>
<p><strong>User Makers to avoid duplication</strong></p>
<p>What we have done on one project is to create <em>Makers</em> for each of our business objects. The maker contains static methods which will construct a copy of a given entity object, populated with known values. Then, whichever kind of object you need, you can call the maker for that object and get a copy of it with known values to use for your testing. If that object has child objects, your maker will call makers for the children in order to construct it from top to bottom, and you will get back as much of the complete object graph as you need. You can use these maker objects for all of your tests -- passing them to the DB when testing your DAO layer, as well as passing them to your service calls when testing your business services. Because the makers are reusable, its a fairly DRY approach.</p>
<p>One thing you will still need to use JMock for, however, is to mock your DAO layer when testing your service layer. If your service makes a call to the DAO, you should make sure it is injected with a mock instead. But you can still use your Makers just the same -- when set up your expectations, just make sure your mocked DAO passes back the expected result using the Maker for the relevant entity object. That way we still aren't violating DRY.</p>
<p><strong>Well written tests will notify you when code changes</strong></p>
<p>My final advice to avoid your problem with code changing over time is to <em>always</em> have a test that addresses null inputs. Suppose when you first create your method nulls are not acceptable. You should have a test that verifies that an exception is thrown if null is used. If at a later time, nulls become acceptable, your app code might change so that null values are handled in a new way, and the exception is no longer thrown. When that happens, your test will begin to fail, and you will have a "heads up" that things are out of sync.</p>
http://stackoverflow.com/questions/750890/how-can-i-change-annotations-hibernate-validation-rules-at-runtime/781486#7814861Answer by Justin Standard for How can I change annotations/Hibernate validation rules at runtime?Justin Standard2009-04-23T12:26:00Z2009-04-23T12:26:00Z<p>You can't do it normally.</p>
<p>Here's what I've done to get more dynamic validations working via Hibernate Validator.</p>
<ol>
<li>Extend the <code>ClassValidator</code> class.</li>
<li>Override the <code>getInvalidVaues(Object myObj)</code> method. First, call <code>super.getInvalidValues(myObj)</code>, then add the hook to your customized validation.</li>
<li>Instantiate your custom validator and call <code>getInvalidValues</code> to validate. Any hibernate annotated validations will kick off at this point, and your custom dynamic validations (anything not supported by annotations) will kick off as well.</li>
</ol>
<p>Example:</p>
<pre><code>public class MyObjectValidator extends ClassValidator<MyObject>
{
public MyObjectValidator()
{
super(MyObject.class);
}
public InvalidValue[] getInvalidValues(MyObject myObj)
{
List<InvalidValue> invalids = new ArrayList<InvalidValue>();
invalids.addAll(Arrays.asList(super.getInvalidValues(myObj)));
// add custom validations here
invalids.addAll(validateDynamicStuff(myObj));
InvalidValue[] results = new InvalidValue[invalids.size()];
return invalids.toArray(results);
}
private List<InvalidValue> validateDynamicStuff(MyObject myObj)
{
// ... whatever validations you want ...
}
}
</code></pre>
<p>So your custom validation code can contain logic like "Do this validation, if the user configured it, otherwise do that one", etc. You may or may not be able to leverage the same code that powers the hibernate validations, but either way, what you are doing is more involved that the 'normal' use case for hibernate validator.</p>
http://stackoverflow.com/questions/594597/hibernate-annotations-which-is-better-field-or-property-access/781455#7814551Answer by Justin Standard for Hibernate Annotations - Which is better, field or property access?Justin Standard2009-04-23T12:16:29Z2009-04-23T12:16:29Z<p>I think annotating the property is better because updating fields directly breaks encapsulation, even when your ORM does it.</p>
<p>Here's a great example of where it will burn you: you probably want your annotations for hibernate validator & persistence in the same place (either fields or properties). If you want to test your hibernate validator powered validations which are annotated on a field, you can't use a mock of your entity to isolate your unit test to just the validator. Ouch.</p>
http://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux/1577#157767Answer by Justin Standard for What should a longtime Windows user know when starting to use Linux?Justin Standard2008-08-04T20:54:51Z2009-04-14T15:23:13Z<p>If you only have shell access to your host, a number of issues are already taken care of for you, (you don't have to maintain the system yourself).</p>
<p>The useful commands depend on what you primarily want to do, such as interacting with your source control system via command line (<em>you do use source control, don't you?</em>) You already know how to use vim and navigate through the filesystem using <code>cd and <code>ls, so that is a great start.</p>
<p>Most useful commands:</p>
<ul>
<li><a href="http://www.linuxmanpages.com/man1/ls.1.php" rel="nofollow">ls</a>
<ul>
<li>list files in current directory (like Windows <code>dir</code>)</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/cd.1.php" rel="nofollow">cd</a>
<ul>
<li>change directory</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/cp.1.php" rel="nofollow">cp</a><br />
<ul>
<li>copying file(s)</li>
<li>example: <pre><code>$> cp {file1} {file2}<br />
$> cp /home/jms/file1.txt /home/jms/file1-copy.txt</code></pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/mv.1.php" rel="nofollow">mv</a><br />
<ul>
<li>moving or renaming file(s)</li>
<li>example - rename file1.txt: <pre><code>$> mv {file1} {file2}
$> mv /home/jms/file1.txt /home/jms/file_1_new_name.txt</code></pre> </li>
<li>example - move file1.txt: <pre><code>$> mv /home/jms/file1.txt /home/jms/myfiles/file1.txt </code></pre> </li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/man.1.php" rel="nofollow">man</a><br />
<ul>
<li>see the manual pages for a command</li>
<li>example: <pre><code><a href="http://www.thinkgeek.com/tshirts/frustrations/5b7e/" rel="nofollow">$> man woman</a>
$> Segmentation fault (core dumped)</code></pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/find.1.php" rel="nofollow">find</a>
<ul>
<li>search through directories recursively</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/grep.1.php" rel="nofollow">grep</a><br />
<ul>
<li>search for pattern matches</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/wc.1.php" rel="nofollow">wc</a>
<ul>
<li>word count / character count / line count </li>
<li>example: counting the files in a the current directory (uses ls and wc)<pre><code>$> ls | wc -l</code></pre></li>
<li>example: count the files that contain .txt in your home directory (uses find, grep, and wc)<pre><code>$> find /home/jms | grep *.txt | wc -l</code></pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/less.1.php" rel="nofollow">less</a>
<ul>
<li>lightweight file viewer</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/head.1.php" rel="nofollow">head</a>
<ul>
<li>see the first few lines of a file</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/tail.1.php" rel="nofollow">tail</a>
<ul>
<li>see the last few lines of a file (useful for realtime logging)</li>
<li>example: monitor a logfile as logging occurs while an application is running<pre></code>$> tail -f /var/log/somelogfile.log</code></pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/passwd.1.php" rel="nofollow">passwd</a>
<ul>
<li>change your password</li>
<li>example: will act on current user and prompt for old/new password<pre><code>$> passwd</code></pre></li>
<li>example: will change password for the user named someuser<pre><code>$> passwd someuser</code></pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/ssh.1.php" rel="nofollow">ssh</a>
<ul>
<li>secure shell for logging into remote systems</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/touch.1.php" rel="nofollow">touch</a>
<ul>
<li>set file "last modified" time to now (creates a new file if none exists)</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/rm.1.php" rel="nofollow">rm</a>
<ul>
<li>remove a file</li>
<li>can also remove files and directories recursively</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/mkdir.1.php" rel="nofollow">mkdir</a> / <a href="http://www.linuxmanpages.com/man1/rmdir.1.php" rel="nofollow">rmdir</a>
<ul>
<li>create or remove a directory</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/df.1.php" rel="nofollow">df</a>
<ul>
<li>check free disk space on volumes</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/du.1.php" rel="nofollow">du</a>
<ul>
<li>check used disk space on a directory (recursively)</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/ln.1.php" rel="nofollow">ln</a>
<ul>
<li>make a new file/directory that is a "link" to another (such as a symbolic link)</li>
<li>example (symbolic link): <pre>$> ln -s /path/to/destination</pre></li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/kill.1.php" rel="nofollow">kill</a>
<ul>
<li>kill/stop a running process</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/chmod.1.php" rel="nofollow">chmod</a>, <a href="http://www.linuxmanpages.com/man1/chown.1.php" rel="nofollow">chown</a>
<ul>
<li>change permissions / ownership for files.</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man8/sudo.8.php" rel="nofollow">sudo</a>
<ul>
<li>run a command with superuser (ie "root") privileges</li>
<li>your web host may not give you permission to do this</li>
</ul></li>
<li><a href="http://www.linuxmanpages.com/man1/vi.1.php" rel="nofollow">vi</a>
<ul>
<li>a text editor included with every linux installation</li>
</ul></li>
</ul>
<p>A number of these items you will have an easier time learning by experimentation.</p>
<p>A very <a href="http://tldp.org/LDP/abs/html/" rel="nofollow">comprehensive guide to bash scripting</a> might also be of use.</p>
http://stackoverflow.com/questions/146661/how-can-i-build-an-adobe-air-project-with-maven/684170#6841700Answer by Justin Standard for How can I build an Adobe Air project with Maven?Justin Standard2009-03-26T01:18:49Z2009-03-26T01:18:49Z<p>I've been searching for an answer to this problem as well. There are a couple sites that have proved helpful, though I don't have a full solution yet.</p>
<p>Check these for possible leads:</p>
<ul>
<li><a href="http://blogs.citytechinc.com/bgloff/?p=17" rel="nofollow">http://blogs.citytechinc.com/bgloff/?p=17</a></li>
<li><a href="http://jchristie.wordpress.com/2009/01/11/compiling-an-air-application-with-maven-and-flex-mojos/" rel="nofollow">http://jchristie.wordpress.com/2009/01/11/compiling-an-air-application-with-maven-and-flex-mojos/</a></li>
</ul>
<p>AS for the packaging type, most of the information I've found indicates that rather than using aswf as the package type, you'll need to use swf and then convert the compiled swf into your air executable by creating an exec tax to invoke adt.jar The links above will show you how to do that much.</p>
<p>As for the air super pom you found, I think there are a few different ones... But to use any super pom, you need to have your flex maven project declare the super pom as the parent, with a block similar to this:</p>
<pre><code><parent>
<groupId>org.sonatype.flexmojos</groupId>
<artifactId>flexmojos-air-super-pom</artifactId>
<version>3.1-SNAPSHOT</version>
</parent>
</code></pre>
<p>However just extending the parent pom may not be enough to get your swf building - once again, see the links above for a more detailed treatment of this problem.</p>
http://stackoverflow.com/questions/125448/what-do-the-stackoverflow-colors-mean16What do the Stackoverflow colors mean? [closed]Justin Standard2008-09-24T04:42:58Z2009-03-24T13:20:24Z
<p>In Stackoverflow there are many color codes. </p>
<p>Sometimes the number of votes on a question is highlighted with certain colors.<br />
Sometimes the background of the question or answer text is highlighted too.</p>
<p>What do these colors mean?</p>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
http://stackoverflow.com/questions/611732/what-to-do-with-java-bigdecimal-performance/612011#6120110Answer by Justin Standard for What to do with Java BigDecimal performance?Justin Standard2009-03-04T19:12:32Z2009-03-04T19:12:32Z<p>Can you provide more insight as to the purpose of the calculation? </p>
<p>What your dealing with is a trade-off between speed and precision. How great will the loss in precision be if you switched to a primitive?</p>
<p>I think in some cases the user may be comfortable with less accuracy in exchange for speed, so long as they can hone in on the accurate calculation when needed. It really depends on what you will use this calculation for.</p>
<p>Perhaps you can allow the user to preview the result quickly using doubles, and then request the more precise value using BigDecimal if they wish?</p>
http://stackoverflow.com/questions/96757/what-are-the-best-books-for-flex-and-adobe-air7What are the best books for Flex and Adobe AIR?Justin Standard2008-09-18T20:45:42Z2009-02-18T17:22:18Z
<p>My team is about to build a new product and we are using Flex as the front end. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.</p>
<p>My manager will be purchasing books for our team to use as a resource so...</p>
<p>What are the best books about Flex (including using a web browser, or Adobe AIR applications)?</p>
<p>(Please list each book suggestion in a separate answer)<br />
(If your suggestion is already posted, vote it up!)</p>
http://stackoverflow.com/questions/128533/what-is-a-locked-question-in-stackoverflow-how-do-they-work7What is a "Locked" question in Stackoverflow? How do they work? [closed]Justin Standard2008-09-24T17:31:09Z2009-02-18T16:44:18Z
<p>In Stackoverflow, a post can be <em>locked</em>.</p>
<ul>
<li>What does it mean to <em>lock</em> a post?</li>
<li>Who can lock a post?</li>
<li>When should a post be <em>locked</em>?</li>
</ul>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
http://stackoverflow.com/questions/440541/python-sorting-a-list-by-a-key-thats-a-substring-of-each-element/440611#4406110Answer by Justin Standard for python, sorting a list by a key that's a substring of each elementJustin Standard2009-01-13T20:15:31Z2009-01-13T20:15:31Z<p>To do so, you need to implement a custom compare:</p>
<pre><code>def myCompare(x, y):
x_name = " ".join(x.split()[2:])
y_name = " ".join(y.split()[2:])
return cmp(x_name, y_name)
</code></pre>
<p>Then you use that compare definition as the input to your sort function:</p>
<pre><code>myList.sort(myCompare)
</code></pre>
http://stackoverflow.com/questions/360139/agile-development-101-video/364380#3643802Answer by Justin Standard for Agile Development 101 VideoJustin Standard2008-12-12T22:31:04Z2009-01-12T08:21:37Z<p>Aggregating the answers here as a single answer:</p>
<p>Video Links</p>
<ul>
<li><a href="http://www.infoq.com/presentations/Introduction-Agile-Stacia-Broderick" rel="nofollow">Introduction to Agile for Traditional Project Managers</a></li>
<li><a href="http://www.autumnofagile.net/" rel="nofollow">Autumn of Agile</a></li>
<li><a href="http://video.google.com/videoplay?docid=-7230144396191025011" rel="nofollow">Scrum Et Al: Google Tech Talk</a></li>
<li><a href="http://de.youtube.com/watch?v=OWvSnYjqOTQ" rel="nofollow">YouTube Vid about Agile & Business</a></li>
<li><a href="http://www.youtube.com/watch?v=Q5k7a9YEoUI" rel="nofollow">Scrum in less than 10 minutes</a> (Hamid Shojaee)</li>
</ul>
<p>Resource Links</p>
<ul>
<li><a href="http://www.controlchaos.com/" rel="nofollow">Ken Schwaber Videos & Links</a></li>
<li><a href="http://www.scrumalliance.org/" rel="nofollow">Scrum Alliance</a></li>
<li><a href="http://channel9.msdn.com/shows/ARCast+with+Ron+Jacobs/ARCastnet-The-Agile-Architect-with-Jeffrey-Palermo/" rel="nofollow">Introductory Podcast Re Scrum (audio only)</a></li>
</ul>
http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665239#1665239Comment by Justin Standard on Version Control for non-programmersJustin Standard2009-11-03T06:45:18Z2009-11-03T06:45:18ZYeah but sharepoint is also a steaming pile of crap.http://stackoverflow.com/questions/3630/sqlite-vs-mysql/3632#3632Comment by Justin Standard on SQLite vs MySQLJustin Standard2009-10-23T17:33:35Z2009-10-23T17:33:35ZI think the generalization is OK here, though perhaps the wording could be better? MySQL is <i>more</i> oriented towards enterprise production use than SQLite. Maybe would be better to say "less fit for large scale production" or "more fit for large scale production"http://stackoverflow.com/questions/2933/an-executable-python-app/2941#2941Comment by Justin Standard on An executable Python appJustin Standard2009-10-20T23:08:51Z2009-10-20T23:08:51ZMore likely your installer would check for the existence of the right version of Python, and if it found it, use that, otherwise install python as a part of the install process.http://stackoverflow.com/questions/1515075/java-where-and-how-should-exceptions-be-used/1515127#1515127Comment by Justin Standard on Java - where and how should exceptions be used?Justin Standard2009-10-04T05:34:33Z2009-10-04T05:34:33ZIf you wait until the app is "more mature" it will be too late, probably, to implement a robust exception handling system. Plus, you will waste a lot of time having the gui layer handle low level exceptions that perhaps get thrown its way. This scheme saves you time in maintenance, AND in development.http://stackoverflow.com/questions/1515075/java-where-and-how-should-exceptions-be-usedComment by Justin Standard on Java - where and how should exceptions be used?Justin Standard2009-10-03T23:27:29Z2009-10-03T23:27:29ZIts probably NOT a script. Priviledged users may edit one another's posts on StackOverflowhttp://stackoverflow.com/questions/1488789/why-cant-i-invoke-python-from-the-command-line/1488826#1488826Comment by Justin Standard on Why can't I invoke python from the command line?Justin Standard2009-09-28T19:22:15Z2009-09-28T19:22:15ZCreating a bat file could work, but that is a hackish workaround and could cause things to be weird after upgrading. I don't recommend you take that approach - get it working right!http://stackoverflow.com/questions/1488789/why-cant-i-invoke-python-from-the-command-lineComment by Justin Standard on Why can't I invoke python from the command line?Justin Standard2009-09-28T19:19:29Z2009-09-28T19:19:29ZIf its not too much trouble, can you add your output of PATH so we can see what the problem might be?http://stackoverflow.com/questions/1307040/books-to-help-me-write-better-code/1307238#1307238Comment by Justin Standard on Books to Help Me Write Better CodeJustin Standard2009-09-22T14:25:14Z2009-09-22T14:25:14Z#1 Pick = Refactoring by Martin Fowlerhttp://stackoverflow.com/questions/1395603/trouble-with-simple-python-code/1395635#1395635Comment by Justin Standard on Trouble with simple Python CodeJustin Standard2009-09-08T20:16:43Z2009-09-08T20:16:43ZTrue, you can find discussion on this here:
<a href="http://mail.python.org/pipermail/tutor/2003-January/019634.html" rel="nofollow">mail.python.org/pipermail/tutor/…</a>
The initial example is useful for getting a person who is new to python going. Once you start to consider error handling, you'll want to validate any and all user input, and at that point raw_input(...) will prove more useful.http://stackoverflow.com/questions/1394623/can-i-dynamically-call-a-lgpl-gpl-software-in-my-closed-source-application/1394867#1394867Comment by Justin Standard on Can I dynamically call a LGPL/GPL software in my closed-source application?Justin Standard2009-09-08T16:33:49Z2009-09-08T16:33:49ZIn general its probably better to include a copy of the license and a zipped archive of the sourcecode for the version of ffmpeg that you ship with your software.http://stackoverflow.com/questions/1394623/can-i-dynamically-call-a-lgpl-gpl-software-in-my-closed-source-application/1394784#1394784Comment by Justin Standard on Can I dynamically call a LGPL/GPL software in my closed-source application?Justin Standard2009-09-08T16:28:06Z2009-09-08T16:28:06ZWhether or not you agree with the FSF statement above, the code suggested in the question isn't "making function calls" or "sharing data structures'. If he was doing so, it would be a derivative work, but calling the binary (not a "function call") is not (as stated in your conclusion)http://stackoverflow.com/questions/1394623/can-i-dynamically-call-a-lgpl-gpl-software-in-my-closed-source-application/1394720#1394720Comment by Justin Standard on Can I dynamically call a LGPL/GPL software in my closed-source application?Justin Standard2009-09-08T16:25:24Z2009-09-08T16:25:24ZWhat you are failing to realize is that the poster is not using it as "part of their program". True they are creating a dependency, but they're just calling a binary, not combining them into a single program. marcgg is right. I'm surprised there's so much confusion around this.http://stackoverflow.com/questions/1394623/can-i-dynamically-call-a-lgpl-gpl-software-in-my-closed-source-application/1394712#1394712Comment by Justin Standard on Can I dynamically call a LGPL/GPL software in my closed-source application?Justin Standard2009-09-08T16:22:57Z2009-09-08T16:22:57ZIts not against the spirit of the GPL / LGPL (unless you would argue that developing closed source software at all is against the spirit of those licenses).http://stackoverflow.com/questions/1380860/add-variables-to-tuple/1380875#1380875Comment by Justin Standard on add variables to tupleJustin Standard2009-09-04T18:56:36Z2009-09-04T18:56:36ZYou need not destruct the tuples after updating the db. If they go out of scope they should be garbage collected.http://stackoverflow.com/questions/1152651/null-pointer-exception/1152657#1152657Comment by Justin Standard on null pointer exceptionJustin Standard2009-07-20T22:03:12Z2009-07-20T22:03:12ZExactly what I would have said.