User Paul Tomblin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T21:49:30Zhttp://stackoverflow.com/feeds/user/3333http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1792023/thread-safe-map-for-java/1792037#17920371Answer by Paul Tomblin for thread safe map for javaPaul Tomblin2009-11-24T18:37:14Z2009-11-24T18:48:04Z<p>You can't initialize an object member variable in a static block. Static blocks are executed once when the class is first loaded, not once for every object of that class, whereas the variable "list" is created once for each object of the class.</p>
<p>Also, you can't instantiate a "new Map" because Map is an interface. You need to wrap the synchronizedMap around a real Map like a HashMap or a TreeMap.</p>
<pre><code> {
list = new java.util.Collections
.synchronizedMap(new HashMap<String, Client>());
}
</code></pre>
http://stackoverflow.com/questions/1027309/filemakerpro-equivalent-for-linux0FileMakerPro equivalent for Linux?Paul Tomblin2009-06-22T13:48:25Z2009-11-23T21:14:41Z
<p>I've got a possible client who has mocked up an application in FileMakerPro, shown it to me, and said "can you do this, but I want it to run on both Linux and Windows XP?" He wants this application to sell with hardware that he currently sells. The main page of the app basically has a normal form at the top with the result of one query (the "current job" information), then two tables with the results of other queries about the status of various components. </p>
<p>One thing he wants that he doesn't have in the mock up is the ability to respond to and generate external events - there is an external piece of equipment that closes a microswitch, and when that happens he wants to update one of the tables and update the results on the screen, and when certain updates happen on the database, he wants to turn on or off a warning light on the equipment. He also wants graphs of summaries of data from the database embedded on the screen (looking at the mock-up, I can't tell of the graphs he has are live or just static images he's put there to make it look like what he wants.) He's also concerned about security and put as a non-mandatory feature the ability to lock a copy to a particular machine.</p>
<p>I had a brief look at Kexi and Open Office Base, but I can't figure out if I can do even the basic main page functionality, never mind the graphs and the external events business. So I'm tempted to just quote him the price for me to develop a wxPython and MySQL app from scratch. Is there a better option? Can I do it with Base or Kexi?</p>
<p>(Also, suggestions on how to interface the external events would be appreciated. He wanted to just wire the microswitch into the F12 key on the keyboard and control the light by playing sounds through one channel to turn it on and one to turn it off, but that seems cheesy and cheap looking to me.)</p>
http://stackoverflow.com/questions/1785854/how-do-you-divide-integers-and-get-a-double-in-csharp/1785864#17858646Answer by Paul Tomblin for How do you divide integers and get a double in csharpPaul Tomblin2009-11-23T20:51:52Z2009-11-23T20:51:52Z<p>IT does the same in all C-like languages. If you divide two integers, the result is an integer. 0.73 is not an integer.</p>
<p>The common work-around is to multiply one of the two numbers by 1.0 to make it a floating point type, or just cast it.</p>
http://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-pl1Looking for a replacement for NMS FormMail.plPaul Tomblin2009-11-23T02:48:38Z2009-11-23T12:48:52Z
<p>I have a simple contact form that I knocked up in a few minutes using <a href="http://nms-cgi.sourceforge.net/scripts.shtml" rel="nofollow">NMS FormMail.pl</a>. But the customer has requested that I have a second email address entry field, and validation that kicks them back if the two addresses are different. I could add the validation to FormMail.pl, but before I do, I thought I'd ask if there is a better solution, if only because this might already be a solved problem, and also because nobody has modified FormMail.pl in 4+ years.</p>
<p>I know this server has perl and PHP, and maybe Python as well. I've also got Tomcat running, but a servlet seems like overkill for this.</p>
http://stackoverflow.com/questions/1780242/postgres-math-expression-calculcated-for-each-row-in-table/1780249#17802490Answer by Paul Tomblin for Postgres math expression calculcated for each row in tablePaul Tomblin2009-11-22T22:30:24Z2009-11-22T22:30:24Z<pre><code>select col1, col2/col3 from table;
</code></pre>
<p>Should work. Aren't col2 and col3 numeric?</p>
http://stackoverflow.com/questions/1776971/how-should-i-handle-inconsistent-objects-in-c/1776984#17769840Answer by Paul Tomblin for How should I handle Inconsistent Objects in C++?Paul Tomblin2009-11-21T22:23:46Z2009-11-21T22:23:46Z<p>The only way to do checking like that in the constructor is to throw an exception. But that's not considered good design - you should create it, check if it's valid, and delete it if it isn't.</p>
http://stackoverflow.com/questions/1775503/minimalistic-tools-for-developer-documentation/1775530#17755301Answer by Paul Tomblin for Minimalistic tools for developer documentationPaul Tomblin2009-11-21T13:46:55Z2009-11-21T13:46:55Z<p>On my last project, I used a TiddlyWiki kept in my Dropbox. Unfortunately the client hated it and insisted I turn it into a sequential Word document. Which she then proceeded to never read and bothered me with questions day after day after day. That's life as a consultant, I guess.</p>
http://stackoverflow.com/questions/1657222/palm-database-pdb-files-in-java1Palm Database (PDB) files in Java?Paul Tomblin2009-11-01T13:58:31Z2009-11-20T13:59:42Z
<p>Has anybody written any classes for reading and writing Palm Database (PDB) files in Java? (I mean on a server, not on the Palm device itself.) I tried to google, but all I got were Protein Data Bank references.</p>
<p>I wrote a Perl program that does it using Palm::PDB.pm, but I want to turn it into a servlet for a GWT app.</p>
http://stackoverflow.com/questions/1763895/is-it-advisable-to-lead-ones-career-away-from-the-microsoft-development-stack/1763921#17639211Answer by Paul Tomblin for Is it advisable to lead one's career away from the Microsoft development stack?Paul Tomblin2009-11-19T15:05:09Z2009-11-19T15:05:09Z<p>You should lead your career in whatever direction gives you the most pleasure. Being in the Microsoft world means a lot of jobs, but a lot of people competing for them. Being in the Linux world means fewer jobs, and fewer people competing for them.</p>
http://stackoverflow.com/questions/1760099/resultset-prematurely-closing/1760139#17601394Answer by Paul Tomblin for ResultSet prematurely closingPaul Tomblin2009-11-19T00:30:32Z2009-11-19T00:30:32Z<p>To quote the javadocs for Statement:</p>
<blockquote>
<p>By default, only one ResultSet object per Statement object can be open at the same time. Therefore, if the reading of one ResultSet object is interleaved with the reading of another, each must have been generated by different Statement objects. All execution methods in the Statement interface implicitly close a statment's current ResultSet object if an open one exists.</p>
</blockquote>
<p>Create two statements, or better yet use PreparedStatements with bound variables.</p>
http://stackoverflow.com/questions/1749531/help-on-typedefs-basic-c-c/1749574#17495740Answer by Paul Tomblin for help on typedefs - basic c/c++Paul Tomblin2009-11-17T15:18:21Z2009-11-17T16:36:51Z<p>The intent would be clearer if C syntax allowed it to be written as</p>
<pre><code>typedef GLfloat[2] vec2_t;
typedef GLfloat[3] vec3_t;
</code></pre>
<p>But that's not valid syntax.</p>
http://stackoverflow.com/questions/1247772/is-there-an-equivalent-of-java-util-regex-for-glob-type-patterns2Is there an equivalent of java.util.regex for "glob" type patterns?Paul Tomblin2009-08-08T02:13:58Z2009-11-13T09:58:24Z
<p>Is there a standard (preferably Apache Commons or similarly non-viral) library for doing "glob" type matches in Java? When I had to do similar in Perl once, I just changed all the "<code>.</code>" to "<code>\.</code>", the "<code>*</code>" to "<code>.*</code>" and the "<code>?</code>" to "<code>.</code>" and that sort of thing, but I'm wondering if somebody has done the work for me.</p>
<p>Similar question: <a href="http://stackoverflow.com/questions/445910/create-regex-from-glob-expression">http://stackoverflow.com/questions/445910/create-regex-from-glob-expression</a></p>
http://stackoverflow.com/questions/1722158/call-a-kohana-helper-from-cron-or-any-url/1722195#17221951Answer by Paul Tomblin for Call a Kohana helper from cron (or any URL)Paul Tomblin2009-11-12T13:33:11Z2009-11-12T13:33:11Z<p>Can't you just curl or wget the URL?</p>
http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688359#16883597Answer by Paul Tomblin for Why the name main for function main()Paul Tomblin2009-11-06T15:36:06Z2009-11-06T16:26:33Z<p>Because C did it, C++ retained it to be compatible, and Java did it to ease the transition from C++. Back in the early days of Java, employers often hired people who had C++ experience because it was so similar. Not like today where they want the new guy to have more Java experience than Gosling.</p>
<p>And lets not forgot that PL/1 used "procedure options main" for the same purpose. (Man, that's refreshing some memory cells that haven't been touched in a while!)</p>
http://stackoverflow.com/questions/1667211/gwt-cookies-getcookie-returns-null4GWT Cookies.getCookie returns "null"Paul Tomblin2009-11-03T13:00:54Z2009-11-05T17:22:35Z
<p><strong>Update</strong>: I tried clearing the created cookie in the browser and trying it again, and it didn't happen. Conceivably I set a cookie with the value "null" at some point.</p>
<p>(Ok, this is probably a retorical question, so I'm making it CW)</p>
<p>The documentation for Google Web Toolkit says this about Cookies.getCookie:</p>
<blockquote>
<p><strong>public static java.lang.String getCookie(java.lang.String name)</strong></p>
<p>Gets the cookie associated with the given name.</p>
<p>Parameters:</p>
<ul>
<li><strong>name</strong> - the name of the cookie to be retrieved</li>
</ul>
<p>Returns:</p>
<ul>
<li>the cookie's value, or null if the cookie doesn't exist</li>
</ul>
</blockquote>
<p>Well, I've just spent a number of hours beating my head against a wall because at least in the hosted mode browser (I haven't tested with a real browser yet), it doesn't return <em>null</em>, it returns <strong>"null"</strong>, ie the literal string, 4 characters long starting with "n".</p>
<p>Both null and "null" look remarkably similar if you print them out, but only one responds to a <code>if (cookie == null) Cookies.setCookie(cookie, newValue);</code></p>
<p>Is there any conceivable reason why Google did it this way, or is somebody just screwing me around?</p>
http://stackoverflow.com/questions/1680467/copying-some-strings-from-pointer-array-in-c/1680493#16804930Answer by Paul Tomblin for Copying some strings from pointer array in C++Paul Tomblin2009-11-05T13:14:22Z2009-11-05T13:31:54Z<pre><code>char newChar[] = new char[end-start+1]]
p = newChar;
while (start < end)
*p++ = *start++;
</code></pre>
http://stackoverflow.com/questions/1680487/file-handle-left-behind-by-c-code-in-linux/1680550#16805500Answer by Paul Tomblin for File handle left behind by C++ code in LinuxPaul Tomblin2009-11-05T13:22:42Z2009-11-05T13:22:42Z<p>You'll probably have to post some code. But here's a great trick for you - if you create a temporary file in Unix/Linux/Mac OS X, you can delete it IMMEDIATELY and you can still write to it, read it, etc, but as soon as you close it it will go away. It will also go away if some error kills your program before you get around to closing it.</p>
http://stackoverflow.com/questions/1658805/fortran-how-do-i-read-the-first-character-from-each-line-of-a-text-file/1658810#16588101Answer by Paul Tomblin for Fortran: How do I read the first character from each line of a text file?Paul Tomblin2009-11-01T23:43:43Z2009-11-01T23:43:43Z<p>Can you read with a FORMAT(A1)? It's been 20 years so I don't remember the exact syntax.</p>
http://stackoverflow.com/questions/1658181/designing-a-grid-overlay-based-on-longitudes-and-latitudes/1658193#16581931Answer by Paul Tomblin for Designing a grid overlay based on longitudes and latitudesPaul Tomblin2009-11-01T20:11:21Z2009-11-01T20:20:08Z<p>You do realize that because the earth is a sphere that "3 square km" is going to be a different number of degrees near the poles than near the equator, right? And that at the top and bottom of the map your grid squares will actually represent pie-shaped parts of the world, right?</p>
<p>I've done something similar with my database - I've broken it up into quad cells. So what I did was divide the earth into four quarters (-180,-90)-(0,0), (-180,0)-(0,90) and so on. As I added point entities to my database, if the "cell" got more than X entries, I split the cell into 4. That means that in areas of the world with lots of point entities, I have a lot of quad cells, but in other parts of the world I have very few.</p>
<p>My database for the quad tree looks like:</p>
<pre><code>\d areaids;
Table "public.areaids"
Column | Type | Modifiers
--------------+-----------------------------+-----------
areaid | integer | not null
supercededon | timestamp without time zone |
supercedes | integer |
numpoints | integer | not null
rectangle | geometry |
Indexes:
"areaids_pk" PRIMARY KEY, btree (areaid)
"areaids_rect_idx" gist (rectangle)
Check constraints:
"enforce_dims_rectangle" CHECK (ndims(rectangle) = 2)
"enforce_geotype_rectangle" CHECK (geometrytype(rectangle) = 'POLYGON'::text OR rectangle IS NULL)
"enforce_srid_rectangle" CHECK (srid(rectangle) = 4326)
</code></pre>
<p>I'm using PostGIS to help find points in a cell. If I look at a cell, I can tell if it's been split because supercededon is not null. I can find its children by looking for ones that have supercedes equal to its id. And I can dig down from top to bottom until I find the ones that cover the area I'm concerned about by looking for ones with supercedeson null and whose rectangle overlaps my area of interest (using the PostGIS '&' operator).</p>
http://stackoverflow.com/questions/1506027/tomcat-sometimes-chokes-on-my-new-war-file0Tomcat sometimes chokes on my new war filePaul Tomblin2009-10-01T19:42:57Z2009-11-01T20:02:50Z
<p>My build process builds and copies a .war file to $TOMCAT_HOME/webapps. 75% or more of the time, this works fine. But every now and then, the catalina.log file will show the following, and then all the apps deployed on Tomcat are totally stuck:</p>
<pre><code>Oct 1, 2009 3:33:30 PM org.apache.catalina.startup.HostConfig checkResources
INFO: Undeploying context [/lucidity]
Oct 1, 2009 3:33:30 PM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive lucidity.war
Oct 1, 2009 3:33:32 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
INFO: validateJarFile(/Users/ptomblin/apache-tomcat-6.0.20/webapps/lucidity/WEB-INF/lib/servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
Oct 1, 2009 3:33:32 PM org.apache.catalina.loader.WebappClassLoader loadClass
INFO: Illegal access: this web application instance has been stopped already. Could not load java.net.BindException. The eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact.
java.lang.IllegalStateException
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1273)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:399)
at com.mysql.jdbc.CommunicationsException.<init>(CommunicationsException.java:155)
at com.mysql.jdbc.MysqlIO.send(MysqlIO.java:2652)
at com.mysql.jdbc.MysqlIO.quit(MysqlIO.java:1345)
at com.mysql.jdbc.Connection.realClose(Connection.java:4784)
at com.mysql.jdbc.Connection.cleanup(Connection.java:2040)
at com.mysql.jdbc.Connection.finalize(Connection.java:3296)
at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
at java.lang.ref.Finalizer.runFinalizer(Finalizer.java:83)
at java.lang.ref.Finalizer.access$100(Finalizer.java:14)
at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.
</code></pre>
<p>Is there some other way I should be loading this WAR file into Tomcat?</p>
http://stackoverflow.com/questions/1506027/tomcat-sometimes-chokes-on-my-new-war-file/1658175#16581750Answer by Paul Tomblin for Tomcat sometimes chokes on my new war filePaul Tomblin2009-11-01T20:02:50Z2009-11-01T20:02:50Z<p>Well, I don't use that particular Tomcat server any more, and when I load the WAR file to my self-hosted tomcat, it sometimes gives that exception, but then it tries again and eventually loads it. I have no idea why the other Tomcat was like it was, but the hosting company evidently did some changes to it.</p>
http://stackoverflow.com/questions/1657529/building-website-graphics-with-gwt/1657552#16575521Answer by Paul Tomblin for building website graphics with GWTPaul Tomblin2009-11-01T16:15:42Z2009-11-01T16:15:42Z<p>For the second question, GWT uses tables because it has to translate the code into HTML and Javascript. Sure, they have containers, but they didn't implement those containers in Javascript, they just bung everything into tables. That's bad, because you end up with tables within tables within tables. It's good, however, because it means you can do some cool stuff with CSS to style those tables.</p>
http://stackoverflow.com/questions/1657345/grouping-objects-by-date-am-i-an-idiot/1657362#16573620Answer by Paul Tomblin for Grouping objects by date: am I an idiot?Paul Tomblin2009-11-01T14:54:34Z2009-11-01T14:54:34Z<p>You could do this using the Date as the key if you used a TreeMap and provided a Comparator that only compared the year, month and day and not the time.</p>
http://stackoverflow.com/questions/1657111/complicated-mysql-query-for-wordpress/1657139#16571390Answer by Paul Tomblin for Complicated MySQL Query For WordpressPaul Tomblin2009-11-01T13:07:01Z2009-11-01T13:07:01Z<p>Here's a slight variant of Amyam's where the join is implicit. I learnt it this way a long time ago, so it's probably the old fashioned way:</p>
<pre><code>select pm2.meta_value as movie_name
from wp_postmeta pm1, wp_postmeta pm2
where pm1.post_id = pm2.post_id AND
pm1.meta_key = 'type' AND pm1.meta_value = 'movie' AND
pm2.meta_key = 'name';
</code></pre>
http://stackoverflow.com/questions/1655387/java-binary-search-tree/1655545#16555450Answer by Paul Tomblin for java binary search treePaul Tomblin2009-10-31T20:33:04Z2009-10-31T20:33:04Z<p>A standard tree class will know its children, usually stuck in an array or Collection - in the case of a binary tree, you've only got two direct children, so a fixed sized array will work. Because of that, they usually implement some sort of "removeMe" method that the child calls to get removed from that list of children.</p>
<p>As mentioned above, this gets complicated if the child you are removing has children.</p>
http://stackoverflow.com/questions/1654882/basic-sed-question-for-linux/1654885#16548853Answer by Paul Tomblin for Basic SED question for LinuxPaul Tomblin2009-10-31T16:40:53Z2009-10-31T16:40:53Z<p>Because '.' is a regular expression that matches any character. You want <code>'s/\.//'</code></p>
http://stackoverflow.com/questions/1633727/using-gwt-with-a-database0Using GWT with a databasePaul Tomblin2009-10-27T21:13:24Z2009-10-28T22:31:14Z
<p>How can I configure the embedded Jetty that comes with GWT so that when I click the run button in Eclipse, my server application can access a postgresql database?</p>
http://stackoverflow.com/questions/1633727/using-gwt-with-a-database/1640557#16405570Answer by Paul Tomblin for Using GWT with a databasePaul Tomblin2009-10-28T22:31:14Z2009-10-28T22:31:14Z<p>Turned out that what I needed to do was to run the app on a Tomcat server on a different host (because the database I needed was too hard to bring over to the development machine for testing). I ended up using "ant war && scp Navaid.war foo:/www/tomcat/webapps/" to deploy the server side, and I modified the Eclipse run configuration for the project to</p>
<ul>
<li>unclick the "Run built-in server" on the "Main" tab</li>
<li><p>add the following options to "Program Arguments" on the "Arguments" tab</p>
<p>-noserver -whitelist "^http[:][/][/]foo[.]bar[.]com[:]8080"</p></li>
</ul>
<p>I also managed to modify build.xml so that "ant hosted" will run the hosted mode with the remote server. I found the "hosted" target, and the <arg> line that looks like:</p>
<pre><code><arg value="-startupUrl"/>
</code></pre>
<p>and added the following line before it:</p>
<pre><code><arg value="-noserver"/>
</code></pre>
<p>and changed the line after it from</p>
<pre><code><arg value="Navaid.html"/>
</code></pre>
<p>to</p>
<pre><code><arg value="http://foo.bar.com:8080/Navaid/Navaid.html"/>
</code></pre>
http://stackoverflow.com/questions/1638169/is-there-a-way-to-make-tomcat-start-an-app-up-as-soon-as-the-war-has-been-deploye0Is there a way to make Tomcat start an app up as soon as the WAR has been deployed?Paul Tomblin2009-10-28T15:52:47Z2009-10-28T17:03:37Z
<p>My app has a bit of expensive setup to do when it first starts up. It appears that as soon as I copy the WAR file in webapps, the log file says "Deploying web application archive Navaid.jar", but it doesn't actually run anything until I hit the URL. I'd rather than have the first person to hit the url endure the wait time for this start up. Is there an "onDeploy" method I could use or something to do that processing, or should I just have ant copy the file, wait a few seconds, and then wget the url?</p>
http://stackoverflow.com/questions/58886/drilling-down-in-visualvm2Drilling down in VisualVMPaul Tomblin2008-09-12T12:57:55Z2009-10-26T10:44:53Z
<p>I just installed Java 1.6_07 so I could try profiling with VisualVM. It tells me that my app is spending 60% of its time in <code>sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run</code> </p>
<p>How do I find out what it was doing during that time? How much of the time was it waiting for something to call it, or doing something else? What was calling it and what was it calling? I just can't seem to find any way to drill down to deeper levels like there is in Quantify or the Perl profiler.</p>
http://stackoverflow.com/questions/1787532/tcp-ip-illustrated-volume-2-richard-stevensComment by Paul Tomblin on TCP/IP illustrated Volume 2 Richard StevensPaul Tomblin2009-11-24T03:14:50Z2009-11-24T03:14:50ZI have urgent need to steal any and all intellectual property that you produce in your sorry life.http://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-pl/1781791#1781791Comment by Paul Tomblin on Looking for a replacement for NMS FormMail.plPaul Tomblin2009-11-23T12:47:54Z2009-11-23T12:47:54ZIt isn't the comparing that's the problem, it's then producing some sort of error page, etc.http://stackoverflow.com/questions/1780875/looking-for-a-replacement-for-nms-formmail-plComment by Paul Tomblin on Looking for a replacement for NMS FormMail.plPaul Tomblin2009-11-23T04:20:02Z2009-11-23T04:20:02Z@Ether, I've added a link.http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730Comment by Paul Tomblin on Does version control let you work simultaneously on two different versions of a project?Paul Tomblin2009-11-22T19:51:44Z2009-11-22T19:51:44ZIt entirely depends on how extensive the changes are, I think. If it's something that's going to take a few lines, sure, do it in conditional compilation. If it's a major new feature with dozens or hundreds of new classes, it should be a branch or something else that doesn't end up making your code hard to read and crowded with things that aren't used for the main product line.http://stackoverflow.com/questions/1779716/does-version-control-let-you-work-simultaneously-on-two-different-versions-of-a-p/1779730#1779730Comment by Paul Tomblin on Does version control let you work simultaneously on two different versions of a project?Paul Tomblin2009-11-22T19:44:06Z2009-11-22T19:44:06ZActually, people use branches to do this all the time. At one job I had, we had a branch of the main that included just the features that a particular client requested and paid for - any changes in main would get merged down to it, but nothing ever got merged up from it to main.http://stackoverflow.com/questions/1779164/where-did-foodscanner-get-its-initial-barcode-databaseComment by Paul Tomblin on Where did foodscanner get its initial barcode database?Paul Tomblin2009-11-22T16:32:11Z2009-11-22T16:32:11ZDid you try asking them?http://stackoverflow.com/questions/1777175/generate-javadoc-comments-in-eclipse/1777199#1777199Comment by Paul Tomblin on generate javadoc comments in eclipsePaul Tomblin2009-11-22T00:01:00Z2009-11-22T00:01:00ZWhat happens if you go to Preferences->Java->Code Templates and click "restore defaults"? Because I have code templates for comments that includes all the javadoc stuff.http://stackoverflow.com/questions/1777175/generate-javadoc-comments-in-eclipse/1777199#1777199Comment by Paul Tomblin on generate javadoc comments in eclipsePaul Tomblin2009-11-21T23:56:12Z2009-11-21T23:56:12ZIt's on my Eclipse, and the only extra things I've installed are Google Web Toolkit and FindBugs. (This is Ganymede, not Europa. Maybe you need to upgrade?)http://stackoverflow.com/questions/1776971/how-should-i-handle-inconsistent-objects-in-c/1776984#1776984Comment by Paul Tomblin on How should I handle Inconsistent Objects in C++?Paul Tomblin2009-11-21T23:28:51Z2009-11-21T23:28:51Z@Uncle, because a wrong file name is not "exceptional". I'd rather not incur the overhead of exception handling for something that is easily handled by calling a "isValid" method.http://stackoverflow.com/questions/1774095/how-do-i-search-for-a-string-in-an-array-of-strings-using-binarysearch-or-anotherComment by Paul Tomblin on How do I search for a String in an array of Strings using binarySearch or another method?Paul Tomblin2009-11-21T00:52:17Z2009-11-21T00:52:17ZHow the heck did you think it could do a binary search if the data you were searching wasn't sorted? How do you think a binary search works?http://stackoverflow.com/questions/1657222/palm-database-pdb-files-in-java/1770587#1770587Comment by Paul Tomblin on Palm Database (PDB) files in Java?Paul Tomblin2009-11-20T20:04:52Z2009-11-20T20:04:52ZI think this has what I need. Thanks very much.http://stackoverflow.com/questions/1765171/c-null-0x0-or-0Comment by Paul Tomblin on C++: NULL 0x0 or 0?Paul Tomblin2009-11-19T17:56:53Z2009-11-19T17:56:53ZYeah, I was more opining about the design of the language than suggesting you actually do it that way.http://stackoverflow.com/questions/1765171/c-null-0x0-or-0Comment by Paul Tomblin on C++: NULL 0x0 or 0?Paul Tomblin2009-11-19T17:47:13Z2009-11-19T17:47:13ZWho says you're supposed to use 0 instead of NULL? Personally, I think you should use "(void*)0".http://stackoverflow.com/questions/1760352/java-date-render-with-specific-daylight-modeComment by Paul Tomblin on Java Date, render with specific daylight modePaul Tomblin2009-11-19T01:36:23Z2009-11-19T01:36:23ZIt is mandatory on SO that whenever somebody asks a question about Dates in Java to mention Joda Time. I have no idea if it will do what you want, but it's mandatory.http://stackoverflow.com/questions/1760099/resultset-prematurely-closing/1760111#1760111Comment by Paul Tomblin on ResultSet prematurely closingPaul Tomblin2009-11-19T00:28:31Z2009-11-19T00:28:31ZSure you can. I do it all the time.