User Chris Serra - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:25:42Z http://stackoverflow.com/feeds/user/13435 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath 15 Setting multiple jars in java classpath Chris Serra 2008-10-20T19:32:45Z 2009-08-14T00:42:06Z <p>Is there a way to include all the jar files within a directory in the classpath?</p> <p>I'm trying <code>java -classpath lib/*.jar:. my.package.Program</code> and it is not able to find class files that are certainly in those jars. Do I need to add each jar file to the classpath separately? </p> http://stackoverflow.com/questions/616254/setting-up-svn-to-best-suit-dev-qa-prod 2 Setting up SVN to Best Suit Dev -> QA -> Prod Chris Serra 2009-03-05T19:24:36Z 2009-03-06T16:00:52Z <p>I'm sorry if this has already been asked, but I haven't been able to find an answer specific to this situation:</p> <p>For our web application, we have 3 systems: dev, QA, and production. Right now, a third party is maintaining the code, but soon it will be in our hands. We will have separate build environments for each stage. Also, we use RAD for code development, so there'll actually be a primary step, test/sandbox.</p> <p>Ideally, we'd like to somehow isolate repositories for each stage, such that we check out from DEV, make some changes, test them locally, and check them back into DEV. If everything is ok on Dev, we will check into QA, and so on.</p> <p>Should we have separate repositories for each, or would this fall under 'branching', where we'd have a separate branch for dev, QA, and prod. Could you also provide the best means of implementing whatever the ideal route is?</p> <p>Let me know if there are any other questions, also.</p> <p>Thanks Chris</p> http://stackoverflow.com/questions/465886/determining-which-submit-button-was-used 1 Determining which submit button was used? Chris Serra 2009-01-21T16:08:33Z 2009-01-21T19:50:49Z <p>Is it possible to determine which submit button was used? I have a confirmation form with 2 submit buttons. The first would confirm the order, do some DB tasks, then redirect. The second, which is a Cancel button, will just redirect to the same page, without doing any DB tasks.</p> <p>Is it possible in the servlet, preferably via the request object, to determine which submit button was used? I'd prefer not to be dependent on Javascript, as that is pretty simple, but will resort to it if the only possibility.</p> <p>Thanks.</p> http://stackoverflow.com/questions/374862/hibernate-locking-db2-file 0 Hibernate Locking DB2 File Chris Serra 2008-12-17T15:17:15Z 2008-12-17T15:17:15Z <p>We're using Hibernate in our Spring web app to do reads, as well as DML with a DB2 database. This problem only occurs during an update. If we blow away the lock on the DB2 side, it appears that any updates are not syncing with the database (even though I do session.flush() and session.clear() after an update is performed). This really becomes a problem with other web services/programs are trying to do DML on the file (BPEL processes as well as RPG). </p> <p>Anyone faced this problem, or know of why this may be occurring? Appreciate any insight.</p> <p>Thanks Chris</p> http://stackoverflow.com/questions/309254/best-java-mvc-framework-implementation-for-web-apps/309309#309309 1 Answer by Chris Serra for Best java mvc framework implementation for web apps Chris Serra 2008-11-21T16:18:54Z 2008-11-21T16:18:54Z <p>I've begun to use <a href="http://springframework.org" rel="nofollow">Spring</a> which is a great framework, but a lot of people rave about <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a>, especially since it appears to fulfill that minimalistic code requirement.</p> http://stackoverflow.com/questions/308924/how-to-use-a-oracle-function-for-the-id-in-hibernate/308978#308978 1 Answer by Chris Serra for How to use a Oracle function for the ID in Hibernate Chris Serra 2008-11-21T14:45:47Z 2008-11-21T16:03:46Z <p>Can you write a Java class that can fetch the value of the Oracle function? If so, you should be able to define that Java class as your <code>&lt;generator class&gt;</code> </p> <p><strong>Edit:</strong> To call an Oracle function from Java, see if this works for you: <a href="http://www.javabeat.net/tips/113-call-java-oracle-functions-from-java-program.html" rel="nofollow">Call Java Oracle Functions From Java program</a> and see the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/sql/CallableStatement.html" rel="nofollow">Java CallableStatement API</a></p> http://stackoverflow.com/questions/296245/what-do-you-put-on-your-cubicle-walls/309011#309011 0 Answer by Chris Serra for What do you put on your cubicle walls? Chris Serra 2008-11-21T14:56:58Z 2008-11-21T14:56:58Z <p>Just added <a href="http://www.codinghorror.com/blog/archives/000976.html" rel="nofollow">A Visual Explanation of SQL Joins</a></p> http://stackoverflow.com/questions/298988/how-to-handle-communication-link-failure 3 How to handle: Communication link failure Chris Serra 2008-11-18T15:06:00Z 2008-11-19T14:47:08Z <p>Hello,</p> <p>We're using Spring 2.5.4/Hibernate 3.2/Websphere Application Server 6.1.0.17. We've deployed the application on an AIX box. The next day when I come in, I try to log into the application. I get this exception on the page:</p> <p><code>Error 500: Request processing failed; nested exception is org.springframework.dao.DataAccessResourceFailureException: could not execute query; nested exception is org.hibernate.exception.JDBCConnectionException: could not execute query</code></p> <p>I checked the <a href="http://pastebin.com/f24fbcdf3" rel="nofollow">System.Out</a> logs and see further details. (Used pastebin because the log formatting was really screwing up the page layout)</p> <p><hr /></p> <p>The line of our code that is causing our exception is:</p> <pre><code>List loginList = getHibernateTemplate().find("from Login where storeId =" + id + " and password ='" + password + "'"); </code></pre> <p>We are wiring the connection in Spring's applicationContext.xml. We are aware that the connection on the AS400 drops at times (they may restart the system overnight--I'm not sure). However, we would preferably not want to open a new connection when we are wiring everything in the applicationContext. </p> <p>This problem occurs irregardless of using a DataSource/JNDI or JDBC</p> <p>Does anybody know of any settings to add to either Spring or Hibernate to check if the connection gets stale, and if so, drop it and create a new one? Or any other ideas to resolve this issue? Let me know if you need more information/code.</p> <p>Much appreciated,</p> <p>Chris</p> <h3>Update:</h3> <p>Checked out some posts on the Spring Community Forums and I've implemented my DataSource with commons-dbcp which has some properties like 'testWhileIdle' and 'validationQuery'. I'm going to leave the app running and check it again in the AM. Will post an update on the results.</p> <h3>Update#2:</h3> <p>Using dbcp-commons BasicDataSource seems to correct this issue, which appears to be a network problem. Websphere has pooled connections, and if there's a network issue on the AS400 side, it will try to use the connection it has, which it doesn't know is 'stale'. Using a validationQuery with a time interval is a cheap (but efficient) way to solve this problem--but there may be a better way on the Websphere side, under configuration. But, might as well not change what's not broken, so until this fails, it will probably be our solution going forward.</p> http://stackoverflow.com/questions/299485/cs-information-systems-degree-or-cs-math-science-degree/299605#299605 1 Answer by Chris Serra for CS Information Systems Degree or CS Math/Science Degree Chris Serra 2008-11-18T18:07:07Z 2008-11-18T18:07:07Z <p>In my opinion (and I may get voted down for this), business classes wont necessarily teach you how to run a business. When my brother was a consultant, he said when looking at applicants, they preferred those with a technical degree (the math/cs in this case) rather than an MIS/CIS degree because it's easier to teach a new employee the business end than the technical end.</p> <p>My advice: get the more technical degree, throw yourself out into the business world and lean some 'real-time' business skills. Then bust out, and start your own business when you feel you have gained some adequate experience.</p> <p>Just my two cents.</p> http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly 1 Java Not Converting String to Long Object Properly Chris Serra 2008-11-14T20:24:52Z 2008-11-15T16:12:38Z <p>We're using Spring/Hibernate on a Websphere Application Server for AIX. On my Windows machine, the problem doesn't occur--only when running off AIX. When a user logs in with an account number, if they prefix the '0' to their login ID, the application rejects the login. In the DB2 table, the column is of numeric type, and there shouldn't be a problem converting '090....' to '90...'</p> <p>Anyone else experience a problem like this? Both machines have Java v1.5.</p> <p>To be more specific, the flow is FormView -> LoginValidator -> LoginController</p> <p>In LoginValidator, the value of login is null with the prefixed 0. Without the 0, the value is what it should be (But again, this is only on the AIX environment--on 2 Windows environments it's fine). Here's the snippet of code where the object equals null..</p> <pre><code>public class LoginValidator implements Validator { public boolean supports(Class clazz) { return Login.class.equals(clazz); } @SuppressWarnings("all") public void validate(Object obj, Errors errors) { System.out.println("Inside LoginValidator"); Login login = (Login) obj; //null value System.out.println("Before conversion in Validator, store id = " + login.getStoreId()); } } </code></pre> <p>I've also written this short Java program for constructing a Long from a String, and using the java binary that is packaged with WebSphere</p> <pre><code>public class String2Long { public static void main(String[] args){ String a = "09012179"; String b = "9012179"; Long _a = new Long(a); Long _b = new Long(b); System.out.println(a + " =&gt; " + _a); //09012179 =&gt; 9012179 System.out.println(b + " =&gt; " + _b); //9012179 =&gt; 9012179 System.out.println("_a.equals(_b) " + _a.equals(_b)); //_a.equals(_b) true } } </code></pre> <p><a href="http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly#292709"><h1>SOLUTION</h1></a></p> http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly/292709#292709 1 Answer by Chris Serra for Java Not Converting String to Long Object Properly Chris Serra 2008-11-15T16:09:47Z 2008-11-15T16:09:47Z <p><h1>SOLUTION</H1></p> <p>A co-worker did some research on Spring updates, and apparently this error was correct in v. 2.5.3:</p> <blockquote> <p>CustomNumberEditor treats number with leading zeros as decimal (removed unwanted octal support while preserving hex)</p> </blockquote> <p>We were using Spring 2.0.5. We simply replaced the jars with Spring 2.5.4, and it worked as it should have!</p> <p>Thanks to everyone for your help/assistance. We will make use of Unit tests in the future, but this just turned out to be a Spring bug.</p> http://stackoverflow.com/questions/291031/jsp-cout-tag/291081#291081 0 Answer by Chris Serra for JSP <c:out> tag Chris Serra 2008-11-14T19:21:02Z 2008-11-14T19:21:02Z <p><code>c:out</code> also has an attribute for assigning a default value if the value of <code>person.name</code> happens to be null.</p> <p>Source: <a href="http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/c/out.html" rel="nofollow">out (TLDDoc Generated Documentation)</a></p> http://stackoverflow.com/questions/290535/best-way-to-find-next-form-input-element-in-jquery/290654#290654 0 Answer by Chris Serra for Best way to find "next" form input element in jQuery? Chris Serra 2008-11-14T16:28:58Z 2008-11-14T16:28:58Z <p>Or you could use the html attribute 'tabindex' which is for when a user tabs around a form, it goes to tabindex="i" to tabindex="i+1". You can use jQuery to get the attribute very easily. Would make for a nice fall back to users without javascript enabled, also.</p> http://stackoverflow.com/questions/281067/jquery-tooltip-not-working-in-ie/281315#281315 2 Answer by Chris Serra for jQuery tooltip not working in IE Chris Serra 2008-11-11T16:05:30Z 2008-11-11T16:05:30Z <p>I was able to test it fine in both FF3, IE6, and IE7. What problems are you experiencing? </p> <p>I did receive one bug in Firebug however:</p> <pre> fn.call is not a function jquery-1.2.6.js Line 2295 jQuery.readyList.push( function() { return fn.call(this, jQuery); } ); </pre> <p>Which led me to change your $(document).ready function to:</p> <pre> $(document).ready(function(){ setTimeout("tooltip()", 500) }); </pre> <p>Not sure if that will solve your problem, but give it a try.</p> http://stackoverflow.com/questions/230763/getting-template-text-from-freemarker-in-spring-app/230849#230849 4 Answer by Chris Serra for Getting template text from FreeMarker in Spring app Chris Serra 2008-10-23T18:23:43Z 2008-10-23T19:36:41Z <h2>Something like this should work</h2> <h3>Before the code you provided, initialize:</h3> <p><code></p> <pre><code>MailSender mailSender = new MailSender(); SimpleMailMessage message = new SimpleMailMessage(); </code></pre> <p></code></p> <h3>Then, after your code, add:</h3> <p><code></p> <pre><code>StringBuffer content = new StringBuffer(); try { content.append(FreeMarkerTemplateUtils.processTemplateIntoString( configuration.getTemplate(templateName),templateVars)); } catch (IOException e) { } catch (TemplateException e) { } message.setFrom(getMailFromName() + " &lt;" + getMailFromAddr() + "&gt;"); message.setTo(getMailTo()); if(getCcTo()!=null) message.setCc(getCcTo()); message.setSubject(getSubject()); message.setText(content.toString()); mailSender.send(message); </code></pre> <p></code></p> <h3>Here's my applicationContext.xml:</h3> <p><code></p> <pre><code>&lt;bean id="freemarkerMailConfiguration" class="org.springframework.ui.freemarker.FreeMarkerConfigurationFactoryBean"&gt; &lt;property name="templateLoaderPath" value="/WEB-INF"&gt;&lt;/property&gt; &lt;/bean&gt; &lt;bean id="yourEmailServiceClass" class="YourEmailServiceClass"&gt; &lt;property name="mailSender" ref="mailSender"&gt;&lt;/property&gt; &lt;property name="freemarkerMailConfiguration" ref="freemarkerMailConfiguration"&gt;&lt;/property&gt; &lt;property name="freemarkerTemplate" value="email.ftl"&gt;&lt;/property&gt; &lt;property name="mailFromName" value="John Q. Programmer"&gt;&lt;/property&gt; &lt;property name="mailFromAddr" value="john.q.programmer@mail.com"&gt;&lt;/property&gt; &lt;property name="subject" value="Email Subject"&gt;&lt;/property&gt; &lt;/bean&gt; </code></pre> <p></code></p> <h3>And your caching question...</h3> <p>I've only seen a bean property 'cache' in a 'viewResolver' bean, which you said you won't be using.</p> <p>See also: <a href="http://static.springframework.org/spring/docs/2.0.x/reference/view.html" rel="nofollow">Chapter 14. Integrating view technologies</a></p> http://stackoverflow.com/questions/212302/how-to-remove-classpath-variables-from-was-module 0 How to remove classpath variables from WAS module Chris Serra 2008-10-17T14:10:37Z 2008-10-21T12:11:13Z <p>On our Dev box, our application module contains references to the <code>file:/apps/WebSphere61/systemApps/isclite.ear/</code> jar files and classpath entries. On our Prod box, however, it only contains the jar file containing all of our required classes. On Dev, this is causing a problem when using apache-commons-fileuploader as these classes are also references in the systemApps jar. How can we remove the systemApps library references from our application module's classpath?</p> <p>Websphere Application Server 6.1.0.17</p> http://stackoverflow.com/questions/220772/complex-height-in-css/220778#220778 1 Answer by Chris Serra for Complex height in CSS Chris Serra 2008-10-21T04:41:03Z 2008-10-21T04:41:03Z <p>This looks like your <a href="http://www.xs4all.nl/~peterned/examples/csslayout1.html" rel="nofollow">ticket</a></p> http://stackoverflow.com/questions/205069/websphere-app-server-not-compiling-jsp-tag-libs 0 WebSphere App Server Not Compiling JSP/Tag Libs Chris Serra 2008-10-15T15:04:38Z 2008-10-15T18:49:04Z <p>Hello</p> <p>This is a problem that only occurs on application update (only tested through Admin Console, not CLI). Also, this is only happening on our development environment, which is identical to our prod env. On uninstall/install, everything is compiled properly. However, this is a large application and it takes long enough to do an update--we do not want to uninstall/install everytime (esp. during dev. builds). </p> <p>JSP .java and .smap files are being generated, but not .class. On prod, there is no .smap--only .java and .class. If the JSPs would compile, we believe the tag libs would be compiled also. </p> <p>Has anyone faced this problem, or know what we are possibly overlooking?</p> <p>WAS Version: 6.1.0.17</p> <p>Thanks a lot!</p> <p><strong>EDIT:</strong> This is only happening for one JSP and the tag library its using. We're trying to trouble shoot the issue. Let you know if we figure anything out. We think it may be an issue with the .SMAP file per <a href="http://www-01.ibm.com/support/docview.wss?rs=180&amp;uid=swg1PK68395" rel="nofollow">this fix</a></p> <p><a href="http://stackoverflow.com/questions/205069/websphere-app-server-not-compiling-jsptag-libs#205906"><h2>SOLUTION</h2></a></p> http://stackoverflow.com/questions/205069/websphere-app-server-not-compiling-jsp-tag-libs/205906#205906 2 Answer by Chris Serra for WebSphere App Server Not Compiling JSP/Tag Libs Chris Serra 2008-10-15T18:42:28Z 2008-10-15T18:42:28Z <h1>Solution:</h1> <p><strong>Problem was</strong>: WAS had debugging enabled. This generated .smap files (source mappings) instead of .class files. Once we discovered this, we disabled the debugging service under the Admin Console (Application Servers > server1 > Debugging Processes > uncheck 'Start service'). I don't know why this created a bug upon an update only, but, whatever the case, the problem is solved.</p> http://stackoverflow.com/questions/205179/what-is-a-docvariable-in-word/205210#205210 1 Answer by Chris Serra for What is a DOCVARIABLE in word. Chris Serra 2008-10-15T15:38:48Z 2008-10-15T15:38:48Z <blockquote> <p>You can use the Microsoft Visual Basic for Applications Variables collection to set and retrieve the contents of a string variable in a Word document or template.</p> <p>Also, you can use the DocVariable field to retrieve the value of a document variable after it has been set to display within a Word document. </p> </blockquote> <p>Source: <a href="http://support.microsoft.com/kb/306281" rel="nofollow">How to store and retrieve variables in Word documents</a></p> <pre><code>Sub GetSetDocVars() Dim fName As String fName = "Jeff Smith" ' Set contents of variable "fName" in a document using a document ' variable called "FullName". ActiveDocument.Variables.Add Name:="FullName", Value:=fName ' Retrieve the contents of the document variable. MsgBox ActiveDocument.Variables("FullName").Value End Sub </code></pre> http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202766#202766 31 Answer by Chris Serra for Is there a human readable programming language? Chris Serra 2008-10-14T20:53:44Z 2008-10-15T14:57:39Z <p>AppleScript is pretty close to that, though that is obviously platform dependent.</p> <p>Here's a script for opening iTunes and playing a playlist</p> <pre><code>tell application "iTunes" activate play playlist "Party Shuffle" end tell </code></pre> <p>Source: <a href="http://sial.org/code/applescript/" rel="nofollow">AppleScript Examples</a></p> http://stackoverflow.com/questions/198153/why-does-the-css-min-width-attribute-not-force-a-div-to-have-the-specified-minimu/198165#198165 5 Answer by Chris Serra for Why does the CSS min-width attribute not force a div to have the specified minimum width? Chris Serra 2008-10-13T16:22:52Z 2008-10-13T16:22:52Z <p>If you provide absolute positioning to the element, it will be 50% in FF. However, IE doesn't like the min-width or min-height attributes, so you will have to define width as 50% also for it to work in IE.</p> http://stackoverflow.com/questions/198058/is-necessary-to-show-an-empty-div/198100#198100 0 Answer by Chris Serra for Is   necessary to show an empty <div>? Chris Serra 2008-10-13T16:01:44Z 2008-10-13T16:18:12Z <p>From experience, IE won't render borders of empty elements (at least empty &lt;td&gt; elements)</p> http://stackoverflow.com/questions/179617/strange-hibernate-cache-issue 1 Strange Hibernate Cache Issue Chris Serra 2008-10-07T17:52:00Z 2008-10-07T19:40:25Z <p>Hello</p> <p>We are using Hibernate 3.1 with Spring MVC 2.0. Our problem occurs when data is updated on the database directly (not in the application). We use a Filter to filter a collection of results by whether the orders are opened or closed. If we change an order on the DB to be closed, the filter returns the correct list, however, the object's status does not change. </p> <ul> <li>We do not have second-level or query caching enabled.</li> <li>The retrieval of the collection from the DB is via Hibernate's Session.createQuery. </li> <li>Also, we have one SessionFactory wired, and using one Session throughout the application. </li> </ul> <p>The only time the object displays the correct status result is when the server is restarted--which we'd prefer not to have to do on a regular basis. Please offer any insight, and if any other information is required, please ask.</p> <p>Thanks!</p> http://stackoverflow.com/questions/168736/how-do-you-set-a-default-value-for-a-mysql-datetime-column/168753#168753 0 Answer by Chris Serra for How do you set a default value for a MySQL Datetime column? Chris Serra 2008-10-03T20:28:20Z 2008-10-03T20:28:20Z <p>NOW()</p> <p><a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html" rel="nofollow">MySQL :: MySQL 5.0 Reference Manual :: 11.6 Date and Time Functions</a></p> http://stackoverflow.com/questions/102640/css-margin-collapsing/102736#102736 1 Answer by Chris Serra for CSS Margin Collapsing Chris Serra 2008-09-19T15:20:08Z 2008-09-19T15:20:08Z <blockquote> <p>"the expression collapsing margins means that adjoining margins (no non-empty content, padding or border areas or clearance separate them) of two or more boxes (which may be next to one another or nested) combine to form a single margin."</p> </blockquote> <p>Source: <a href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins" rel="nofollow">Box Model - 8.3.1 Collapsing margins</a></p> http://stackoverflow.com/questions/96795/what-are-the-best-books-for-spring-and-spring-mvc/96825#96825 4 Answer by Chris Serra for What are the best books for Spring and Spring MVC? Chris Serra 2008-09-18T20:52:47Z 2008-09-18T20:52:47Z <p><a href="http://rads.stackoverflow.com/amzn/click/1933988134" rel="nofollow">"Manning Spring in Action 2nd Edition"</a></p> <p>Covers a wide range on the Spring framework. Lots of good insight.</p> http://stackoverflow.com/questions/95458/does-anyone-still-code-using-notepad/95511#95511 0 Answer by Chris Serra for Does anyone still code using "notepad" ? Chris Serra 2008-09-18T18:41:38Z 2008-09-18T18:41:38Z <p>In college, the Java course I took was instructed using TextPad for Windows. I enjoyed the simplicity of it, and it definitely helps students learn more about a language without auto-complete and other dynamic error checkers. Plus, its very light weight and with syntax definitions, its not as painful as using Notepad. Just add the Java executables to a hot key and you're ready to roll! For simple HTML/CSS modifications, I'll opt for TextPad also.</p> http://stackoverflow.com/questions/93171/non-breaking-non-space-in-html/93237#93237 0 Answer by Chris Serra for Non-breaking non-space in HTML Chris Serra 2008-09-18T14:48:02Z 2008-09-18T14:48:02Z <p>Try it with the <code>&lt;div&gt;</code> tag on the same line as <code>&lt;td&gt;...&lt;/td&gt;</code></p> http://stackoverflow.com/questions/93097/is-object-oriented-modeling-different-from-object-oriented-programming/93131#93131 3 Answer by Chris Serra for Is Object-Oriented Modeling different from Object-Oriented Programming? Chris Serra 2008-09-18T14:38:26Z 2008-09-18T14:38:26Z <p>I'd say the modeling precludes the programing, where the modeling is the physical design, before the programming is implemented.</p> <p><a href="http://en.wikipedia.org/wiki/Object-Oriented_Modeling" rel="nofollow">http://en.wikipedia.org/wiki/Object-Oriented_Modeling</a></p> <p><a href="http://en.wikipedia.org/wiki/Object_oriented_programming" rel="nofollow">http://en.wikipedia.org/wiki/Object_oriented_programming</a></p> http://stackoverflow.com/questions/616254/setting-up-svn-to-best-suit-dev-qa-prod/618138#618138 Comment by Chris Serra on Setting up SVN to Best Suit Dev -> QA -> Prod Chris Serra 2009-03-06T14:01:44Z 2009-03-06T14:01:44Z Does trunk then reflect PROD? http://stackoverflow.com/questions/606910/image-loop-only-returns-one-image-but-should-return-them-all Comment by Chris Serra on Image loop only returns one image but should return them all Chris Serra 2009-03-03T16:00:16Z 2009-03-03T16:00:16Z is $results supposed to be an array of arrays? http://stackoverflow.com/questions/505772/which-tools-should-no-php-web-developer-live-without/505796#505796 Comment by Chris Serra on Which tools should no PHP/Web developer live without? Chris Serra 2009-02-03T18:43:58Z 2009-02-03T18:43:58Z For an FTP, check out Transmit FTP or the Coda IDE, which has the Transmit app built within it. Has a 'Synchronize' option which will sync both local and remote locations. http://stackoverflow.com/questions/465886/determining-which-submit-button-was-used/465915#465915 Comment by Chris Serra on Determining which submit button was used? Chris Serra 2009-01-21T16:21:40Z 2009-01-21T16:21:40Z Thanks for your input. http://stackoverflow.com/questions/465886/determining-which-submit-button-was-used/465908#465908 Comment by Chris Serra on Determining which submit button was used? Chris Serra 2009-01-21T16:20:54Z 2009-01-21T16:20:54Z Thanks. Kind of thought that'd be the case, but just thought I'd ask ahead of time. http://stackoverflow.com/questions/429748/good-programming-audiobook/429764#429764 Comment by Chris Serra on Good programming audiobook Chris Serra 2009-01-09T21:16:44Z 2009-01-09T21:16:44Z That's <a href="http://www.javaposse.com/" rel="nofollow">javaposse.com</a> http://stackoverflow.com/questions/423403/what-are-the-tell-tale-signs-in-an-interview-that-a-developer-is-not-competent/423559#423559 Comment by Chris Serra on What are the tell-tale signs in an interview that a developer is not competent? Chris Serra 2009-01-08T15:52:39Z 2009-01-08T15:52:39Z I pity those candidates. That's a hell of a lot of code to go through, especially in an interview. http://stackoverflow.com/questions/400256/how-can-i-draw-a-box-using-css-like-the-answer-box-in-stackoverflow/400410#400410 Comment by Chris Serra on How can i draw a box using css like the answer box in stackoverflow? Chris Serra 2008-12-30T15:03:56Z 2008-12-30T15:03:56Z Thanks for that tip :) http://stackoverflow.com/questions/359625/most-elegant-way-to-detect-if-a-string-is-a-number Comment by Chris Serra on Most elegant way to detect if a String is a number? Chris Serra 2008-12-11T14:58:39Z 2008-12-11T14:58:39Z That's the way I've done things when user input is required to be a number. Never came across anything else however. http://stackoverflow.com/questions/318715/help-me-work-around-these-two-ie6-layout-bugs Comment by Chris Serra on Help me work around these two IE6 layout bugs Chris Serra 2008-11-25T20:29:21Z 2008-11-25T20:29:21Z FYI, First Bug renders same in IE7 as it does in FF3 on Windows. Couldn't check out the Second bug link since our Firewall is classifying the site as 'pornography' :P http://stackoverflow.com/questions/298863/how-to-split-an-arraylist-into-equal-sized-chunks-in-java Comment by Chris Serra on How to split an ArrayList into equal sized chunks in Java? Chris Serra 2008-11-18T14:50:22Z 2008-11-18T14:50:22Z Are they providing you with a fixed number of sets, or is that up to you? http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly Comment by Chris Serra on Java Not Converting String to Long Object Properly Chris Serra 2008-11-14T22:20:43Z 2008-11-14T22:20:43Z What would you suggest I do for debugging? Can I just startup the Application Server in debug mode? http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly Comment by Chris Serra on Java Not Converting String to Long Object Properly Chris Serra 2008-11-14T21:48:50Z 2008-11-14T21:48:50Z @Jon Skeet: What's in the comments adjacent to the System.Outs is the output on AIX http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly Comment by Chris Serra on Java Not Converting String to Long Object Properly Chris Serra 2008-11-14T21:48:18Z 2008-11-14T21:48:18Z @matt b: We are using Spring validation. It is bypassing binding the Command object to the POJO and there it's outputting null in the Validation class. It is Java 5 on both machines, and WAS 6.1. http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly Comment by Chris Serra on Java Not Converting String to Long Object Properly Chris Serra 2008-11-14T20:50:02Z 2008-11-14T20:50:02Z I'm not sure if its even coming in as a String. It's an implicit conversion of the fields values (username, password) to the Login POJO, where username is of type Long.