User Paul de Vrieze - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T18:16:18Zhttp://stackoverflow.com/feeds/user/4100http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1294981/java-dom-xml-is-skipping-xmlns-properties/1484055#14840550Answer by Paul de Vrieze for Java DOM XML is skipping xmlns propertiesPaul de Vrieze2009-09-27T17:46:44Z2009-09-27T17:46:44Z<p>To make DOM namespace aware, do not forget to enable it in the documentbuilderfactory using the <code>setNamespaceAware</code> method.</p>
http://stackoverflow.com/questions/1399491/eclipse-function-plugin-that-finds-corresponding-junit-class/1399559#13995590Answer by Paul de Vrieze for Eclipse function/plugin that finds corresponding junit class?Paul de Vrieze2009-09-09T13:00:52Z2009-09-09T13:00:52Z<p>As a partial answer to your question, there is no requirement that tests have a one to one correspondence with main classes, or any standard naming convention (even with maven). What you would want is a plugin that (for example based on a regex) matches source classNames to dest ClassNames, and then loads that. Such a plugin would allow you to do what you want (and also for other uses not related to junit), but I'm not aware of one.</p>
http://stackoverflow.com/questions/1398912/retrieving-xml-results-of-a-post-command0Retrieving XML results of a POST commandPaul de Vrieze2009-09-09T10:48:20Z2009-09-09T12:55:24Z
<p>As part of my GWT application I have a POST method that accepts a file (so I need to use form submission) and returns an updated list of elements as xml. I use the GWT formPanel to do this. The formpanel redirects the results of the post into a separate iframe. Using the dom inspector I can see that the results are actually there. Unfortunately GWT retrieves the results with <code>iframe.contentWindow.document.body.innerHTML</code>. As my results are sent back using content type text/xml, the xml parser of the browser is used, and obviously html DOM does not apply. I'm stuck now to get to know the correct javascript to get the xml contents.</p>
http://stackoverflow.com/questions/1398912/retrieving-xml-results-of-a-post-command/1399516#13995160Answer by Paul de Vrieze for Retrieving XML results of a POST commandPaul de Vrieze2009-09-09T12:54:21Z2009-09-09T12:54:21Z<p>The solution was actually easy. Just return <code>iframe.contentWindow.document</code> and parse the result. Of course that "Document" is a <code>com.google.gwt.dom.client.Document</code> and not a <code>com.google.gwt.xml.client.Document</code>. Also, as the frame handle is not visible for children, the whole <code>FormPanel</code> class needs to be reimplemented (copied).</p>
http://stackoverflow.com/questions/1399289/effort-needed-to-port-from-c-to-java/1399377#13993772Answer by Paul de Vrieze for Effort needed to port from C to JavaPaul de Vrieze2009-09-09T12:24:07Z2009-09-09T12:24:07Z<p>It depends very much on your desired results as well as your code base. Porting to java while not really using object orientation is possible, but certainly won't win you a beauty contest. If the code itself is already sort of object-oriented that gets better. If you use all kinds of preprocessor tricks, that complicates a lot out of porting to java. Using OS calls the same (as java proper (without JNI) does not support many non-generic calls.</p>
http://stackoverflow.com/questions/669438/how-to-get-memory-usage-at-run-time-in-c/669476#6694763Answer by Paul de Vrieze for How to get memory usage at run time in c++?Paul de Vrieze2009-03-21T15:39:56Z2009-08-22T12:40:13Z<p>Old:</p>
<blockquote>
<p>maxrss states the maximum available
memory for the process. 0 means that
no limit is put upon the process. What
you probably want is unshared data
usage <code>ru_idrss</code>.</p>
</blockquote>
<p>New:
It seems that the above does not actually work, as the kernel does not fill most of the values. What does work is to get the information from proc. Instead of parsing it oneself though, it is easier to use libproc (part of procps) as follows:</p>
<pre><code>// getrusage.c
#include <stdio.h>
#include <proc/readproc.h>
int main() {
struct proc_t usage;
look_up_our_self(&usage);
printf("usage: %lu\n", usage.vsize);
}
</code></pre>
<p>Compile with "<code>gcc -o getrusage getrusage.c -lproc</code>"</p>
http://stackoverflow.com/questions/241034/how-to-remotely-shutdown-a-java-rmi-server/1315814#13158140Answer by Paul de Vrieze for How to remotely shutdown a Java RMI ServerPaul de Vrieze2009-08-22T11:50:59Z2009-08-22T11:50:59Z<p>Actually just unregistering and immediately calling System.exit doesn't shut down cleanly. It basically breaks the connection before informing the client that the message was completed. What works is to start a small thread that shuts down the system like:</p>
<pre><code>public void quit() throws RemoteException {
System.out.println("quit");
Registry registry = LocateRegistry.getRegistry();
try {
registry.unbind(_SERVICENAME);
UnicastRemoteObject.unexportObject(this, false);
} catch (NotBoundException e) {
throw new RemoteException("Could not unregister service, quiting anyway", e);
}
new Thread() {
@Override
public void run() {
System.out.print("Shutting down...");
try {
sleep(2000);
} catch (InterruptedException e) {
// I don't care
}
System.out.println("done");
System.exit(0);
}
}.start();
}
</code></pre>
<p>The thread is needed to be able to let something happen in the future while still returning from the quit method.</p>
http://stackoverflow.com/questions/744803/would-this-cause-garbage-collection-issues/750975#7509750Answer by Paul de Vrieze for Would this cause Garbage Collection issuesPaul de Vrieze2009-04-15T09:51:38Z2009-04-15T09:51:38Z<p>The garbage collector has special code for short-lived objects, and they are very very cheap to use. Basically once in a while all reachable young objects are marked and every other object is reclaimed in one swoop.</p>
http://stackoverflow.com/questions/750649/how-to-request-jvm-garbage-collection-not-from-code-when-run-from-windows-comma/750954#7509542Answer by Paul de Vrieze for How to request JVM garbage collection (not from code) when run from Windows command-linePaul de Vrieze2009-04-15T09:44:03Z2009-04-15T09:44:03Z<p>You normally should not have any reason to force garbage collection. Doing so, messes up the garbage collector algorithms (mainly their performance). It will also slow down the program while garbage is being collected. If there is a memory issue, you should use memory tracing tools to find out where references are being held? (Are listeners unregistered?)</p>
http://stackoverflow.com/questions/750604/freeing-up-a-tcp-ip-port/750939#7509391Answer by Paul de Vrieze for Freeing up a TCP/IP port?Paul de Vrieze2009-04-15T09:36:45Z2009-04-15T09:36:45Z<p>If you really want to kill a process immediately, you send it a KILL signal instead of a TERM signal (the latter a request to stop, the first will take effect immediately without any cleanup). It is easy to do:</p>
<pre><code>kill -KILL <pid>
</code></pre>
<p>Be aware however that depending on the program you are stopping, its state may get badly corrupted when doing so. You normally only want to send a KILL signal when normal termination does not work. I'm wondering what the underlying problem is that you try to solve and whether killing is the right solution.</p>
http://stackoverflow.com/questions/309565/how-do-i-stop-the-sun-jdk1-6-builtin-stax-parser-from-resolving-dtd-entities1How do I stop the Sun JDK1.6 builtin StAX parser from resolving DTD entitiesPaul de Vrieze2008-11-21T17:31:04Z2009-01-27T20:42:18Z
<p>I'm using the StAX event based API's to modify an XML stream. The stream represents an HTML document, complete with DTD declaration. I would like to copy this DTD declaration into the output document (written using an <code>XMLEventWriter</code>). When I ask the factory to disregard DTD's it will not download the DTD, but remove the whole statement and only leave a "<code><!DOCUMENTTYPE</code>" string. When not disregarding, the whole DTD gets downloaded, and included when verbatim outputting the DTD event. I don't want to use the time to download this DTD, but include the complete DTD specification (resolving entities is already disabled and I don't need that). Does anyone know how to disable the fetching of external DTD's.</p>
http://stackoverflow.com/questions/94486/does-the-gentoo-install-cd-contain-everything-for-c-development/455794#4557941Answer by Paul de Vrieze for Does the Gentoo install CD contain everything for C++ development?Paul de Vrieze2009-01-18T20:02:31Z2009-01-18T20:02:31Z<p>Gentoo is fundamentally a network based distro. The minimal CD is really minimal, it contains just enough to have a functional system booting as livecd so one can install the distribution basically from the network. The livecd (there are also livedvd's around, just not as regularly released (they eat diskspace and bandwith). contains a full graphical environment (and being a compile-yourself distro) obviously gcc as C++ compiler, and can be used to install a binary version of the packages to disk (actually from the livecd environment using some clever hackery).</p>
<p>However, gentoo is a continuously updated distribution. If you want to update your system you need to get the packages from the network (there are ways to find what to download etc, but that is not for beginners) and update. In general, if you don't update every couple of months, your updates can become painful or really painful.</p>
http://stackoverflow.com/questions/111769/how-to-install-a-masked-package-in-gentoo-2008/455780#4557803Answer by Paul de Vrieze for How to install a masked package in Gentoo 2008?Paul de Vrieze2009-01-18T19:51:40Z2009-01-18T19:51:40Z<p>There are two different kinds of masks in gentoo. Keyword masks and package masks. A keyword mask means that the package is either not supported (or untested) by your architecture, or still in testing. A package mask means that the package is masked for another reason (and for most users it is not smart to unmask). The solutions are:</p>
<ul>
<li>Add a line to <code>/etc/portage/package.keywords</code> (Check <code>man portage</code> in the <code>package.keywords</code> section). This is for the keyword problems.</li>
<li>Add a line to <code>/etc/portage/package.unmask</code> for "package.mask" problems (you can also use package.mask for the converse). This is in the same man file, under the section <code>package.unmask</code>. I advise to use versioned atoms here to avoid shooting in your own foot with really broken future versions a couple of months down the line.</li>
</ul>
http://stackoverflow.com/questions/399770/should-developers-fear-updates-to-their-workstation-software-development-stack/400332#4003320Answer by Paul de Vrieze for Should developers fear updates to their workstation software / development stack?Paul de Vrieze2008-12-30T14:08:07Z2008-12-30T14:08:07Z<p>There are a number of things to look at (I'm writing from linux/unix experience, but things should apply to other operating systems as well):</p>
<ul>
<li>Be aware of broken updates. Broken updates happen and it is prudent to let others
suffer the breakage. Be especially aware of core components such as the c library
(including OS interfaces typically included), linker, compiler, etc.</li>
<li>Updating component libraries for your product should be done warily (or on a test
system / vm first). Highly used libraries such as the C library are normally ok, but
lesser used ones may contain API breaks or semantic changes in the API.</li>
<li>Write your software to be tolerant of its environment:
<ul>
<li>Preferably use various differently configured systems to write</li>
<li>Write without assuming attributes of the environment</li>
<li>Update the system when needed, if something breaks get to the root cause and
eliminate that.</li>
<li>Be especially wary of complicated system dependent build systems (they require much
more maintenance than simpler (or automated) ones) besides the costs of rigidity.</li>
</ul></li>
</ul>
<p>I'm aware that unix like systems have more of a tradition in being independent than windows systems. That doesn't change the engineering soundness of OS assumption independence. So my advise is to update rather soon after a new update is available (not normally first day), but to make sure that it can easily be rolled back if things really break. If the project breaks, most developers would roll back, where a small team works on fixing it.</p>
http://stackoverflow.com/questions/384489/what-are-the-best-rules-to-follow-for-what-characters-to-allow-in-a-password/384567#3845672Answer by Paul de Vrieze for What are the best rules to follow for what characters to allow in a password?Paul de Vrieze2008-12-21T15:18:39Z2008-12-21T15:18:39Z<p>Fundamentally, most of the unicode class of characters should be allowed. Do skip however control characters (e.g. 0-31 besides space), the byte order mark (0xfffe and oxfeff). Further, you want to first canonicalize the representation to get rid of problems caused by differing representations. You might issue warnings though for characters that seem to be too hard to enter, but users will guard against that themselves.</p>
http://stackoverflow.com/questions/384502/what-is-the-bit-size-of-long-on-64-bit-windows/384544#3845443Answer by Paul de Vrieze for What is the bit size of long on 64-bit Windows?Paul de Vrieze2008-12-21T15:01:22Z2008-12-21T15:01:22Z<p>The easiest way to get to know it for your compiler/platform:</p>
<pre><code>#include <iostream>
int main() {
std::cout << sizeof(long)*8 << std::endl;
}
</code></pre>
<p>Themultiplication by 8 is to get bits from bytes.</p>
<p>When you need a particular size, it is often easiest to use one of the predefined types of a library. If that is undesirable, you can do what often happens with autoconf software and have the configuration system determine the right type for the needed size.</p>
http://stackoverflow.com/questions/381885/how-do-i-make-php-nicer-to-the-cpu/382158#3821581Answer by Paul de Vrieze for How do I make php nicer to the CPU?Paul de Vrieze2008-12-19T20:39:34Z2008-12-19T20:39:34Z<p>As your process is background, and uses 100% CPU it seem that the process is cpu bound. It is background so user bound would not be expected, so the only alternative would be IO bound. If your process should not really do interesting IO, the script itself would be expected to be CPU bound, and not just buggy.</p>
<p>Processes will always try to go as fast as possible. If they are IO bound, they will use 100% IO, if they are CPU bound, they will try to use 100% CPU. Properly written process schedulers automatically aim to provide a sense of fairness to all processes, meaning that the bigger processes get lower priority. You can further lower the priority with nice. The fact that the cpu usage is still about 100% means that there are no other processes which are currently CPU bound, but are most likely waiting for input from the network.</p>
http://stackoverflow.com/questions/372569/subversion-protocol-performance/372640#3726403Answer by Paul de Vrieze for Subversion protocol performancePaul de Vrieze2008-12-16T20:43:56Z2008-12-16T20:43:56Z<p>If you want to use windows auth, use the http(s) protocol, together with apache. It is a bit harder to set up, and not necessarily faster, but allows you to use standard apache authentication methods for authentication. Including various windows based authentication schemes, or kerberos.</p>
<p>Btw. Normally protocol speed is not a factor with svn speed. Svn caches the info on disk, so most regular actions are based on local cache. Next, the speed factor is in the repository and the network bandwith, not in the protocol.</p>
http://stackoverflow.com/questions/328722/how-to-change-the-blackberry-volume-or-mute-it/328776#3287760Answer by Paul de Vrieze for How to change the BlackBerry volume, or mute it?Paul de Vrieze2008-11-30T11:51:20Z2008-11-30T11:51:20Z<p>Certain functions on the blackberry (but not the emulator) only work with signed code. I'm not sure if it is the case for volume, but I wouldn't be surprised when it was.</p>
http://stackoverflow.com/questions/309424/in-java-how-do-a-read-an-input-stream-in-to-a-string/309718#3097188Answer by Paul de Vrieze for In Java how do a read an input stream in to a string?Paul de Vrieze2008-11-21T18:34:11Z2008-11-26T13:10:52Z<p>Taking into account file one should first get a <code>java.io.Reader</code> instance. This can then be read and added to a <code>StringBuilder</code> (we don't need <code>StringBuffer</code> if we are not accessing it in multiple threads, and <code>StringBuilder</code> is faster). The trick here is that we work in blocks, and as such don't need other buffering streams. The block now is 64k, but it could be increased in size for a bit of performance gain.</p>
<pre><code>final char[] buffer = new char[0x10000];
StringBuilder out = new StringBuilder();
Reader in = new InputStreamReader(is, "UTF-8");
int read;
do {
read = in.read(buffer, 0, buffer.length);
if (read>0) {
out.append(buffer, 0, read);
}
while (read>=0);
</code></pre>
http://stackoverflow.com/questions/231098/loop-from-0x0000-to-0xffff/231332#2313320Answer by Paul de Vrieze for Loop from 0x0000 to 0xFFFFPaul de Vrieze2008-10-23T20:20:43Z2008-10-23T20:20:43Z<p>Assuming that your code suffers from an off by one error (the current code, stops just before having the final value evaluated. Then the following might answer you.</p>
<p>Very simple, as your counter is a 16 bit unsigned integer, it can not have values bigger than <code>0xffff</code>, as that value is still valid, you need to have some value that extends beyond that as the guard. However adding <code>1</code> to <code>0xffff</code> in 16 bits just wraps around to <code>0</code>. As suggested, either use a do while loop (that does not need a guard value), or use a larger value to contain your counter.</p>
<p>ps. Using 16 bit variables on modern machines is actually less efficient than using 32 bit variables as no overflow code needs to be generated.</p>
http://stackoverflow.com/questions/230687/counterpart-of-phps-isset-in-c-c/231071#2310711Answer by Paul de Vrieze for Counterpart of PHP's isset() in C/C++Paul de Vrieze2008-10-23T19:18:54Z2008-10-23T19:18:54Z<p>As said in other answers, in C++ variables are never undefined. However, variables can be uninitialised, in which case their contents are not specified in the language standard (and implemented by most compilers to be whatever happened to be stored at that memory location).</p>
<p>Normally a compiler offers a flag to detect possibly uninitialised variables, and will generate a warning if this is enabled.</p>
<p>Another usage of isset could be to deal with different code. Remember that C++ is a statically compiled language, and attempting to redefine a symbol will result in a compile time error, removing the need for isset.</p>
<p>Finally, what you might be looking for is a null pointer. For that, just use a simple comparison:</p>
<pre><code>int * x(getFoo());
if (x) {
cout << "Foo has a result." << endl;
} else {
cout << "Foo returns null." << endl;
}
</code></pre>
http://stackoverflow.com/questions/218061/get-the-applications-path/218218#2182181Answer by Paul de Vrieze for Get the application's pathPaul de Vrieze2008-10-20T12:15:57Z2008-10-20T12:15:57Z<p><strong>Unix</strong></p>
<p>In unix one can find the path to the executable that was started using the environment variables. It is <strong>not</strong> necessarily an absolute path, so you would need to combine the current working directory (in the shell: <code>pwd</code>) and/or PATH variable with the value of the 0'th element of the environment.</p>
<p>The value is limited in unix though, as the executable can for example be called through a symbolic link, and only the initial link is used for the environment variable. In general applications on unix are not very robust if they use this for any interesting thing (such as loading resources). On unix, it is common to use hard-coded locations for things, for example a configuration file in <code>/etc</code> where the resource locations are specified.</p>
http://stackoverflow.com/questions/218033/is-there-a-performance-difference-between-javac-debug-on-and-off/218194#21819410Answer by Paul de Vrieze for Is there a performance difference between Javac debug on and off?Paul de Vrieze2008-10-20T12:03:36Z2008-10-20T12:03:36Z<p>In any language, debugging information is meta information. It by its nature increases the size of the object files, thus increasing load time. During execution outside a debugger, this information is actually completely ignored. As outlined (although not clearly) in the <a href="http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#1546" rel="nofollow">JVM spec</a> the debug information is stored outside the bytecode stream. This means that at execution time there is no difference in the class file. If you want to be sure though, try it out :-).</p>
<p>Ps. Often for debugging there is value in turning off optimization. That <em>does</em> have a performance impact.</p>
http://stackoverflow.com/questions/217969/how-can-i-display-word-documents-in-a-textarea-using-php/217981#2179810Answer by Paul de Vrieze for How can I display Word documents in a textarea using PHP?Paul de Vrieze2008-10-20T10:13:57Z2008-10-20T10:13:57Z<p>Do you mean you want to have the word plugin activated in the browser? Try the <a href="http://www.w3.org/TR/html401/struct/objects.html#edef-OBJECT" rel="nofollow"><code><object></code></a> tag with the correct mime type.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217970#2179705Answer by Paul de Vrieze for Why don't C++ compilers define operator== and operator!= ?Paul de Vrieze2008-10-20T10:06:15Z2008-10-20T10:06:15Z<p>Conceptually it is not easy to define equality. Even for POD data, one could argue that even if the fields are the same, but it is a different object (at a different address) it is not necessarily equal. This actually depends on the usage of the operator. Unfortunately your compiler is not psychic and cannot infer that.</p>
<p>Besides this, default functions are excellent ways to shoot oneself in the foot. The defaults you describe are basically there to keep compatibility with POD structs. They do however cause more than enough havoc with developers forgetting about them, or the semantics of the default implementations.</p>
http://stackoverflow.com/questions/211041/do-you-use-javadoc-for-every-method-you-write/211468#2114687Answer by Paul de Vrieze for Do you use Javadoc for every method you write?Paul de Vrieze2008-10-17T08:49:28Z2008-10-17T08:49:28Z<p>For things, like trivial getters and setters, share the comment between then and describe the purpose of the property, not of the getter/setter.</p>
<pre><code>/**
* Get foo
* @return The value of the foo property
*/
int getFoo() {
return foo;
}
</code></pre>
<p>Is <strong>not useful</strong>. Better do something like:</p>
<pre><code>/**
* Get the current value of the foo property.
* The foo property controls the initial guess used by the bla algorithm in
* {@link #bla}
* @return The initial guess used by {@link #bla}
*/
int getFoo() {
return foo;
}
</code></pre>
<p>And yes, this is more work. </p>
http://stackoverflow.com/questions/211263/halt-storage-access/211432#2114322Answer by Paul de Vrieze for Halt storage access?Paul de Vrieze2008-10-17T08:39:57Z2008-10-17T08:39:57Z<p>The partitions problem is easy. Just use ACL's to prevent access by certain users.</p>
<p>For drive access, there is probably some setting somewhere in windows to disable it. In the worse case you could try to forcibly remove the drivers (and as such the capability of windows to read the drive/stick)</p>
http://stackoverflow.com/questions/209015/self-documenting-code/211364#2113640Answer by Paul de Vrieze for Self-documenting codePaul de Vrieze2008-10-17T08:07:35Z2008-10-17T08:07:35Z<p>Regardless of purely self-documenting code is achievable, there are some things that come to mind one should do anyway:</p>
<ul>
<li>Never have code that is "surprising". Ie. don't use silly macro's to redefine things etc. Don't misuse operator overloading, don't try to be smart on this.</li>
<li>Split away code at the right point. Use proper abstractions. Instead of inlining a rolling buffer (a buffer with fixed length, with two pointers that gets items added at one end and removed at the other), use an abstraction with a proper name.</li>
<li>Keep function complexity low. If it gets too long or complex, try to split it out into other other functions.</li>
</ul>
<p>When implementing specific complex algorithms, add documentation (or a link to) describing the algorithm. But in this case try to be extra diligent in removing unneeded complexity and increasing legibility, as it is too easy to make mistakes.</p>
http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196164#1961645Answer by Paul de Vrieze for Unique random numbers in O(1)?Paul de Vrieze2008-10-12T21:46:14Z2008-10-12T21:46:14Z<p>You could use A <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">Linear Congruential Generator</a>. Where <code>m</code> (the modulus) would be the nearest prime bigger than 1000. When you get a number out of the range, just get the next one. The sequence will only repeat once all elements have occurred, and you don't have to use a table. Be aware of the disadvantages of this generator though (including lack of randomness).</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217970#217970Comment by Paul de Vrieze on Why don't C++ compilers define operator== and operator!= ?Paul de Vrieze2009-11-04T22:01:05Z2009-11-04T22:01:05ZWell, but what if the POD struct has a value whose relevance is dependent on another value. In the case that the value is not relevant, it's no longer bit-for-bit equality. Equality can really range between one and the same object (only with pointers/references) to anything somewhat the save (perhaps of a subclass)http://stackoverflow.com/questions/384502/what-is-the-bit-size-of-long-on-64-bit-windows/384544#384544Comment by Paul de Vrieze on What is the bit size of long on 64-bit Windows?Paul de Vrieze2009-10-25T20:08:25Z2009-10-25T20:08:25ZOf course, you're right, it's actually architecture dependent ("addressable unit of data storage large enough to hold any member of the basic character set of the execution environment"), but the most commonly used architectures that equals 8 bits.http://stackoverflow.com/questions/1399631/whats-the-concept-behind-zip-compression/1399662#1399662Comment by Paul de Vrieze on What's the concept behind zip compression?Paul de Vrieze2009-09-09T13:32:02Z2009-09-09T13:32:02ZMore basic compression is probably RLE compression, but it does not explain much about the more advanced kinds.http://stackoverflow.com/questions/1399536/java-fonts-and-pixels/1399547#1399547Comment by Paul de Vrieze on Java: Fonts and PixelsPaul de Vrieze2009-09-09T13:13:30Z2009-09-09T13:13:30ZFontMetrics is abstract because the result depends on the particular graphics object used.http://stackoverflow.com/questions/1399532/how-should-i-choose-where-to-store-an-object-in-c/1399566#1399566Comment by Paul de Vrieze on How should I choose where to store an object in C++?Paul de Vrieze2009-09-09T13:10:17Z2009-09-09T13:10:17ZAlso remember that types like string and vector will be mainly heap-based, but hide all details from you. The way it should be in C++http://stackoverflow.com/questions/1399489/how-do-you-connect-to-a-cctv-camera-from-software/1399519#1399519Comment by Paul de Vrieze on How do you connect to a CCTV camera from software?Paul de Vrieze2009-09-09T13:02:37Z2009-09-09T13:02:37ZJust remember that java does not support flash ;-)http://stackoverflow.com/questions/743827/how-to-read-all-child-elements-with-tag-names-and-their-value-from-a-xml-file/1226225#1226225Comment by Paul de Vrieze on How to read all child elements with tag names and their value from a xml file?Paul de Vrieze2009-09-09T10:38:42Z2009-09-09T10:38:42ZTry asking a new questionhttp://stackoverflow.com/questions/881650/auto-forward-mails-to-gmail-from-outlook/881755#881755Comment by Paul de Vrieze on Auto Forward mails to gmail from OutlookPaul de Vrieze2009-06-27T20:45:41Z2009-06-27T20:45:41ZThis probably means that the blocking happens at a different stage. The outward email can be configured to go through a gateway server that blocks things. That would mean that the originating server things it is sent (and puts the mail in your sent mail folder), but that the intermediary blocks things from going out.http://stackoverflow.com/questions/881298/soap-body-is-utf-8-encoded-twice/881310#881310Comment by Paul de Vrieze on Soap body is utf-8 encoded twicePaul de Vrieze2009-05-19T09:27:39Z2009-05-19T09:27:39ZYour debugging says it. The data does not enter your application properly. You probably want to use wireshark to look at how the browser submits the data to your application, as the problem exists there.http://stackoverflow.com/questions/577773/experiencing-occasional-long-garbage-collection-delays-why/579314#579314Comment by Paul de Vrieze on Experiencing occasional long garbage collection delays, why?Paul de Vrieze2009-04-15T09:48:52Z2009-04-15T09:48:52Zobject pooling is actually discouraged by the sun GC people. The GC is specifically tuned for this case. The GC especially likes objects that don't change.http://stackoverflow.com/questions/478006/java-bug-or-feature/478010#478010Comment by Paul de Vrieze on Java bug or feature? Paul de Vrieze2009-01-25T19:57:28Z2009-01-25T19:57:28ZOr, welcome to the world of pointers. And then you thought that java didn't have them :-).http://stackoverflow.com/questions/105834/does-the-jvm-prevent-tail-call-optimizations/105897#105897Comment by Paul de Vrieze on Does the JVM prevent tail call optimizations?Paul de Vrieze2009-01-05T09:16:22Z2009-01-05T09:16:22ZDescribe what is in the posthttp://stackoverflow.com/questions/399792/inadvertent-use-of-instead-of/399846#399846Comment by Paul de Vrieze on Inadvertent use of = instead of ==Paul de Vrieze2008-12-30T12:43:57Z2008-12-30T12:43:57ZYou are unfortunately abusing assertions. Assert statements are to detect things that should not happen, and are programming errors. Using assertions to check for success of fopen is broken. http://stackoverflow.com/questions/309565/how-do-i-stop-the-sun-jdk1-6-builtin-stax-parser-from-resolving-dtd-entities/309643#309643Comment by Paul de Vrieze on How do I stop the Sun JDK1.6 builtin StAX parser from resolving DTD entitiesPaul de Vrieze2008-11-21T19:32:10Z2008-11-21T19:32:10ZSetting this works only when I use woodstox. I was trying to use the sun provider.http://stackoverflow.com/questions/290326/stax-xml-formatting-in-java/290507#290507Comment by Paul de Vrieze on StAX XML formatting in JavaPaul de Vrieze2008-11-21T17:16:33Z2008-11-21T17:16:33ZThe link to the approach misses a colon after the https