Aaron Digulla

27,301
reputation
1108 views

Registered User

name Aaron Digulla
member for 1 year
seen 12 hours ago
website
location Switzerland
age
I'm a software developer living in Switzerland. You can reach me at digulla at hepe dot com.
12h
answered What is the value of static variables after deserializing an object?
13h
answered LaTex: Possible to include large block of Regex?
16h
answered how to determine the number of signals pending in the unix signal queue (Linux)
16h
revised which datatype i use in sqllite to store this value as same 12/12/2009
Improved based on comments
18h
answered How to get the id of iframe
18h
comment Choosing Java tools (IDE and compiler) for beginners
+1 for "personal preference". I really suggest to try at least two of them because they behave so different.
18h
answered which datatype i use in sqllite to store this value as same 12/12/2009
18h
asked Firefox: Can I use a relative path in the BASE tag?
18h
comment Binary diff tool?
And your point is? Either you have enough disk space or you need to use a pipe.
23h
accepted Debugging Websites in Various Browsers
1d
accepted A 90/10 Rule for Memory Management?
1d
comment Reading only new rows from a log-like table in a database
I've added two more solutions.
1d
comment Reading only new rows from a log-like table in a database
-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.
2d
accepted Feasibility of beating the Turing Test with modern software?
2d
comment Caching big children in data model with db4o
Just to make sure: that means I can't use some magic relation between the metadata and the children (like "find all items which once were in this list")?
2d
answered Debugging Websites in Various Browsers
2d
asked Caching big children in data model with db4o
2d
answered Reading only new rows from a log-like table in a database
2d
answered Query on iteration
2d
revised Query on iteration
deleted 14 characters in body
2d
comment Can/should I use WeakReference in my complex object structure with db4o?
Activation seems the way to go. Thanks!
2d
answered generic stored procedures in oracle
2d
comment Can/should I use WeakReference in my complex object structure with db4o?
Oh, I can hide the data access behind a getter but I was wondering if there was a smarter way.
2d
asked Can/should I use WeakReference in my complex object structure with db4o?
Dec
16
accepted Is it theoretically impossible to get the size of a file that is going to be uploaded using Javascript?
Dec
15
accepted Convert troff to nroff
Dec
15
answered What is the space efficiency of a directed acyclic word graph (dawg)? and is there a javascript implementation?
Dec
15
comment OpenRules rules only in a database possible?
See my edits for a possible solution.
Dec
15
revised OpenRules rules only in a database possible?
added 541 characters in body
Dec
15
answered Unsigned Integer in Javascript
Dec
15
answered SimHash implementation in Java?
Dec
15
answered How to combine multiple images fast for page views counter
Dec
15
answered How to put “new line” in JSP’s Epression Language?
Dec
15
answered OpenRules rules only in a database possible?
Dec
15
revised how can I set an image in to seventh column?
Link
Dec
15
comment how can I set an image in to seventh column?
Which value is null?
Dec
15
comment Unittesting Corba in Python.
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.
Dec
15
comment how can I set an image in to seventh column?
This is the string to pass to prepareStatement(). then you need to set the parameters. Never use string concatenation to add parameters to your SQL statements.
Dec
15
answered Script to test for correct certificate database password
Dec
15
answered how can I set an image in to seventh column?
Dec
15
answered Is it theoretically impossible to get the size of a file that is going to be uploaded using Javascript?
Dec
15
comment Where does it cross the line into piracy?
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 "war" 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 "steal" their work.
Dec
14
accepted Need good OCR for printed source code listing, any ideas?
Dec
14
comment Oracle — Import data into a table with a different name?
+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.
Dec
14
answered Convert troff to nroff
Dec
14
answered Where does it cross the line into piracy?
Dec
14
accepted What in a GreaseMonkey script can cause Firefox to crash?
Dec
14
comment Groovy way to dynamically invoke a Class
Sure. Why not? The script is read, compiled and then run. At the time when it is run, all the class files exist, so Class.forName() can find them.
Dec
14
comment How can I prevent a java 1.4 project from using 1.5/1.6 specific API?
Of course not. From the view of the compiler, rt.jar is just another JAR on the classpath. It doesn't "know" that the classes in there mean something special to you.
Dec
14
answered How can I prevent a java 1.4 project from using 1.5/1.6 specific API?