Justin Standard

11,287
Reputation
1360 views

Registered User

Name Justin Standard
Member for 1 year
Seen 16 hours ago
Website
Location California
Age 28
I am a software developer in southern California. My favorite languages are Python and Scheme.
Nov
27
awarded  Populist
Nov
3
comment Version Control for non-programmers
Yeah but sharepoint is also a steaming pile of crap.
Oct
31
answered Returning the value of a new CheckBox in Flex Air
Oct
23
comment SQLite vs MySQL
I think the generalization is OK here, though perhaps the wording could be better? MySQL is more 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"
Oct
21
answered How to Automate Testing of Medium Trust Code
Oct
20
comment An executable Python app
More 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.
Oct
14
answered How to use Python to log into Facebook/Myspace and crawl the content?
Oct
5
answered How do i test an “if(somecondition) return;” statement?
Oct
4
comment Java - where and how should exceptions be used?
If 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.
Oct
3
comment Java - where and how should exceptions be used?
Its probably NOT a script. Priviledged users may edit one another's posts on StackOverflow
Oct
3
answered Java - where and how should exceptions be used?
Sep
28
accepted Why can’t I invoke python from the command line?
Sep
28
comment Why can’t I invoke python from the command line?
Creating 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!
Sep
28
comment Why can’t I invoke python from the command line?
If its not too much trouble, can you add your output of PATH so we can see what the problem might be?
Sep
28
revised Why can’t I invoke python from the command line?
added 127 characters in body
Sep
28
answered Why can’t I invoke python from the command line?
Sep
22
comment Books to Help Me Write Better Code
#1 Pick = Refactoring by Martin Fowler
Sep
21
revised Can I “embed” a Python back-end in an AIR application?
added useful links.
Sep
21
answered Can I “embed” a Python back-end in an AIR application?
Sep
18
revised Code review conducted by an engineer who codes in a different language. Is it constructive?
A little addendum
Sep
18
answered Code review conducted by an engineer who codes in a different language. Is it constructive?
Sep
9
revised Trouble with simple Python Code
syntax correction
Sep
8
comment Trouble with simple Python Code
True, you can find discussion on this here: mail.python.org/pipermail/tutor/… 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.
Sep
8
accepted Trouble with simple Python Code
Sep
8
answered Trouble with simple Python Code
Sep
8
comment Can I dynamically call a LGPL/GPL software in my closed-source application?
In 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.
Sep
8
comment Can I dynamically call a LGPL/GPL software in my closed-source application?
What 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.
Sep
8
comment Can I dynamically call a LGPL/GPL software in my closed-source application?
Its 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).
Sep
4
comment add variables to tuple
You need not destruct the tuples after updating the db. If they go out of scope they should be garbage collected.
Sep
4
answered Changing company name…do we change namespaces?
Aug
10
awarded  Notable Question
Aug
2
awarded  Yearling
Jul
20
comment null pointer exception
Exactly what I would have said.
Jul
15
comment What college/university course(s) you wish you have taken more seriously?
UC Irvine we had them: most CS programs at Universities will have a compilers course.
Jul
8
awarded  Disciplined
Jul
7
comment An executable Python app
For that there are a few approaches I know of: you would likely write an installer in batch script or compiled for the target system which would drop the needed files someplace and install the needed libraries and runtimes in the process.
Jul
1
revised Why does Hibernate Validator @NotEmpty produce duplicate messages?
clarifying
Jul
1
comment Why does Hibernate Validator @NotEmpty produce duplicate messages?
You are right that it is better to use a custom constraint, but this does not work if you need to compare the runtime value of more than one property in the class in order to perform the validation. Annotations cannot do such a thing. One option is to try class level annotations, assuming you can override the property path to point to the field you are really validating...
Jul
1
comment Why does Hibernate Validator @NotEmpty produce duplicate messages?
Yyou would of course get two errors if you do both @NotNull and @NotEmpty, but that is not what I'm doing. I only annotate with the single constraint, for example: @NotNull(message = "foo"), and if it is processed via the extended class validator, I get two messages: "foo" and "may not be null"
Jul
1
awarded  Stellar Question
Jun
17
awarded  Notable Question
Jun
9
awarded  Tumbleweed