User mattwright - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T01:41:45Zhttp://stackoverflow.com/feeds/user/33106http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1337470/type-limitation-in-loop-variables-in-java-c-and-c/1337562#13375620Answer by mattwright for Type limitation in loop variables in Java, C and C++mattwright2009-08-26T21:21:02Z2009-08-26T21:21:02Z<p>According to the <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/statements.html#14.14" rel="nofollow">specification</a>, the initialization of the for statement can be a list of statement expressions which are evaluated and discarded, or a single variable declaration statement. A variable declaration statement can declare multiple variables, but they all are of the same type.</p>
<p>So you could do this:</p>
<pre><code>for (int i = 0, variable = obj.operation(); i < 15; i++) { ... }
</code></pre>
<p>But variable would be defined as an int in this case.</p>
http://stackoverflow.com/questions/1331759/a-quick-switch-alternative-for-hsqldb-file-mode-i-need-concurrent-access-now/1331951#13319511Answer by mattwright for A quick-switch alternative for HSQLDB file mode (I need concurrent access now)mattwright2009-08-26T01:45:07Z2009-08-26T01:45:07Z<p>SQLite might be a good option. See <a href="http://stackoverflow.com/questions/41233/java-and-sqlite">this SO question</a>. </p>
<p>However, I think running HSQL in server mode is probably the easiest option. I used it that way years ago and found it robust enough for basic concurrent access, and you will only need to change your url in your existing code.</p>
http://stackoverflow.com/questions/1284427/iphone-music-game-problem-with-double-tapping-home-button/1285257#12852570Answer by mattwright for iPhone Music Game Problem With Double Tapping Home Buttonmattwright2009-08-16T20:20:51Z2009-08-16T20:20:51Z<p>The behavior of the double-click of the Home button is controlled by the system preference in your iPhone settings under General -> Home. There is an option there to turn off iPod controls.</p>
<p>I'm not sure if this can be modified in code, however.</p>
http://stackoverflow.com/questions/1138843/glib-gobject-critical-warnings/1139694#11396941Answer by mattwright for GLib-GObject-CRITICAL warningsmattwright2009-07-16T19:10:01Z2009-07-16T19:10:01Z<p>One thing you can try is pass in --g-fatal-warnings to Gtk::Main, this will cause warnings to assert. You can attach with gdb and maybe figure out some more detail about where this is failing. </p>
http://stackoverflow.com/questions/1128039/what-is-a-good-fix-protocol-api-library-for-java/1128100#11281002Answer by mattwright for What is a good FIX protocol API library for Java?mattwright2009-07-14T21:18:15Z2009-07-14T21:18:15Z<p>I've used <a href="http://www.nyfix.com/buyside-solutions/messaging-monitoring/appia" rel="nofollow">Appia</a>, from NYFIX. It's quite nice and they provide some good monitoring tools for their servers. I have no idea on cost.</p>
<p><a href="http://www.quickfixj.org/" rel="nofollow">QuickFix/J</a> is an open source alternative. I haven't used it but it appears to be under active development.</p>
<p>You can get a full list at the <a href="http://www.fixprotocol.org/products/" rel="nofollow">Fix Protocol website</a> </p>
http://stackoverflow.com/questions/1123028/uitextfield-will-not-auto-capitalize-throughout-entire-project/1123067#11230672Answer by mattwright for UITextField will not auto capitalize throughout entire project.mattwright2009-07-14T01:45:51Z2009-07-14T01:45:51Z<p>Did you check your iPhone's Settings -> General -> Keyboard -> Auto-capitalization?</p>
http://stackoverflow.com/questions/1110664/utility-to-view-threads-in-a-java-process/1110701#11107012Answer by mattwright for Utility to view threads in a Java processmattwright2009-07-10T16:52:07Z2009-07-10T16:52:07Z<p>You could try <a href="http://java.sun.com/javase/6/docs/technotes/tools/share/jstack.html" rel="nofollow">jstack</a>, should be part of the jdk.</p>
http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java/1076733#10767332Answer by mattwright for A good Design-by-Contract library for Java?mattwright2009-07-02T21:17:11Z2009-07-02T21:17:11Z<p>It's been a long time since I've looked at these, but found some old links. One was for <a href="http://csd.informatik.uni-oldenburg.de/~jass/" rel="nofollow">JASS</a>. </p>
<p>The other one that I had used (and liked) was iContract by Reliable Systems. It had an ant task that you would run as a preprocessor. However, I can't seem to find it with some google searches, it looks like it has vanished. The original site is now a link farm. Check out <a href="http://answers.google.com/answers/threadview/id/500027.html" rel="nofollow">this link</a> for some possible ways to get to it.</p>
http://stackoverflow.com/questions/1054171/what-does-it-take-to-become-a-java-expert/1054911#10549111Answer by mattwright for What does it take to become a Java expert?mattwright2009-06-28T13:16:08Z2009-06-28T13:16:08Z<p>I think in the industry there are slightly different meanings for Java and C++ experts. Usually, Java expertise implies expertise with some set of APIs(such as J2EE), or a set of frameworks, or with a specific application server. It seems a smaller set of companies that use it are only using core Java, so often they measure expertise based on how many APIs you can claim to know. Often companies using C++ are using it for speed reasons and are writing much more of their code from scratch so they may be more interested in core language expertise. </p>
<p>That being said, I think Java as a language is much more straightforward, but its huge set of libraries and frameworks is very complex. C++ is difficult because you are basically learning three languages: procedural, object-oriented, and template meta-programming.</p>
http://stackoverflow.com/questions/25902/whats-the-best-toolchain-for-continuous-integration-with-c/981764#9817641Answer by mattwright for What's the best toolchain for Continuous Integration with C++?mattwright2009-06-11T15:18:45Z2009-06-11T15:18:45Z<p>Another option might be <a href="http://buildbot.net/trac" rel="nofollow">buildbot</a>.</p>
<p>It's written in python, but is not just for python apps. It can execute any script for doing your build. If you look at their success stories, there appear to be a wide variety of languages.</p>
http://stackoverflow.com/questions/72996/join-multiple-xml-files-with-xinclude-tags-into-single-file/534077#5340770Answer by mattwright for Join multiple XML files with xinclude tags into single filemattwright2009-02-10T20:35:12Z2009-02-10T20:35:12Z<p>Apache Xerces, for example, should support Xinclude, but you will need to enable it.</p>
<p><a href="http://xerces.apache.org/xerces2-j/faq-xinclude.html" rel="nofollow">http://xerces.apache.org/xerces2-j/faq-xinclude.html</a></p>
<pre><code>import javax.xml.parsers.SAXParserFactory;
SAXParserFactory spf = SAXParserFactory.newInstance();
spf.setNamespaceAware(true);
spf.setXIncludeAware(true);
</code></pre>
<p>Their documentation also says you can enable it as a <a href="http://xerces.apache.org/xerces2-j/features.html#xinclude" rel="nofollow">feature</a></p>
http://stackoverflow.com/questions/533385/how-do-you-enable-word-wrap-in-vim-when-printing1How do you enable word wrap in vim when printingmattwright2009-02-10T17:41:09Z2009-02-10T18:21:01Z
<p>I wanted to print a simple text document and make sure words wrap on word boundaries. I tried both </p>
<pre><code>set linebreak
</code></pre>
<p>and </p>
<pre><code>set wrap
</code></pre>
<p>but when printing, it just breaks on the right column in the middle of words. Is this possible for printing?</p>
http://stackoverflow.com/questions/1270449/how-would-you-replace-the-new-keywordComment by mattwright on How would you replace the 'new' keyword?mattwright2009-08-13T14:27:48Z2009-08-13T14:27:48ZIs this the article you were thinking of? <a href="http://www.c2.com/cgi/wiki?NewConsideredHarmful" rel="nofollow">c2.com/cgi/wiki?NewConsideredHarmful</a>http://stackoverflow.com/questions/1123028/uitextfield-will-not-auto-capitalize-throughout-entire-project/1123067#1123067Comment by mattwright on UITextField will not auto capitalize throughout entire project.mattwright2009-07-14T03:32:39Z2009-07-14T03:32:39ZGlad I could help.http://stackoverflow.com/questions/533385/how-do-you-enable-word-wrap-in-vim-when-printingComment by mattwright on How do you enable word wrap in vim when printingmattwright2009-02-13T18:35:55Z2009-02-13T18:35:55Zenscript works great, note that enscript added word-wrap support in 1.6.