User Aaron Digulla - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:25:17Z http://stackoverflow.com/feeds/user/34088 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1927746/how-to-determine-the-number-of-signals-pending-in-the-unix-signal-queue-linux/1927811#1927811 2 Answer by Aaron Digulla for how to determine the number of signals pending in the unix signal queue (Linux) Aaron Digulla 2009-12-18T11:58:34Z 2009-12-21T08:23:21Z <p>I'm not aware of such an API but here is a workaround: Write a small library which wraps the signal code. When you send a signal, increase an atomic counter. As you process the signals, decrement the counter again. Then, you can use this atomic counter to answer your curiosity.</p> <p>[EDIT] If that is not enough, then you have the source: Just examine the code and the data structures involved and use what you need to peek into the kernel structures. But this might involve writing a module (because the data structures of the kernel aren't readable by a process) plus your code will become dependent on the kernel on which it was compiled. So I advise against this approach.</p> http://stackoverflow.com/questions/585620/update-several-columns-at-once-in-derby 0 Update several columns at once in Derby Aaron Digulla 2009-02-25T11:15:11Z 2009-12-21T01:00:01Z <p>DB2 supports this syntax:</p> <pre><code>UPDATE DEST D SET (AAA,BBB) = ( SELECT MAX(Z.AAA), MAX(Z.BBB) FROM OTHER O WHERE O.ID = D.ID ) </code></pre> <p>i.e. I can run a select which returns more than one column and copy the results into various columns of the destination table (the one to update).</p> <p>Derby only allows the syntax:</p> <pre><code>UPDATE table-Name [[AS] correlation-Name] SET column-Name = Value [ , column-Name = Value} ]* [WHERE clause] </code></pre> <p>which means I can run into problems when I need to group the results of the select in some way. Is there a better solution than splitting the update into two statements or doing this locally in a loop in Java (i.e. submitting millions of UPDATE statements)?</p> http://stackoverflow.com/questions/881379/cant-get-grails-1-1-to-work-with-maven-2-1 0 Can't get Grails 1.1 to work with Maven 2.1 Aaron Digulla 2009-05-19T07:20:18Z 2009-12-19T01:00:00Z <p>When I try to build a Grails 1.1 project with Maven 2.0.9 or 2.1, I get this error:</p> <pre><code>[INFO] [grails:maven-compile {execution: default}] Running pre-compiled script Environment set to development Plugin [debug-1.0.2] not installed, resolving.. Reading remote plugin list ... Plugin list file corrupt, retrieving again.. [delete] Deleting: C:\Dokumente und Einstellungen\DIGULAA\.grails\1.1\plugins-list-core.xml [get] Getting: http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/plugins-list.xml [get] To: C:\Dokumente und Einstellungen\DIGULAA\.grails\1.1\plugins-list-core.xml . [get] last modified = Thu May 14 10:44:43 CEST 2009 Error reading remote plugin list [org.apache.xerces.jaxp.DocumentBuilderFactoryImpl], building locally... Plugins list cache is corrupt [org.apache.xerces.jaxp.DocumentBuilderFactoryImpl]. Re-creating.. Unable to list plugins, please check you have a valid internet connection: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Unable to start Grails Embedded error: java.lang.reflect.InvocationTargetException Cannot get property 'plugin' on null object </code></pre> <p>My guess is that there is a problem with the XML parser because the plugin list file is not corrupt; Grails just can't read it and the developers swallowed the exception :(</p> <p>Did anyone have the same problem? What's the solution?</p> http://stackoverflow.com/questions/1929130/what-is-the-value-of-static-variables-after-deserializing-an-object/1929190#1929190 0 Answer by Aaron Digulla for What is the value of static variables after deserializing an object? Aaron Digulla 2009-12-18T16:16:11Z 2009-12-18T16:16:11Z <p>Since static initializers run exactly once, the value is <code>7</code>.</p> http://stackoverflow.com/questions/1928713/latex-possible-to-include-large-block-of-regex/1928723#1928723 1 Answer by Aaron Digulla for LaTex: Possible to include large block of Regex? Aaron Digulla 2009-12-18T15:03:57Z 2009-12-18T15:03:57Z <p>Use a <code>verbatim</code> block. But it won't look very nice :(</p> http://stackoverflow.com/questions/1927267/which-datatype-i-use-in-sqllite-to-store-this-value-as-same-12-12-2009/1927285#1927285 0 Answer by Aaron Digulla for which datatype i use in sqllite to store this value as same 12/12/2009 Aaron Digulla 2009-12-18T09:51:54Z 2009-12-18T11:54:54Z <p>You have two options:</p> <ul> <li><p>Convert the value to an integer relative to some point in time. For example, on Unix, time types are usually expressed as the number of seconds since the Epoch (1.1.1970). Check your libraries what they support.</p></li> <li><p>Convert the values to text and store them as a <code>char(10)</code> value.</p></li> </ul> http://stackoverflow.com/questions/1927303/how-to-get-the-id-of-iframe/1927348#1927348 0 Answer by Aaron Digulla for How to get the id of iframe Aaron Digulla 2009-12-18T10:07:52Z 2009-12-18T10:07:52Z <p>Try the automatic variable <code>this</code>. It should contain the element on which the event was fired.</p> http://stackoverflow.com/questions/1927274/firefox-can-i-use-a-relative-path-in-the-base-tag 0 Firefox: Can I use a relative path in the BASE tag? Aaron Digulla 2009-12-18T09:48:14Z 2009-12-18T09:48:14Z <p>I have a little web project where I have many pages and an index/ToC file. The toc file is at the root of my project in <code>toc.html</code>. The pages are spread over a couple of subdirectories and include the toc with an <code>iframe</code>.</p> <p>The project doesn't need a web server, so I can create the HTML in a directory and browse it in my browser. The problem is that I'm running into XSS issues when JavaScript from the <code>toc.html</code> wants to call a function in a page (violation of the same origin policy).</p> <p>So I added <code>base</code> tags in the header with a relative URL to the directory in which <code>toc.html</code>. This works for Konqueror but in Firefox, I have to use absolute paths or the toc won't even display :( Here is an example:</p> <pre><code>&lt;?xml version='1.0' encoding='utf-8' ?&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;base href="../" target="_top" /&gt; &lt;title&gt;Project 1&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;iframe class="toc" frameborder="0" src="toc.html"&gt; &lt;/iframe&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This is file is in a subdirectory <code>page</code>. Firefox won't even load it, saying that it can't find <code>page/toc.html</code>.</p> <p>Is there a workaround? I would really like to avoid absolute paths in my export to keep it the same everywhere (locally and when I upload it on the web server later).</p> http://stackoverflow.com/questions/1914675/reading-only-new-rows-from-a-log-like-table-in-a-database/1914736#1914736 0 Answer by Aaron Digulla for Reading only new rows from a log-like table in a database Aaron Digulla 2009-12-16T13:44:30Z 2009-12-17T08:25:42Z <p>Create another table <code>LOG_REVISION</code>. It contains a single row (an <code>INTEGER</code>).</p> <p>The logging process should read this table and add the number it finds there to each log record. Lock the row until you commit the transaction.</p> <p>The reading process should first update the <code>LOG_REVISION</code> by incrementing the number and then read all rows which have the old <code>LOG_REVISION</code>.</p> <p>[EDIT] There are two more ways around this:</p> <ul> <li>have another table where you record the rows which you have processed.</li> <li>The writer puts the data into an intermediate table and the reader copies the rows to the final place and deletes the processed rows.</li> </ul> http://stackoverflow.com/questions/853071/wysiwyg-text-editor-in-java 5 WYSIWYG text editor in Java Aaron Digulla 2009-05-12T14:26:27Z 2009-12-16T21:53:07Z <p>I'd like to collect all WYSIWYG text editors for Java here.</p> <p>Some rules for entries:</p> <ul> <li>There must be a link to the project/product</li> <li>You must state whether it's open source or commercial</li> <li>Is it possible to extend the editor (add new features like a "violet centered sudoku")? Is that simple or complex?</li> <li>Does it come with lots of features (fancy character and paragraph styles with online spell checking for several languages in the same document) or just the basics (bold, italics, no underline)?</li> <li>List important dependencies (does it run on bare Java with Swing? SWT? MacOS?)</li> <li>Your personal opinion</li> </ul> <p>This list should help developers determine which editor to choose. I'm not looking for "the best" but more "what's there".</p> http://stackoverflow.com/questions/1887216/which-tools-do-you-use-to-debug-html-js-in-your-browser 1 Which tools do you use to debug HTML/JS in your browser? Aaron Digulla 2009-12-11T10:37:00Z 2009-12-16T16:11:07Z <p>I'd like to collect the best debugging aids for all browsers out there. So that would probably be <a href="https://addons.mozilla.org/de/firefox/addon/1843" rel="nofollow">Firebug</a> for Firefox but what do you use for IE? Safari? Opera? Opera Mini? What else is out there? Are there tools that work well for IE 6? IE 5?</p> http://stackoverflow.com/questions/1915639/debugging-websites-in-various-browsers/1915684#1915684 1 Answer by Aaron Digulla for Debugging Websites in Various Browsers Aaron Digulla 2009-12-16T16:08:35Z 2009-12-16T16:08:35Z <p>There are frameworks like GWT, ext-js, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a> which hide a lot of the browser bugs from you. But today (near the end of 2009), there still isn't a good, realiable way to narrow down browser issues and to fix them.</p> <p>PS: I'm collecting tools that help during debugging here: <a href="http://stackoverflow.com/questions/1887216/which-tools-do-you-use-to-debug-html-js-in-your-browser">Which tools do you use to debug HTML/JS in your browser?</a></p> http://stackoverflow.com/questions/1914993/caching-big-children-in-data-model-with-db4o 0 Caching big children in data model with db4o Aaron Digulla 2009-12-16T14:30:43Z 2009-12-16T15:51:55Z <p>I have a data model with a skeleton (metadata) and large data objects. I'd like to keep the skeleton in memory and hold weak references to the data objects. I understand how I would implement this with plain Java, how I would create a WeakHashMap and clean up etc. But I'm wondering what would be the best way to resurrect the data objects after they have been GC'd?</p> <p>Should I add a technical key to my map which I assign to a field in the data object, so I can find it again? Or should I call db.ext().getId() and use this ID as the technical key? If so, how would I get these keys when loading the parent? What do you suggest?</p> http://stackoverflow.com/questions/1914702/query-on-iteration/1914718#1914718 0 Answer by Aaron Digulla for Query on iteration Aaron Digulla 2009-12-16T13:40:43Z 2009-12-16T13:40:43Z <p>Google for "DOM XML parser" plus the name of your programming language. Maybe add "tutorial".</p> http://stackoverflow.com/questions/1913759/generic-stored-procedures-in-oracle/1913783#1913783 0 Answer by Aaron Digulla for generic stored procedures in oracle Aaron Digulla 2009-12-16T10:38:06Z 2009-12-16T10:38:06Z <p><a href="http://download.oracle.com/docs/cd/B19306%5F01/appdev.102/b14261/executeimmediate%5Fstatement.htm" rel="nofollow">EXECUTE IMMEDIATE</a> does what you want.</p> http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o 0 Can/should I use WeakReference in my complex object structure with db4o? Aaron Digulla 2009-12-16T08:28:55Z 2009-12-16T09:00:57Z <p>I'm considering to port an application to db4o. The data model consists of lots of small objects with a lot of references between each other. For example, I have a book which points to an author and chapter. Chapters have sections, sections have large blobs of text, images, and they reference characters mentioned.</p> <p>I think it should be possible to keep the meta structure in memory (everything except the text blobs) but I was wondering whether I could use some clever trick involving WeakReference so db4o would just keep the part of the model in memory that I really need (i.e. which I've been using recently).</p> <p>The same is true for the text blobs (which should be around 1-10KB). Is it possible to get a String without having to worry about the DB layer and without having to query for the text blob using an artificial ID inside the getter and without using a hard reference which keeps the whole text in memory all the time?</p> http://stackoverflow.com/questions/1908768/what-is-the-space-efficiency-of-a-directed-acyclic-word-graph-dawg-and-is-ther/1908835#1908835 1 Answer by Aaron Digulla for What is the space efficiency of a directed acyclic word graph (dawg)? and is there a javascript implementation? Aaron Digulla 2009-12-15T16:56:52Z 2009-12-15T16:56:52Z <p>My mind cringes at the two facts "couple of million" and "JavaScript". JS is meant to shuffle little pieces of data around, not megabytes. Just imagine how long users would have to wait for your page to load!</p> <p>There must be a reason why AJAX turnaround is so slow in your case. Google serves billion of AJAX requests every day and their type ahead is snappy (just try it on www.google.com). So there must be something broken in your setup. Find it and fix it.</p> http://stackoverflow.com/questions/1908267/openrules-rules-only-in-a-database-possible/1908372#1908372 0 Answer by Aaron Digulla for OpenRules rules only in a database possible? Aaron Digulla 2009-12-15T15:53:41Z 2009-12-15T16:51:49Z <p>Yes. <a href="http://openrules.com/docs/man%5Fapi.html#EngineConstructors" rel="nofollow">According to the documentation</a>, you can pass in any URL which Java supports (i.e. anything for which <code>URL.openStream()</code> will return something useful).</p> <p>So you can simply embed the <a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty web server</a> in your application, create a servlet which returns the file and then call <code>OpenRulesEngine()</code> with the URL of the servlet.</p> <p>Or you could download the file from the DB and use <code>File.createTempFile()</code> to create a temporary file to set up the rules engine.</p> <p>Or you could file a bug against the project and ask for another constructor which allows you to pass in an <code>InputStream</code>.</p> <p>[EDIT] I guess you've already seen <a href="http://openrules.com/docs/man%5FrepositoryDB2.html" rel="nofollow">this document</a> which explains how to put the rules into a database. From what I see, it's not possible to create the rule engine without an existing Main.xls file at least in your classpath.</p> <p>But that file doesn't have to contain much:</p> <blockquote> <p>rules/main/Main.xls the main file for a rules engine to start with. It contains only the Environment table</p> </blockquote> <p>So you can simply put a static file in the classpath and load all the rules from the DB.</p> http://stackoverflow.com/questions/1908492/unsigned-integer-in-javascript/1908524#1908524 0 Answer by Aaron Digulla for Unsigned Integer in Javascript Aaron Digulla 2009-12-15T16:11:59Z 2009-12-15T16:11:59Z <p>What kind of IP addresses do you have? IPv4 uses only 32bit addresses, so JavaScript should be fine (using double which gives you an <a href="http://en.wikipedia.org/wiki/Double%5Fprecision%5Ffloating-point%5Fformat" rel="nofollow">52bit integer part</a>). IPv6 uses 128bit addresses, so you'll have to use an array. My guess is that something else is broken.</p> <p>[EDIT] Build a small library which uses an array of two ints as the internal data type.</p> http://stackoverflow.com/questions/1908330/simhash-implementation-in-java/1908483#1908483 -1 Answer by Aaron Digulla for SimHash implementation in Java? Aaron Digulla 2009-12-15T16:06:56Z 2009-12-15T16:06:56Z <p>According to <a href="http://www.gbv.de/wikis/cls/Bibliographic%5FHash%5FKey" rel="nofollow">this page</a>, you should ask the developers of <a href="http://www.bibsonomy.org/" rel="nofollow">BibSonomy</a>.</p> http://stackoverflow.com/questions/1908334/how-to-combine-multiple-images-fast-for-page-views-counter/1908453#1908453 0 Answer by Aaron Digulla for How to combine multiple images fast for page views counter Aaron Digulla 2009-12-15T16:02:53Z 2009-12-15T16:02:53Z <p>Since the background is uniform in your example, render the string "0123456789" and use <a href="http://www.alistapart.com/articles/sprites/" rel="nofollow">CSS sprites</a> to build the counter.</p> http://stackoverflow.com/questions/1908365/how-to-put-new-line-in-jsps-epression-language/1908402#1908402 1 Answer by Aaron Digulla for How to put "new line" in JSP's Epression Language? Aaron Digulla 2009-12-15T15:56:39Z 2009-12-15T15:56:39Z <p>How about:</p> <pre><code>&lt;af:outputText value="#{msg.TCW_SELECT_PART_ANALYSIS}"/&gt; &lt;af:outputText value="#{msg.TCW_SELECT_PART_ANALYSIS2}"/&gt; </code></pre> <p>(i.e. split the value and put the character you want between the two)?</p> http://stackoverflow.com/questions/1907286/how-can-i-set-an-image-in-to-seventh-column/1907342#1907342 1 Answer by Aaron Digulla for how can I set an image in to seventh column? Aaron Digulla 2009-12-15T13:09:52Z 2009-12-15T15:46:45Z <p>If you want to add the image later, then you need a "primary key" in your table. The primary key gives you a simple way to identify a specific column. Add a column like this to your table:</p> <pre><code>ID serial, </code></pre> <p>Omit this column during insert and run this query after the insert to learn the primary key of your new column:</p> <pre><code>SELECT @@IDENTITY </code></pre> <p>Later, when you finally get the image, run this update:</p> <pre><code>update set imageBlob = ? where ID = ? </code></pre> <p>Use your <code>InputStream</code> for the first parameter and the primary key for the second.</p> <p>[EDIT] See <a href="http://www.java2s.com/Code/Java/Database-SQL-JDBC/InsertpicturetoMySQL.htm" rel="nofollow">this page</a> for a complete example how to insert an image into a table.</p> http://stackoverflow.com/questions/1907590/script-to-test-for-correct-certificate-database-password/1907634#1907634 1 Answer by Aaron Digulla for Script to test for correct certificate database password Aaron Digulla 2009-12-15T13:55:06Z 2009-12-15T13:55:06Z <p>Use certutil's password file along with <code>mktemp(1)</code>. This generates a temporary file which is only readable by the current user (which should be the same person who already knows the password).</p> <p>Also add a <code>trap "rm $tmpfile" EXIT</code> to the script to make sure the password gets deleted when the script exits for whatever reason.</p> <p>If that is still not secure enough, you must write a small C program which operates on the certificate DB.</p> http://stackoverflow.com/questions/1906436/is-it-theoretically-impossible-to-get-the-size-of-a-file-that-is-going-to-be-uplo/1906522#1906522 5 Answer by Aaron Digulla for Is it theoretically impossible to get the size of a file that is going to be uploaded using Javascript? Aaron Digulla 2009-12-15T10:33:40Z 2009-12-15T10:33:40Z <p>You can't get the file size yourself but the browser will send the <em>encoded</em> file size to the server in the header <em>before</em> the actual file data.</p> <p>So what you could do is start the upload and then send an AJAX request to the server asking for the size of the file. But there is another catch: The browser can encode the file for the transfer. This is often base64, so encoded size != file size but you can calculate the original file size: <code>orig = encodedSize * 2 / 3</code></p> http://stackoverflow.com/questions/1902017/convert-troff-to-nroff/1902129#1902129 2 Answer by Aaron Digulla for Convert troff to nroff Aaron Digulla 2009-12-14T17:00:07Z 2009-12-14T17:00:07Z <p>They are really close related. Most format commands are understood by both tools, the main difference is how the final output looks like when you print/view the documents <em>after</em> running it through nroff/troff (see <a href="http://docs.rinet.ru/UNIXi/ch08.htm" rel="nofollow">this article</a> for an overview).</p> <p>So you should get away with the tools you already have. Note that on most modern Unix systems, <a href="http://www.gnu.org/software/groff/groff.html" rel="nofollow">groff</a> will be installed which comes with both frontends.</p> http://stackoverflow.com/questions/1901484/where-does-it-cross-the-line-into-piracy/1901924#1901924 1 Answer by Aaron Digulla for Where does it cross the line into piracy? Aaron Digulla 2009-12-14T16:28:58Z 2009-12-14T16:28:58Z <p>This depends mostly on your history. If you spent lots of money/effort on something, then any kind of copying will feel like piracy. If you desperately want some software to run on Linux and the ... er ... "owners" won't port it, it feels okay to copy as much as possible. (Along the lines of "I'm not stealing! If they wanted to make money with this, then they could have ported it to Linux themselves!").</p> <p>When someone comes up with a cool software and you see it and you know how it might work, is it theft when you write something similar? How can you steal in idea? Ideas don't exist but in our heads. If you "steal" it, the original owner still has "his" idea.</p> <p>The problem here is that the gap is so huge and it's so easy to feel trespassed. And this is only the "how I feel" side. There is a really ugly side called law where smart people in suits tried to make sense of the whole mess. There is international copyright law (anything anyone writes is protected by copyright laws unless it's "really trivial" - whatever that means). So if you copy the source code, you break the copyright law. If you copy the look&amp;feel, you may break trademark laws. A lot of software is protected by patents. You may be breaking license contracts. And there is probably more that I forgot.</p> <p>So for example, I can disassemble Windows or Office to any extend I like. I can use this knowledge to:</p> <ul> <li>Write a program which behaves the same way</li> <li>A program which can communicate with the existing software</li> <li>Write a book on how the software works</li> </ul> <p>What I usually can't do is include code (i.e. I can't run the stuff through a disassembler, write a tool that turns that in C/C++, compile it and then do anything with it). Unless it's OSS. And/or the license in question allows it.</p> <p>Many years ago, Apple sued Microsoft because of how Windows looked like. 2007, Microsoft paid <a href="http://en.wikipedia.org/wiki/Eolas" rel="nofollow">Eolas</a> many, many million dollars to be allowed to embed applets and flash objects in pages displayed with Internet Explorer.</p> <p>I hope this makes one thing really clear: How person X feels about this is one thing. What the law says about this is something else entirely. This is a minefield and if you want to wander into it, I really suggest to get in contact with a lawyer specialized in this field (who will ask for a huge fee - for good reason).</p> http://stackoverflow.com/questions/1899989/how-can-i-prevent-a-java-1-4-project-from-using-1-5-1-6-specific-api/1900025#1900025 6 Answer by Aaron Digulla for How can I prevent a java 1.4 project from using 1.5/1.6 specific API? Aaron Digulla 2009-12-14T10:06:22Z 2009-12-14T10:06:22Z <p>Make sure that you're also using an 1.4 JRE system library in your project. The 1.4 compiler settings change the features which will be written into the class files, it doesn't restrict what you can see from the libraries in your project.</p> <p>Open the properties for your project and check what you find under "Java Build Path" -> "Libraries" -> "JRE System Library". Click "Edit" to change or add new Java versions.</p> http://stackoverflow.com/questions/559510/looking-for-java-spell-checker-library/1897669#1897669 0 Answer by Aaron Digulla for Looking for Java spell checker library Aaron Digulla 2009-12-13T20:42:50Z 2009-12-13T20:42:50Z <p>Have a look at <a href="http://jaspell.sourceforge.net/" rel="nofollow">JaSpell</a>. It comes with an internal spell checking engine or you can use <a href="http://aspell.net/" rel="nofollow">aspell</a>. Since the source is available, you can also attach aspell-like engines easily (like <a href="http://hunspell.sourceforge.net/" rel="nofollow">Hunspell</a>).</p> <p>It comes with filters for TeX and XML and it has support for suggestion engines like keyboard distance, common misspellings (where you can define words and their replacements for common typos), Levenshtein distance, and phonetic distance.</p> http://stackoverflow.com/questions/1893449/java-graphics-performance/1893534#1893534 1 Answer by Aaron Digulla for Java graphics performance Aaron Digulla 2009-12-12T14:04:46Z 2009-12-12T14:04:46Z <p>Try <a href="http://www.13thmonkey.org/~boris/jgame/" rel="nofollow">JGame</a>. It's a simple engine for 2D games which uses GL when its available and can produce games that run on anything from a mobile phone to a desktop system.</p> http://stackoverflow.com/questions/1929130/what-is-the-value-of-static-variables-after-deserializing-an-object/1929190#1929190 Comment by Aaron Digulla on What is the value of static variables after deserializing an object? Aaron Digulla 2009-12-21T08:24:40Z 2009-12-21T08:24:40Z @Dan: Even Sun makes mistakes. Ask your instructor to prove his claim. http://stackoverflow.com/questions/1927308/choosing-java-tools-ide-and-compiler-for-beginners/1927332#1927332 Comment by Aaron Digulla on Choosing Java tools (IDE and compiler) for beginners Aaron Digulla 2009-12-18T10:06:48Z 2009-12-18T10:06:48Z +1 for &quot;personal preference&quot;. I really suggest to try at least two of them because they behave so different. http://stackoverflow.com/questions/688504/binary-diff-tool/689132#689132 Comment by Aaron Digulla on Binary diff tool? Aaron Digulla 2009-12-18T09:28:25Z 2009-12-18T09:28:25Z And your point is? Either you have enough disk space or you need to use a pipe. http://stackoverflow.com/questions/1914675/reading-only-new-rows-from-a-log-like-table-in-a-database/1914736#1914736 Comment by Aaron Digulla on Reading only new rows from a log-like table in a database Aaron Digulla 2009-12-17T08:25:56Z 2009-12-17T08:25:56Z I've added two more solutions. http://stackoverflow.com/questions/1914675/reading-only-new-rows-from-a-log-like-table-in-a-database/1916341#1916341 Comment by Aaron Digulla on Reading only new rows from a log-like table in a database Aaron Digulla 2009-12-17T08:23:13Z 2009-12-17T08:23:13Z -1 Same problem as the timestamp: If a transaction hasn't been committed, the sequence will already have increased but the reader will miss the row. If another transaction gets committed, the first row won't be processed. http://stackoverflow.com/questions/1914993/caching-big-children-in-data-model-with-db4o/1915543#1915543 Comment by Aaron Digulla on Caching big children in data model with db4o Aaron Digulla 2009-12-16T16:10:00Z 2009-12-16T16:10:00Z Just to make sure: that means I can't use some magic relation between the metadata and the children (like &quot;find all items which once were in this list&quot;)? http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o/1913290#1913290 Comment by Aaron Digulla on Can/should I use WeakReference in my complex object structure with db4o? Aaron Digulla 2009-12-16T10:42:15Z 2009-12-16T10:42:15Z Activation seems the way to go. Thanks! http://stackoverflow.com/questions/1913759/generic-stored-procedures-in-oracle/1913780#1913780 Comment by Aaron Digulla on generic stored procedures in oracle Aaron Digulla 2009-12-16T10:38:48Z 2009-12-16T10:38:48Z -1 No tinyurl's, please. http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o/1913173#1913173 Comment by Aaron Digulla on Can/should I use WeakReference in my complex object structure with db4o? Aaron Digulla 2009-12-16T08:59:13Z 2009-12-16T08:59:13Z Oh, I can hide the data access behind a getter but I was wondering if there was a smarter way. http://stackoverflow.com/questions/1908267/openrules-rules-only-in-a-database-possible/1908372#1908372 Comment by Aaron Digulla on OpenRules rules only in a database possible? Aaron Digulla 2009-12-15T16:52:03Z 2009-12-15T16:52:03Z See my edits for a possible solution. http://stackoverflow.com/questions/1907286/how-can-i-set-an-image-in-to-seventh-column/1907342#1907342 Comment by Aaron Digulla on how can I set an image in to seventh column? Aaron Digulla 2009-12-15T15:45:16Z 2009-12-15T15:45:16Z Which value is null? http://stackoverflow.com/questions/1660049/unittesting-corba-in-python/1660185#1660185 Comment by Aaron Digulla on Unittesting Corba in Python. Aaron Digulla 2009-12-15T14:53:29Z 2009-12-15T14:53:29Z Change the design in this respect. Also don't test the Corba compiler (unless you run into bugs and need to know how/whether something works). Make sure your code sets the right parameters. The next step would be to get the source for the server and test its code with unit tests. But avoid the round trips (as much as possible). Disclaimer: Reality beats paper. http://stackoverflow.com/questions/1907286/how-can-i-set-an-image-in-to-seventh-column/1907342#1907342 Comment by Aaron Digulla on how can I set an image in to seventh column? Aaron Digulla 2009-12-15T14:49:41Z 2009-12-15T14:49:41Z This is the string to pass to <code>prepareStatement()</code>. then you need to set the parameters. <b>Never</b> use string concatenation to add parameters to your SQL statements. http://stackoverflow.com/questions/1901484/where-does-it-cross-the-line-into-piracy/1901924#1901924 Comment by Aaron Digulla on Where does it cross the line into piracy? Aaron Digulla 2009-12-15T10:27:34Z 2009-12-15T10:27:34Z What I tried to convey here is that most people will disagree with what the law and the courts say. Looking at the current anti piracy &quot;war&quot; of the content industry, it sometimes feels as if they wanted to wipe my mind after I listened to a song or watched a movie so I can't &quot;steal&quot; their work. http://stackoverflow.com/questions/1902102/oracle-import-data-into-a-table-with-a-different-name/1902114#1902114 Comment by Aaron Digulla on Oracle -- Import data into a table with a different name? Aaron Digulla 2009-12-14T17:03:54Z 2009-12-14T17:03:54Z +1 Agreed. If the table already exist, you must rename it, then import the data, rename the new table to the name you want and then rename the original table back to its original name.