User Paul Tomblin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T00:43:20Zhttp://stackoverflow.com/feeds/user/3333http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1657222/palm-database-pdb-files-in-java0Palm Database (PDB) files in Java?Paul Tomblin2009-11-01T13:58:31Z2009-11-08T21:55:00Z
<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/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/1621575/how-do-i-properly-invoke-a-subroutine-that-takes-2-subroutine-references/1621601#16216011Answer by Paul Tomblin for How do I properly invoke a subroutine that takes 2 subroutine references?Paul Tomblin2009-10-25T18:14:52Z2009-10-25T18:14:52Z<p>I've got the following code in one of my programs:</p>
<pre><code>sub generate($$$$)
{
my ($paramRef, $waypointCodeRef, $headerRef,
$debugCodeRef) = @_;
...
&$headerRef();
...
my $used = &$waypointCodeRef(\%record);
</code></pre>
<p>And I call it with</p>
<pre><code>CreateDB::generate(\%param, \&wayPointCode, \&doHeader, \&debugCode);
</code></pre>
http://stackoverflow.com/questions/1621457/about-ip-0-0-0-0django/1621487#162148710Answer by Paul Tomblin for About IP 0.0.0.0(django)Paul Tomblin2009-10-25T17:31:13Z2009-10-25T17:31:13Z<p>0.0.0.0:80 is a shortcut meaning "bind to all IP addresses this computer supports". 127.0.0.1:80 makes it bind only to the "lo" or "loopback" interface. If you have just one NIC with just one IP address, you could bind to it explicitly with, say, "192.168.1.1:80" (if 192.168.1.1 was your IP address), or you could list all the IPs your computer responds to, but 0.0.0.0:80 is a shortcut for that.</p>
http://stackoverflow.com/questions/1600481/go-to-a-new-page-but-still-have-gwt-variables0Go to a new page, but still have GWT variables?Paul Tomblin2009-10-21T12:28:14Z2009-10-23T16:45:30Z
<p>In GWT, I would like to do something like a form submission that takes me to a new page, with new style sheet and new static elements, and when I get there, be able to extract the values of GWT variables still in GWT. In other words, I want to do most of the form processing on the client side instead of sending it to a servlet to be processed and sent back. Is that possible? Would FormPanel allow me to do that? How do I access the contents of the form fields in GWT on the new page?</p>
http://stackoverflow.com/questions/1611004/as-a-software-engineer-what-would-you-look-for-in-a-software-company-before-join/1611008#16110083Answer by Paul Tomblin for As a Software Engineer, what would you look for in a Software Company before joining it ?Paul Tomblin2009-10-23T01:48:44Z2009-10-23T01:48:44Z<p>Capitalization, or at least a good chance of getting some.</p>
http://stackoverflow.com/questions/1592012/running-a-command-in-shell-script/1592036#15920368Answer by Paul Tomblin for Running a command in shell scriptPaul Tomblin2009-10-20T01:36:35Z2009-10-20T01:36:35Z<p>%foo% is not how you do command substitution in a bourne/BASH shell script. I assume you're running this from a Windows command line, which is why it works when you run it directly. Try using proper bourne syntax:</p>
<pre><code>${JAVA_HOME}/bin/java -jar umar.jar
</code></pre>
http://stackoverflow.com/questions/1584650/powerbook-compiler-queries/1584668#15846682Answer by Paul Tomblin for Powerbook compiler queriesPaul Tomblin2009-10-18T11:39:51Z2009-10-18T11:39:51Z<p>The Powerbook can't do Java 1.6. That might be a problem for you. You also can't do iPhone development on it. Other than that, once it's maxed out on RAM it's a pretty decent development environment.</p>
http://stackoverflow.com/questions/1582330/the-difference-between-hit-enter-and-hit-the-enter-key/1582348#158234811Answer by Paul Tomblin for The difference between "hit enter" and "hit the enter key".Paul Tomblin2009-10-17T14:45:57Z2009-10-17T14:45:57Z<p>I'd say "Press the enter key", since saying "hit" will get a certain type of user needing to replace their keyboards fairly frequently.</p>
http://stackoverflow.com/questions/1582215/java-nullpointerexception/1582227#15822275Answer by Paul Tomblin for Java NullPointerExceptionPaul Tomblin2009-10-17T13:35:31Z2009-10-17T13:35:31Z<p>You never actually created the ArrayList. You need</p>
<pre><code>private ArrayList huutokaupat = new ArrayList();
</code></pre>
http://stackoverflow.com/questions/1582161/how-does-a-preparedstatement-avoid-or-prevent-sql-injection/1582192#15821923Answer by Paul Tomblin for How does a PreparedStatement avoid or prevent SQL injection?Paul Tomblin2009-10-17T13:14:18Z2009-10-17T13:14:18Z<p>Consider two ways of doing the same thing:</p>
<pre><code>Statement stmt = conn.createStatement("INSERT INTO students VALUES('" + user + "')");
stmt.execute();
</code></pre>
<p>Or</p>
<pre><code>Statement stmt = conn.prepareStatement("INSERT INTO student VALUES(?)");
stmt.setString(1, user);
stmt.execute();
</code></pre>
<p>If "user" came from user input and the user input was</p>
<pre><code>Robert'); DROP TABLE students; --
</code></pre>
<p>Then in the first instance, you'd be hosed. In the second, you'd be safe and Little Bobby Tables would be registered for your school.</p>
http://stackoverflow.com/questions/868568/cpu-bound-and-i-o-bound/868596#8685961Answer by Paul Tomblin for CPU bound and I/O bound?Paul Tomblin2009-05-15T13:10:22Z2009-10-17T12:54:22Z<p>When your program is waiting for <a href="http://en.wikipedia.org/wiki/Input/output" rel="nofollow">I/O</a> (ie. a disk read/write or network read/write etc), the CPU is free to do other tasks even if your program is stopped. The speed of your program will mostly depend on how fast that IO can happen, and if you want to speed it up you will need to speed up the I/O.</p>
<p>If your program is running lots of program instructions and not waiting for I/O, then it is said to be CPU bound. Speeding up the CPU will make the program run faster.</p>
<p>In either case, the key to speeding up the program might not be to speed up the hardware, but to optimize the program to reduce the amount of IO or CPU it needs, or to have it do I/O while it also does CPU intensive stuff.</p>
http://stackoverflow.com/questions/1565843/objects-in-java-reference-or-value/1565855#15658552Answer by Paul Tomblin for Objects in Java Reference or ValuePaul Tomblin2009-10-14T12:07:13Z2009-10-14T12:07:13Z<p>It actually changes the value in the hash table. Note that if what you're doing changes a key object's hashCode or equals return values, you could be in a world of hurt. Changing just the hash table's value, on the other hand, is usually ok.</p>
http://stackoverflow.com/questions/1560162/executing-the-command-instead-of-printing/1560180#15601802Answer by Paul Tomblin for Executing the command instead of printingPaul Tomblin2009-10-13T13:14:28Z2009-10-13T13:14:28Z<pre><code>mysqlshow -uroot -pPassWord | awk '{print "mysqlshow -uroot -pPassWord --count", $2;} | sh
</code></pre>
http://stackoverflow.com/questions/1694164/is-errno-thread-safe/1694170#1694170Comment by Paul Tomblin on Is `errno` thread-safe? Paul Tomblin2009-11-07T19:49:00Z2009-11-07T19:49:00ZMan, that would have saved a lot of hassle back in my day.http://stackoverflow.com/questions/1694164/is-errno-thread-safe/1694170#1694170Comment by Paul Tomblin on Is `errno` thread-safe? Paul Tomblin2009-11-07T19:43:48Z2009-11-07T19:43:48ZReally? When did they do that? When I was doing C programming, trusting errno was a big problem.http://stackoverflow.com/questions/1692965/what-is-meant-by-business-system-interface-persistence-classesComment by Paul Tomblin on what is meant by Business,System,Interface,Persistence classes?Paul Tomblin2009-11-07T13:06:59Z2009-11-07T13:06:59ZAsk your teacher.http://stackoverflow.com/questions/1688201/is-it-possible-to-create-binaries-for-other-platform-on-linuxComment by Paul Tomblin on Is it possible to create binaries for other platform on Linux?Paul Tomblin2009-11-06T15:14:57Z2009-11-06T15:14:57ZI worked at a place that made routers that used Intel i960(?) chips, and cross compiled the code using a gcc cross compilerhttp://stackoverflow.com/questions/1682949/what-is-the-advantage-of-using-base64-encode/1682961#1682961Comment by Paul Tomblin on What is the advantage of using base64 encode?Paul Tomblin2009-11-05T19:31:23Z2009-11-05T19:31:23ZMostly 7 bit because the 8th bit was used for parity on many serial transmission protocols.http://stackoverflow.com/questions/1680467/copying-some-strings-from-pointer-array-in-c/1680493#1680493Comment by Paul Tomblin on Copying some strings from pointer array in C++Paul Tomblin2009-11-05T17:58:42Z2009-11-05T17:58:42Z@Sid, not one of the other answers showed the entire lifecycle of the variable, so why are you slamming on just mine?http://stackoverflow.com/questions/1667211/gwt-cookies-getcookie-returns-null/1672608#1672608Comment by Paul Tomblin on GWT Cookies.getCookie returns "null"Paul Tomblin2009-11-05T16:26:42Z2009-11-05T16:26:42ZThis happened before I had the setCookie code in there - I just wondered why my "cookie generation" code wasn't getting executed. Unfortunately it only seems to happen on the Hosted Mode browser, and I don't know how to clear cookies on that browser to test the problem.http://stackoverflow.com/questions/1680467/copying-some-strings-from-pointer-array-in-c/1680478#1680478Comment by Paul Tomblin on Copying some strings from pointer array in C++Paul Tomblin2009-11-05T14:09:31Z2009-11-05T14:09:31Z@ndim - we've already established that start and end are pointers within a C string, so therefore there can't be a 0 byte anywhere except at the end.http://stackoverflow.com/questions/1680467/copying-some-strings-from-pointer-array-in-c/1680493#1680493Comment by Paul Tomblin on Copying some strings from pointer array in C++Paul Tomblin2009-11-05T14:08:24Z2009-11-05T14:08:24Z@pxb, you always have to delete the memory once you're done with it. The question wasn't about the full life cycle of the variable, just how to create it.http://stackoverflow.com/questions/1680467/copying-some-strings-from-pointer-array-in-c/1680493#1680493Comment by Paul Tomblin on Copying some strings from pointer array in C++Paul Tomblin2009-11-05T13:32:42Z2009-11-05T13:32:42Z@Sid, if you delete it, then you don't have the string any more.http://stackoverflow.com/questions/1673538/is-parallel-processing-actually-possibleComment by Paul Tomblin on Is parallel processing actually possible ?Paul Tomblin2009-11-04T12:44:31Z2009-11-04T12:44:31ZSeems more like a question about computer design than programming.http://stackoverflow.com/questions/1667211/gwt-cookies-getcookie-returns-null/1670318#1670318Comment by Paul Tomblin on GWT Cookies.getCookie returns "null"Paul Tomblin2009-11-03T21:49:47Z2009-11-03T21:49:47ZMy point was that I didn't set a cookie, and getCookie was returning the string "null" instead of a real null value like the documentation implied strongly.http://stackoverflow.com/questions/461737/eidetic-memory-what-magic-numbers-you-still-remember/461763#461763Comment by Paul Tomblin on Eidetic memory: What magic numbers you still remember?Paul Tomblin2009-11-03T03:25:31Z2009-11-03T03:25:31ZI just remembered why I wrote "sys" there. I was thinking of "sys 49152" from the Commodore 64.http://stackoverflow.com/questions/1657222/palm-database-pdb-files-in-java/1659789#1659789Comment by Paul Tomblin on Palm Database (PDB) files in Java?Paul Tomblin2009-11-03T01:20:18Z2009-11-03T01:20:18ZThe only java reader I can find turns out to be a C program written in Java. Ie. all the code was in main or in a couple of static methods. No class structure at all.http://stackoverflow.com/questions/1658805/fortran-how-do-i-read-the-first-character-from-each-line-of-a-text-fileComment by Paul Tomblin on Fortran: How do I read the first character from each line of a text file?Paul Tomblin2009-11-01T23:42:29Z2009-11-01T23:42:29ZOMG, you're writing Fortran? You poor, poor, bastard.