User mattwright - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:41:45Z http://stackoverflow.com/feeds/user/33106 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1337470/type-limitation-in-loop-variables-in-java-c-and-c/1337562#1337562 0 Answer by mattwright for Type limitation in loop variables in Java, C and C++ mattwright 2009-08-26T21:21:02Z 2009-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 &lt; 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#1331951 1 Answer by mattwright for A quick-switch alternative for HSQLDB file mode (I need concurrent access now) mattwright 2009-08-26T01:45:07Z 2009-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#1285257 0 Answer by mattwright for iPhone Music Game Problem With Double Tapping Home Button mattwright 2009-08-16T20:20:51Z 2009-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#1139694 1 Answer by mattwright for GLib-GObject-CRITICAL warnings mattwright 2009-07-16T19:10:01Z 2009-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#1128100 2 Answer by mattwright for What is a good FIX protocol API library for Java? mattwright 2009-07-14T21:18:15Z 2009-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#1123067 2 Answer by mattwright for UITextField will not auto capitalize throughout entire project. mattwright 2009-07-14T01:45:51Z 2009-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#1110701 2 Answer by mattwright for Utility to view threads in a Java process mattwright 2009-07-10T16:52:07Z 2009-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#1076733 2 Answer by mattwright for A good Design-by-Contract library for Java? mattwright 2009-07-02T21:17:11Z 2009-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#1054911 1 Answer by mattwright for What does it take to become a Java expert? mattwright 2009-06-28T13:16:08Z 2009-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#981764 1 Answer by mattwright for What's the best toolchain for Continuous Integration with C++? mattwright 2009-06-11T15:18:45Z 2009-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#534077 0 Answer by mattwright for Join multiple XML files with xinclude tags into single file mattwright 2009-02-10T20:35:12Z 2009-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-printing 1 How do you enable word wrap in vim when printing mattwright 2009-02-10T17:41:09Z 2009-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-keyword Comment by mattwright on How would you replace the 'new' keyword? mattwright 2009-08-13T14:27:48Z 2009-08-13T14:27:48Z Is 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#1123067 Comment by mattwright on UITextField will not auto capitalize throughout entire project. mattwright 2009-07-14T03:32:39Z 2009-07-14T03:32:39Z Glad I could help. http://stackoverflow.com/questions/533385/how-do-you-enable-word-wrap-in-vim-when-printing Comment by mattwright on How do you enable word wrap in vim when printing mattwright 2009-02-13T18:35:55Z 2009-02-13T18:35:55Z enscript works great, note that enscript added word-wrap support in 1.6.