User Nik Reiman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T21:05:12Z http://stackoverflow.com/feeds/user/14302 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914608/is-it-possible-to-define-initial-parameter-arguments-for-java-webapp-listeners 0 Is it possible to define initial parameter arguments for Java webapp listeners? Nik Reiman 2009-12-16T13:17:19Z 2009-12-16T13:25:55Z <p>In a web application's web.xml file, one can define initial parameters for servlets and filters by using the init-param element. Parameters defined here can then be retrieved by calling getServletConfig(). It does not seem possible to do the same with listeners, as the DTD only defines the listener-class element there.</p> <p>I would really rather not resort to having a bunch of random properties files (or even worse, more XML configuration ones) inside of my webapp, but I'm not sure how I can otherwise pass data to my listeners during initialization. Any ideas?</p> http://stackoverflow.com/questions/234401/scm-inside-or-outside-the-ide 1 SCM inside or outside the IDE? Nik Reiman 2008-10-24T17:03:57Z 2009-12-15T16:23:50Z <p>I've personally always used some type of external application for my SCM work; these days, that means <a href="http://tortoisesvn.tigris.org" rel="nofollow">tortoiseSVN</a> on windows and <a href="http://versionsapp.com" rel="nofollow">versions.app</a> on the mac. However, I keep running up against developers (namely eclipse users) who argue that SCM is better done within the IDE itself. I've yet to hear any really compelling arguments in favor of this workflow, and I personally like a degree of "separation" between the IDE and SCM operations. This has been burned into me from using unstable SVN plugins in Visual Studio, and the sub-standard SVN support in Xcode in years past when working offline.</p> <p>Which way promotes the better workflow in your opinion?</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611438#611438 12 Answer by Nik Reiman for How can I impress people with Perl's capabilities? Nik Reiman 2009-03-04T16:46:07Z 2009-11-22T11:05:27Z <p>Years ago, when I was first learning how to program, my girlfriend's cousin showed me a perl script he'd written which contacted a database containing the positions of all known satellites, and calculated the flyover times for the largest objects, like the space station Mir. The script ran via cron on a server he ran, and it would run periodically and then send him a page about 5 minutes before the given object was visible overhead in the night sky. As we were walking around town, he could get everybody's attention by suddenly pointing up and saying "LOOK!", and everybody ooohed and ahhhed right as the satellite cruised overhead.</p> <p>I was really impressed by that script at the time, since I had no idea how to write a program nearly that complex. Now that I would have a much better idea, I still think it made a good demo, as it showed something novel that could be done with the language in a relatively short amount of time and with little sweat. So I'd say to pick something novel or interesting, and emphasize perl's economy of language, and it's networking capabilities.</p> http://stackoverflow.com/questions/234458/does-polymorphism-or-conditionals-promote-better-design 8 Does polymorphism or conditionals promote better design? Nik Reiman 2008-10-24T17:19:46Z 2009-11-18T22:35:47Z <p>I recently stumbled across <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">this entry in the google testing blog</a> about guidelines for writing more testable code. I was in agreement with the author until this point:</p> <blockquote> <p>Favor polymorphism over conditionals: If you see a switch statement you should think polymorphisms. If you see the same if condition repeated in many places in your class you should again think polymorphism. Polymorphism will break your complex class into several smaller simpler classes which clearly define which pieces of the code are related and execute together. This helps testing since simpler/smaller class is easier to test.</p> </blockquote> <p>I simply cannot wrap my head around that. I can understand using polymorphism instead of RTTI (or DIY-RTTI, as the case may be), but that seems like such a broad statement that I can't imagine it actually being used effectively in production code. It seems to me, rather, that it would be easier to add additional test cases for methods which have switch statements, rather than breaking down the code into dozens of separate classes.</p> <p>Also, I was under the impression that polymorphism can lead to all sorts of other subtle bugs and design issues, so I'm curious to know if the tradeoff here would be worth it. Can someone explain to me exactly what is meant by this testing guideline?</p> http://stackoverflow.com/questions/1708819/cross-platform-audio-analysis-library/1709328#1709328 0 Answer by Nik Reiman for Cross platform audio analysis library Nik Reiman 2009-11-10T16:38:56Z 2009-11-10T16:38:56Z <p>Well, querying the amplitude for a given sample is rather easy, you only need to convert the sample's value to decibels. As for the other types of analysis, you'll probably find <a href="http://aubio.org/" rel="nofollow">aubio</a> to be a good tool. It can do frequency detection, and even gives you the option of using a number of different detection algorithms depending on whether you need accuracy or performance.</p> http://stackoverflow.com/questions/204616/how-to-migrate-all-urls-in-svnexternals-properties-across-a-repository 3 How to migrate all URLs in svn:externals properties across a repository? Nik Reiman 2008-10-15T13:02:36Z 2009-11-03T14:03:19Z <p>We are in the process of moving our SVN repositories from one machine to another one, and with it will come a new domain name for the new repo. The problem is, that within the repository, there are lots of svn:externals references to other projects within the repository. So for example, we have projectA, which has in the svn:externals properties:</p> <pre><code>external/libraryA svn://oldserver.net/repo/libraryA external/libraryB svn://oldserver.net/repo/libraryB </code></pre> <p>...and so on. All of the URL's reference this particular domain name, so it can be easily parsed. Having already learned my lesson, I will migrate these URLs to be "svn://localhost/", but I need to find a way to go through the repository history and rewrite all of the old URLs, so that we can still check out older revisions of these projects without having broken links.</p> <p>How would I go about doing this?</p> http://stackoverflow.com/questions/892203/how-do-i-delete-an-eclipse-perspective-for-a-plugin-i-uninstalled 2 How do I delete an Eclipse perspective for a plugin I uninstalled? Nik Reiman 2009-05-21T10:08:14Z 2009-10-10T16:55:18Z <p>I was evaluating the Enterprise IDE plugin for Eclipse, and ultimately decided not to purchase it. After I uninstalled the plugin, I was left with a bunch of perspective buttons (the ones in the far upper-right-hand corner) which I can't remove. How do I get rid of the manually, without nuking my workspace?</p> <p><strong>Edit</strong>: To be clear, right-clicking and going to "close" does nothing. Not even an error message.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1466303#1466303 6 Answer by Nik Reiman for What is the worst real-world macros/pre-processor abuse you've ever come across? Nik Reiman 2009-09-23T14:21:35Z 2009-09-23T14:21:35Z <p>I once had to port a C application from unix to windows, the specific nature of which shall remain unnamed to protect the guilty. The guy who wrote it was a professor unaccustomed to writing production code, and had clearly come to C from some other language. It also happens that English wasn't his first language, though the in country he came from from the majority of people speak it quite well. </p> <p>His application made heavy use of the preprocessor to twist the C language into a format he could better understand. But the macros he used the most were defined in a header file named 'Thing.h' (seriously), which included the following:</p> <pre><code>#define I Any void_me #define thou Any void_thee #define iam(klas) klas me = (klas) void_me #define thouart(klas) klas thee = (klas) void_thee #define my me -&gt; #define thy thee -&gt; #define his him -&gt; #define our my methods -&gt; #define your thy methods -&gt; </code></pre> <p>...which he then used to write monstrosities like the following:</p> <pre><code>void Thing_setName (I, const char *name) { iam (Thing); if (name != my name) { Melder_free (my name); my name = Melder_wcsdup (name); } our nameChanged (me); } void Thing_overrideClass (I, void *klas) { iam (Thing); my methods = (Thing_Table)klas; if (! ((Thing_Table) klas) -&gt; destroy) ((Thing_Table) klas) -&gt; _initialize (klas); } </code></pre> <p>The entire project (~60,000 LOC) was written in a similar style -- marco hell, weird names, Olde-English jargon, etc. Fortunately we were able to throw the code out since I found an OSS library which performed the same algorithm dozens of times faster.</p> <p>(I've copied and edited this answer which I originally made <a href="http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194124#194124">on this question</a>).</p> http://stackoverflow.com/questions/1140991/how-do-i-get-intellij-not-to-analyze-my-ant-build-files 1 How do I get Intellij not to analyze my ant build files? Nik Reiman 2009-07-17T00:34:39Z 2009-09-10T07:57:30Z <p>I'm using ant as my primary builder for a flex project in IntelliJ. Every time I build, IntelliJ runs the code analysis tool and finds a bunch of errors in my build file, which pops up the "Messages" window every time. Actually, the errors that it finds are complaining mostly about properties which are defined in a separate file, which it doesn't actually parse when running the analysis.</p> <p><strong>Edit</strong>: Additionally, I am making use of ant tasks which generate properties on the fly, which IntelliJ is unaware of.</p> <p>Is there any way to turn off file inspection for ant build files during the build process?</p> http://stackoverflow.com/questions/581043/sql-query-throws-not-in-aggregate-function-or-group-by-clause-exception 0 SQL query throws "not in aggregate function or group by clause" exception Nik Reiman 2009-02-24T09:17:14Z 2009-09-08T07:23:10Z <p>I'm working on repairing the test suite for a project of ours, which is being tested through Hibernate/DBUnit. There are several test cases which all throw a similar exception from Hibernate, which looks something like this:</p> <p><em>java.sql.SQLException: Not in aggregate function or group by clause: org.hsqldb.Expression@109062e in statement [... blah ...]</em></p> <p>Through my googling, I am suspicious that this is caused by our use of the aggregate function AVG(), as this is in the exception's message, and all of the queries that throw contain it. However, I discovered several links to people who were getting this error, and were able to fix it by either commenting out an "ORDER BY" or "GROUP BY" clause, or by including the other columns from the SELECT clause in the grouping. I understand why this would fix such an error message, but I'm not sure whether it applies to my situation, because I tried doing the same and it made no difference. Also, we have some test cases throwing exceptions which use ORDER/GROUP, but not all. For example:</p> <pre><code>ThingerVO myThinger = (ThingerVO)session.createQuery("SELECT new ThingerVO(" + "r.id, " + "u.id, " + "u.alias, " + "s.id, " + "s.name, " + "r.URL," + "AVG(v.rating), " + "r.totalCount, " + "r.isPrivate, " + "a.id, " + "a.name, " + "r.transactionId, " + "r.size, " + "u.hasPicture " + ") FROM Thinger r LEFT OUTER JOIN r.votes as v, Table1S s " + "JOIN s.Table2A AS a, User u " + "WHERE r.userId = u.id AND " + "s.id = r.Table1SId AND " + "r.id = :thingId") .setInteger("thingId", thingId) .uniqueResult(); </code></pre> <p>This query also causes the same exception to be thrown, even though it doesn't use an ORDER/GROUP clause. Also, I cut/pasted the generated HSQL code from Hibernate directly into the MySQL query browser, and it ran without problems. Also, it's worth pointing out that all of this code works fine on our production database, so I'm really confused as to why it throws here.</p> <p>Some other potentially useful information -- we're using a flat XML database structure with some dummy test data for the test cases, and the MySQL dialect for hibernate. We're using dbunit 2.4.3/hibernate 3.2.6. I tried using the latest hibernate, version 3.3.1, but it behaved the same.</p> <p>Any pointers or hints would be greatly appreciated.</p> http://stackoverflow.com/questions/1374674/audio-unit-and-writing-to-file/1377722#1377722 0 Answer by Nik Reiman for Audio Unit and Writing to file Nik Reiman 2009-09-04T07:33:34Z 2009-09-04T07:33:34Z <p>Before you can do any sort of debugging, you probably need to figure out what that error message actually means. Have you tried passing that status code to GetMacOSStatusErrorString() or GetMacOSStatusCommentString()? They aren't documented so well, but they are declared in CoreServices/CarbonCore/Debugging.h.</p> http://stackoverflow.com/questions/562273/what-output-and-recording-ports-does-the-java-sound-api-find-on-your-computer/562434#562434 3 Answer by Nik Reiman for What output and recording ports does the Java Sound API find on your computer? Nik Reiman 2009-02-18T19:16:18Z 2009-08-26T19:39:31Z <p>As Uri noted, the Java Sound API definitely does not produce any interesting results on Mac OS X:</p> <pre><code>OS: Darwin 9.6.0/i386 Java: 1.6.0_03-p3 (Sun Microsystems Inc.) Mixer: software mixer and synthesizer [Java Sound Audio Engine] </code></pre> <p>Also, I should note that I'm using soylatte-1.0.3 rather than the rather elderly JDK distributed with Apple's developer tools.</p> http://stackoverflow.com/questions/1008996/modulebase-vs-module/1311568#1311568 0 Answer by Nik Reiman for ModuleBase vs. Module Nik Reiman 2009-08-21T12:07:36Z 2009-08-21T12:07:36Z <p>According to a comment inside of the ModuleBase.as file:</p> <blockquote> <p>The base class for ActionScript-based dynamically-loadable modules. If you write an ActionScript-only module, you should extend this class. If you write an MXML-based module by using the <code>&lt;mx:Module&gt;</code> tag in an MXML file, you instead extend the Module class.</p> </blockquote> <p>... and within Module.as:</p> <blockquote> <p>If your module does not include any framework code, you can create a class that extends the ModuleBase class. If you use the ModuleBase class, your module will typically be smaller than if you create a module that is based on the Module class because it does not have any framework class dependencies.</p> </blockquote> <p>So basically, if you are writing an MXML component, or if you are using flex framework classes, then you should use the Module class. Otherwise, ModuleBase is more appropriate.</p> http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug 17 Program only crashes as release build -- how to debug? Nik Reiman 2008-10-09T07:18:42Z 2009-08-19T16:16:40Z <p>I've got a "Schroedinger's Cat" type of problem here -- my program (actually the test suite for my program, but a program nonetheless) is crashing, but only when built in release mode, and only when launched from the command line. Through caveman debugging (ie, nasty printf() messages all over the place), I have determined the test method where the code is crashing, though unfortunately the actual crash seems to happen in some destructor, since the last trace messages I see are in other destructors which execute cleanly.</p> <p>When I attempt to run this program inside of Visual Studio, it doesn't crash. Same goes when launching from WinDbg.exe. The crash only occurs when launching from the command line. This is happening under Windows Vista, btw, and unfortunately I don't have access to an XP machine right now to test on.</p> <p>It would be really nice if I could get Windows to print out a stack trace, or <em>something</em> other than simply terminating the program as if it had exited cleanly. Does anyone have any advice as to how I could get some more meaningful information here and hopefully fix this bug?</p> <p>Edit: The problem was indeed caused by an out-of-bounds array, <a href="http://stackoverflow.com/questions/186237/program-only-crashes-as-release-build-how-to-debug#187966">which I describe more in this post</a>. Thanks everybody for your help in finding this problem!</p> http://stackoverflow.com/questions/1254137/osx-audio-use-garage-band-plug-ins-in-my-own-app/1258618#1258618 0 Answer by Nik Reiman for OSX Audio: use Garage Band Plug-ins in my own app Nik Reiman 2009-08-11T05:47:07Z 2009-08-11T05:47:07Z <p>The AudioUnit plugins in both Garage Band and Logic are exclusive to those programs and can't be used in other hosts, as you had suspected. However, there are plenty of great third-party plugins out there which you could use to achieve the same effect... just do a search over at the <a href="http://www.kvraudio.com/get.php" rel="nofollow">KVR Audio plugin database</a>. You might be able to find a nice freeware plugin that does what you want, or you could possibly cut a deal with a developer to redistribute a plugin with your app.</p> <p>Also, you should keep in mind that while there are plenty of vocal processing plugins out there, you can also brew your own with an effect chain built from several other effects. For instance, you can generally get pretty good results by chaining up a noise reducer, EQ, stereo enhancer, reverb, and compressor. There are some more suggestions in <a href="http://www.harmony-central.com/articles/tips/13%5Fvocal%5Fprocessing%5Ftips/" rel="nofollow">this nice harmony central article</a>, or just google for "studio vocal processing" (or some variation thereof).</p> http://stackoverflow.com/questions/1205748/getting-duplicate-entry-errors-from-hibernate-is-mysql-to-blame 0 Getting duplicate entry errors from Hibernate, is MySQL to blame? Nik Reiman 2009-07-30T10:31:10Z 2009-07-30T17:07:56Z <p>I am working on a database application which is mostly read-only, but there is one table which records user movement in the app and has a large number of writes to it. For every few thousand writes, we see a few exceptions in the error log like so:</p> <pre><code>[WARN][2009-07-30 11:09:20,083][org.hibernate.util.JDBCExceptionReporter] SQL Error: 1062, SQLState: 23000 [ERROR][2009-07-30 11:09:20,083][org.hibernate.util.JDBCExceptionReporter] Duplicate entry '17011' for key 1 [ERROR][2009-07-30 11:09:20,083][org.hibernate.event.def.AbstractFlushingEventListener] Could not synchronize database state with session org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:94) at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66) at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:275) </code></pre> <p>The table in question has the following schema:</p> <pre><code>CREATE TABLE IF NOT EXISTS `my_table` ( `id` int(11) NOT NULL, `data1` int(11) NOT NULL, `data2` int(11) NOT NULL, `timestamp` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; </code></pre> <p>And the corresponding Hibernate mapping XML:</p> <pre><code>&lt;hibernate-mapping&gt; &lt;class name="mycorp.MyClass" table="my_table"&gt; &lt;id name="id" column="id" type="java.lang.Integer"&gt; &lt;generator class="increment"/&gt; &lt;/id&gt; &lt;property name="data1" column="data1" type="java.lang.Integer"/&gt; &lt;property name="data2" column="data2" type="java.lang.Integer"/&gt; &lt;property name="timestamp" column="timestamp" type="java.util.Date"/&gt; &lt;/class&gt; &lt;/hibernate-mapping&gt; </code></pre> <p>It is possible, though unlikely, that multiple instances of our webapp could be writing to the database at once, since we version numbers in our webapp context to seamlessly release new versions of the applications. Clients with the old version of the application cached in their web browser would thus access the old versions of the server, which we undeploy after a few weeks.</p> <p>Anyways, I'm not convinced that this is the problem, but I'm suspicious that there is some synchronization issue between MySQL and Hibernate at hand here. Would changing my generator to sequence, seqhilo or hilo help? Also, if you can provide an example of setting up such a generator in MySQL, that would be very helpful, as most of the resources online are simply copy-pasted from the woefully minimalistic examples in the Hibernate manual.</p> http://stackoverflow.com/questions/1176707/recording-from-microphone-from-within-the-browser-using-flex-or-processing/1184407#1184407 1 Answer by Nik Reiman for Recording from microphone from within the browser using flex or processing Nik Reiman 2009-07-26T12:07:09Z 2009-07-26T12:07:09Z <p>Your footnote kind of answered your own question. :) No, it is not possible to read the raw bytes from the microphone from the client side. It is possible that Adobe will implement this in Flash 11, but don't hold your breath for it.</p> <p>If you set up a flash server, such as <a href="http://osflash.org/red5" rel="nofollow">Red5</a>, then you can read the raw stream on the backend and send FFT data back to the client over AMF. This is actually possible to do with very low latency, though it may still be too high depending on the nature of your application. There are several examples on the Red5 page about how to accomplish things similar to this using a Java webapp working on the backend.</p> http://stackoverflow.com/questions/1180873/extra-bytes-in-mid-files/1184395#1184395 1 Answer by Nik Reiman for Extra bytes in .mid files Nik Reiman 2009-07-26T12:02:03Z 2009-07-26T12:02:03Z <p>MusiGenesis got it half right -- you are not parsing variable length deltas correctly. But the other events that you are seeing are <a href="http://www.blitter.com/~russtopia/MIDI/~jglatt/tech/midispec/run.htm" rel="nofollow">running status</a>, which is a technique used to save bandwidth by omitting the status byte when you are sending multiple messages of the same type.</p> <p>Here's how that dump should be parsed:</p> <pre> 4d 54 72 6b 00 00 04 48 Track Header 00 c0 19 Program Change 00 ff 03 07 54 72 61 63 6b 20 31 Track Title 00 b0 05 00 Controller Event 00 64 00 Running status (controller event) 00 06 0c Running status (controller event) 00 26 00 Running status (controller event) 00 b0 20 00 Controller Event </pre> <p>and so on. But what I don't understand is why a whole bunch of extra events appear after the end of track message before the next track header? Have you pasted your MIDI file in its entirety?</p> http://stackoverflow.com/questions/1109466/why-are-my-dbunit-tests-consuming-so-much-memory 0 Why are my DBUnit tests consuming so much memory? Nik Reiman 2009-07-10T13:19:19Z 2009-07-22T19:20:08Z <p>I've got a hibernate-based application which uses DBUnit for unit testing. We have an XML test database, which gets loaded up with dummy data in the setUp() of each test and deleted during the tearDown(). The problem is that I can no longer run the entire suite in an IDE (in this case, Intellij), because after about 300 tests, the heap memory gets all used up. The tests go from taking ~0.3 seconds to 30+ seconds to execute, until the JVM eventually gives up and dies.</p> <p>When I run the test suite via ant's junit task, then it's no problem, nor is running the test suite for an individual class. However, I like being able to run the whole suite locally before I check in large refactoring changes to the codebase rather than breaking the build on the CI server.</p> <p>I am running the test suite with -Xmx512m as my only argument to the JVM, which is the same amount I pass to ant when running the task on the CI server. My hibernate-test.cfg.xml looks like this:</p> <pre><code>&lt;hibernate-configuration&gt; &lt;session-factory&gt; &lt;!-- Database connection settings --&gt; &lt;property name="connection.driver_class"&gt;org.hsqldb.jdbcDriver&lt;/property&gt; &lt;property name="connection.url"&gt;jdbc:hsqldb:mem:mydatabase&lt;/property&gt; &lt;property name="connection.username"&gt;sa&lt;/property&gt; &lt;property name="connection.password"/&gt; &lt;!-- Other configuration properties --&gt; &lt;property name="connection.pool_size"&gt;1&lt;/property&gt; &lt;property name="jdbc.batch_size"&gt;20&lt;/property&gt; &lt;property name="connection.autocommit"&gt;true&lt;/property&gt; &lt;property name="dialect"&gt;org.hibernate.dialect.HSQLDialect&lt;/property&gt; &lt;property name="current_session_context_class"&gt;thread&lt;/property&gt; &lt;property name="cache.provider_class"&gt;org.hibernate.cache.HashtableCacheProvider&lt;/property&gt; &lt;property name="bytecode.use_reflection_optimizer"&gt;false&lt;/property&gt; &lt;property name="show_sql"&gt;true&lt;/property&gt; &lt;property name="hibernate.hbm2ddl.auto"&gt;create-drop&lt;/property&gt; &lt;!-- Mappings (omitted for brevity) --&gt; &lt;mapping resource="hbm/blah.hbm.xml"/&gt; &lt;/session-factory&gt; &lt;/hibernate-configuration&gt; </code></pre> <p>We have written a class for which all of the test classes extend from, which looks something like this:</p> <pre><code>package com.mycompany.test; // imports omitted for brevity public abstract class DBTestCase extends TestCase { private final String XML_DATA_SET = "test/resources/mytestdata.xml"; private Session _session; private Configuration _config; public DBTestCase(String name) { super(name); } @Override protected void setUp() throws Exception { super.setUp(); _config = new Configuration().configure(); SessionFactory sf = _config.buildSessionFactory(); // This is a singleton which is used the DAO's to acquire a session. // The session must be manually set from the test's setup so that any // calls to the singleton return this session factory, otherwise NPE // will result, since the session factory is normally built during // webapp initialization. HibernateUtil.setSessionFactory(sf); _session = sf.openSession(); _session.beginTransaction(); IDataSet dataSet = new FlatXmlDataSet(new File(XML_DATA_SET)); DatabaseOperation.CLEAN_INSERT.execute(getConnection(), dataSet); } protected void tearDown() throws Exception { super.tearDown(); _session.close(); } protected IDatabaseConnection getConnection() throws Exception { ConnectionProvider connProvider = ConnectionProviderFactory .newConnectionProvider(_config.getProperties()); Connection jdbcConnection = connProvider.getConnection(); DatabaseConnection dbConnection = new DatabaseConnection(jdbcConnection); DatabaseConfig dbConfig = dbConnection.getConfig(); dbConfig.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new HsqldbDataTypeFactory()); return dbConnection; } } </code></pre> <p>It is clear that some memory leak is going on here, but I'm not sure where. How might I go about diagnosing this?</p> http://stackoverflow.com/questions/1109466/why-are-my-dbunit-tests-consuming-so-much-memory/1167569#1167569 0 Answer by Nik Reiman for Why are my DBUnit tests consuming so much memory? Nik Reiman 2009-07-22T19:20:08Z 2009-07-22T19:20:08Z <p>J-16 SDiZ's answer got me working in the right direction, but I thought I would provide a bit more detailed information as to how I was able to solve this. The root of the problem was indeed that the database kept being stored in memory, but the solution was to inherit from DBUnit's DBTestCase class, not try to roll my own by inheriting from the JUnit TestCase. My test case base class now looks something like this:</p> <pre><code>public class MyTestCase extends DBTestCase { private static Configuration _config = null; public MyTestCase(String name) { super(name); if(_config == null) { _config = new Configuration().configure(); SessionFactory sf = _config.buildSessionFactory(); HibernateUtil.setSessionFactory(sf); } System.setProperty(PropertiesBasedJdbcDatabaseTester.DBUNIT_DRIVER_CLASS, "org.hsqldb.jdbcDriver"); System.setProperty(PropertiesBasedJdbcDatabaseTester.DBUNIT_CONNECTION_URL, "jdbc:hsqldb:mem:mydbname"); System.setProperty(PropertiesBasedJdbcDatabaseTester.DBUNIT_USERNAME, "sa"); System.setProperty(PropertiesBasedJdbcDatabaseTester.DBUNIT_PASSWORD, ""); } @Override protected IDataSet getDataSet() throws Exception { return new FlatXmlDataSet(new FileReader(MY_XML_DATA_FILE_NAME), false, true, false); } @Override protected void setUpDatabaseConfig(DatabaseConfig config) { config.setProperty(DatabaseConfig.PROPERTY_DATATYPE_FACTORY, new HsqldbDataTypeFactory()); } </code></pre> <p>This class works quite well, and my test suite runs have gone down from several minutes to a mere 30 seconds.</p> http://stackoverflow.com/questions/1118261/what-is-the-correct-syntax-for-is-variable-getter-setters-in-a-pojo-class 3 What is the correct syntax for "is" variable getter/setters in a POJO class? Nik Reiman 2009-07-13T08:24:26Z 2009-07-13T08:42:06Z <p>If a class contains a variable named "blah", then the standard getter/setter syntax is obviously getBlah() and setBlah(). But if I have a POJO class with a variable named isBlah, would I use:</p> <pre><code>public type getIsBlah() { return isBlah; } public setIsBlah(type isBlah) { this.isBlah = isBlah; } </code></pre> <p>Or would it be this?</p> <pre><code>public type isBlah() { return isBlah; } public setBlah(type blah) { this.isBlah = blah; } </code></pre> <p>The first seems to conform more strictly to the POJO conventions, but the second type is what IntelliJ generates if I ask it to make a class' getter/setters (and hey, IntelliJ has never let me down yet :] ). So which is the preferred syntax?</p> http://stackoverflow.com/questions/1090575/parsing-the-output-of-usr-sbin-installer/1116141#1116141 2 Answer by Nik Reiman for Parsing the output of /usr/sbin/installer Nik Reiman 2009-07-12T14:41:49Z 2009-07-12T15:57:43Z <p>You should look at /var/log/install.log, which is where all the combined output from the Installer program goes. Also, depending on the nature of your program, you might find it useful to look at the receipt generated by the installer. These are found in /Library/Receipts. See <a href="http://support.apple.com/kb/TS1394" rel="nofollow">this Apple technote</a> for more info.</p> <p>At the end of an installation, you get some logging output like this:</p> <pre><code>Jul 10 19:26:24 ant Installer[24618]: Starting installation: Jul 10 19:26:24 ant Installer[24618]: Finalizing installation. Jul 10 19:26:24 ant Installer[24618]: IFDInstallController 857550 state = 5 Jul 10 19:26:24 ant Installer[24618]: Displaying 'Install Succeeded' UI. Jul 10 19:26:28 ant installdb[24624]: done. (0.006u + 0.004s) </code></pre> <p>While no hard return code is given here, there's at least enough to parse to determine if the installation was successful.</p> http://stackoverflow.com/questions/1069013/ansi-or-oem-codepage-when-using-mme-and-directmusic/1105867#1105867 0 Answer by Nik Reiman for ANSI or OEM Codepage when using MME and DirectMusic? Nik Reiman 2009-07-09T19:02:48Z 2009-07-09T19:16:26Z <p>I don't know for sure why the DirectMusic framework would use one set of codepages, and MME another, but the solution here on your end is probably to build an abstraction layer and then make specific implementations for each API. That way, the higher levels of your software don't need to concern itself with details like this.</p> <p>That said, the endpoint names definitely come from the OS. USB MIDI devices specify only endpoint types (ie, either input or output, and the number), but the OS is free to interpret them as it sees fit, which is why they are localized.</p> <p>There is not a specific API call (as far as I know) to find out which codepage the framework will deliver its strings in. However, DirectMusic does seem to use double wide characters with OEM codepage as a general convention, though I could not find this clearly stated in any of the MSDN docs. In the <a href="http://msdn.microsoft.com/en-us/library/dd551307%28VS.85%29.aspx" rel="nofollow">MSDN DirectMusic documentation about MIDI port capability structures</a>, the description type clearly is defined as a WCHAR, and the <a href="http://books.google.se/books?id=0TAE5me0GhwC&amp;pg=PA219&amp;lpg=PA219&amp;dq=directmusic+double+wide+characters&amp;source=bl&amp;ots=%5F5IAA0ZTNV&amp;sig=-vmYaPOJcM2igD-UDXsAH3KRmy0&amp;hl=sv&amp;ei=TDtWSu2PCZ6mnQPyxeTdCQ&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;resnum=1" rel="nofollow">Game Audio Programming</a> book seems to also indicate that this type is an API-wide convention. While it's dangerous to assume that OEM is the default encoding for these chars, I can't find anything that says otherwise (and googling for "DirectMusic codepage" now lists this page as the top hit).</p> <p><em>Edit</em>: Check out this <a href="http://stackoverflow.com/questions/909913/how-can-i-programmatically-determine-the-current-default-codepage-of-windows">stackoverflow question on determining the current OS codepage</a>. It is possible that the DirectMusic API sets the codepage in this manner.</p> http://stackoverflow.com/questions/1080297/how-does-midi-tempo-message-apply-to-other-tracks/1083712#1083712 2 Answer by Nik Reiman for How does Midi TEMPO message apply to other tracks? Nik Reiman 2009-07-05T08:57:53Z 2009-07-05T08:57:53Z <p>In short, yes. The first track contains the timing info which will be applied for the entire arrangement, so you apply these messages for each of the tracks with the same <em>absolute</em> time. Since all events use an offset in ticks, you need to first extract the tempo change messages, convert them to absolute time, and then as you are reading in the other tracks you will apply these messages based on that timeline.</p> <p>From the <a href="http://home.roadrunner.com/~jgglatt/tech/midifile.htm" rel="nofollow">MIDI fanatic's technical brainwashing center</a>:</p> <blockquote> <p>In a format 0 file, the tempo changes are scattered throughout the one MTrk. In format 1, the very first MTrk should consist of only the tempo (and time signature) events so that it could be read by some device capable of generating a "tempo map". It is best not to place MIDI events in this MTrk. In format 2, each MTrk should begin with at least one initial tempo (and time signature) event.</p> </blockquote> <p>That said, some sequencers do break this rule and put actual MIDI events in the first track alongside timing info, since the standard isn't so specific in this regard. Your program should deal with both cases, since it is likely to encounter MIDI files in the wild which are formatted in this way.</p> http://stackoverflow.com/questions/176273/creating-a-virtual-machine-image-as-a-continuous-integration-artifact 5 Creating a virtual machine image as a continuous integration artifact? Nik Reiman 2008-10-06T21:29:41Z 2009-06-18T17:20:26Z <p>I'm currently working on a server-side product which is a bit complex to deploy on a new server, which makes it an ideal candidate for testing out in a VM. We are already using Hudson as our CI system, and I would really like to be able to deploy a virtual machine image with the latest and greatest software as a build artifact.</p> <p>So, how does one go about doing this exactly? What VM software is recommended for this purpose? How much scripting needs to be done to accomplish this? Are there any issues in particular when using Windows 2003 Server as the OS here?</p> http://stackoverflow.com/questions/887781/will-hibernate-update-the-database-when-a-persistence-instance-has-been-set-but-n 1 Will hibernate update the database when a persistence instance has been set but not changed? Nik Reiman 2009-05-20T13:05:34Z 2009-05-20T13:25:17Z <p>If I have an instance of a persistence object, and I set some members in like so:</p> <pre><code>MyThing thing = session.get(MyThing.class, id); thing.setSomething(thing.getSomething()); session.update(thing); </code></pre> <p>Will this actually cause hibernate to issue an SQL update command to refresh the record? Or is hibernate smart enough to know that the object was updated, but the values have not actually changed?</p> http://stackoverflow.com/questions/428553/unable-to-get-hudson-to-parse-junit-test-output-xml 2 Unable to get hudson to parse JUnit test output XML Nik Reiman 2009-01-09T15:44:46Z 2009-05-14T10:37:18Z <p>I've recently switched to gtest for my C++ testing framework, and one great feature of it which I am presently unable to use is the ability to generate JUnit-style XML test reports, which could then be read in by our hudson build server.</p> <p>The XML output generated by the gtest test suite all looks legit:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;testsuite tests="370" failures="0" disabled="0" errors="0" time="45.61" name="AllTests"&gt; &lt;testsuite name="application" tests="7" failures="0" disabled="0" errors="0" time="8.953"&gt; &lt;testcase name="zero_tasks_on_bootup" status="run" time="0" classname="application" /&gt; ...etc. &lt;/testsuite&gt; &lt;/testsuite&gt; </code></pre> <p>I've also tried adding a JUnitReport task to my ant build script, which works fine, and generates XML like so:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;testsuite tests="370" failures="0" disabled="0" errors="0" time="45.61" name="AllTests"&gt; &lt;testsuite name="application" tests="7" failures="0" disabled="0" errors="0" time="8.953"&gt; &lt;testcase name="zero_tasks_on_bootup" status="run" time="0" classname="application" /&gt; ...etc. &lt;/testsuite&gt; &lt;/testsuite&gt; </code></pre> <p>The problem is, whenever I tell ant to publish the JUnit test results, and then point it to either the raw test result XML, or the compiled result generated in the ant JUnitReport task, hudson always complains about finding no test results there.</p> <p>I'm not a java guy, so I can't tell what's going on here, and I can't find an example of how the JUnit XML ought to look like. Can someone help to point me in the right direction?</p> http://stackoverflow.com/questions/428553/unable-to-get-hudson-to-parse-junit-test-output-xml/530860#530860 3 Answer by Nik Reiman for Unable to get hudson to parse JUnit test output XML Nik Reiman 2009-02-10T02:08:52Z 2009-05-14T10:37:18Z <p><strong>Edit</strong>: Google test has fixed this issue, which will be part of the gtest 1.3.1 release.</p> <p>Bah! I've finally found the cause of this problem -- it's because gtest produces one giant XML file for all test results, and hudson expects one XML test report per class. I've written <a href="http://www.teragon.org/stuff/SO/gtest-hudson.pl" rel="nofollow">a perl script as a workaround for this issue</a>. To use it, you would make a target in your ant xml script which looks something like this:</p> <pre><code>&lt;target name="runtests"&gt; &lt;exec executable="wherever/${ant.project.name}Test" failonerror="false" dir="tests"&gt; &lt;arg value="--gtest_output=xml:${build.dir}\reports\${ant.project.name}.xml"/&gt; &lt;/exec&gt; &lt;!-- Workaround for broken gtest output --&gt; &lt;mkdir dir="${build.dir}/reports/output"/&gt; &lt;exec executable="perl" failonerror="false" dir="tests"&gt; &lt;arg value="gtest-hudson.pl"/&gt; &lt;arg value="${build.dir}/reports/${ant.project.name}.xml"/&gt; &lt;arg value="${build.dir}/reports/output"/&gt; &lt;/exec&gt; &lt;/target&gt; </code></pre> <p>For some reason, gtest also doesn't like the wrong style of slashes being passed to it from ant, so I made my exec for windows only, as my hudson is running on a windows server. Change to '/' for unix, obviously.</p> <p>I've also <a href="http://code.google.com/p/googletest/issues/detail?id=114" rel="nofollow">filed an issue for this on the gtest page</a>, and also one on <a href="https://hudson.dev.java.net/issues/show%5Fbug.cgi?id=3007" rel="nofollow">hudson's issue tracker</a>, so hopefully one of the two teams will pick up on the issue, as I don't have enough time to jump in and make a patch myself.... though if this doesn't get fixed in the near future, I might just have to. ;)</p> http://stackoverflow.com/questions/472559/how-to-load-an-optional-task-into-ant-without-lib-or-global-installation 4 How to load an optional task into ant without -lib or global installation? Nik Reiman 2009-01-23T11:08:27Z 2009-05-13T15:49:01Z <p>I want to use the FTP task in ant, and I have found the appropriate jar files and got everything working fine. I have put the jar files in a "libs" directory alongside the other files used in the build. The only problem is that the user must run "ant -lib commons-net-ftp-2.0.jar" to make a build; I would really prefer that it were possible to just run "ant" with no arguments.</p> <p>Reading the <a href="http://ant.apache.org/manual/install.html" rel="nofollow">ant optional tasks intallation page</a>, I see that there are five ways one can load up extra libraries in ant, and none of them are really what I'm looking for. I do not want to force the user to make any modifications to their system to run this task; it should be possible to just load it from the "libs" directory inside of our product's source folder. So that means setting the global CLASSPATH is also out (which is a bad idea anyways).</p> <p>The last option, as noted in the documentation, is the preferred approach... loading the jarfiles individually from the build script itself. I have done this in the past with the ant-contrib tasks and JUnit, and would like to do that here, but I don't see how I can accomplish this. The FTP task doesn't support a nested classpath element, and I don't know the XML resource I would need to load this library via a taskdef. How can I load the libraries from within ant?</p> <p><strong>Edit:</strong> In response to the answers and questions which have been posted here so far, I'm using ant 1.7.1. Making an ftp taskdef definitely does not work; that throws the following error:</p> <p>BUILD FAILED /my/path/build.xml:13: taskdef class org.apache.tools.ant.taskdefs.optional.net.FTP cannot be found</p> <p>Perhaps this is because the classname is wrong. How exactly do I find the classname I'm supposed to use if I only have a jarfile? It's not documented anywhere, and I couldn't find anything in the jar itself resembling that path.</p> http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-10-5-6/855175#855175 2 Answer by Nik Reiman for Eclipse keyboard shortcuts broken in OSX 10.5.6 Nik Reiman 2009-05-12T22:23:41Z 2009-05-12T22:23:41Z <p>Woo-hoo! It's fixed as of 10.5.7!</p> http://stackoverflow.com/questions/1914608/is-it-possible-to-define-initial-parameter-arguments-for-java-webapp-listeners/1914628#1914628 Comment by Nik Reiman on Is it possible to define initial parameter arguments for Java webapp listeners? Nik Reiman 2009-12-16T14:22:18Z 2009-12-16T14:22:18Z I never knew that these could be defined in the web.xml -- but it's exactly what I was looking for. Thanks! http://stackoverflow.com/questions/1269689/to-disable-entering-ex-mode-in-vim Comment by Nik Reiman on To disable "Entering Ex mode" in Vim Nik Reiman 2009-12-12T12:43:09Z 2009-12-12T12:43:09Z So glad I found this question... and let me guess, you're a fellow dvorak user, no? :) http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/234494#234494 Comment by Nik Reiman on Tech Books you have but never read Nik Reiman 2009-11-22T11:05:22Z 2009-11-22T11:05:22Z Yeah I agree with jess... this one really isn't that hard of a read. Of course, that implies that you have the motivation to learn C, which these days is quite &quot;meh&quot;... http://stackoverflow.com/questions/1665236/jquery-how-to-run-background-music-in-website/1665261#1665261 Comment by Nik Reiman on JQuery: How to run background music in website? Nik Reiman 2009-11-03T09:47:34Z 2009-11-03T09:47:34Z While I agree here, I downvoted for obvious reasons... you're not answering the question at all, and the coder's hands are tied; it's a hard client requirement, as he's tried to patiently explain in the comments. http://stackoverflow.com/questions/581043/sql-query-throws-not-in-aggregate-function-or-group-by-clause-exception/1392474#1392474 Comment by Nik Reiman on SQL query throws "not in aggregate function or group by clause" exception Nik Reiman 2009-09-08T10:10:16Z 2009-09-08T10:10:16Z &quot;GROUP BY r.id, u.id, u.alias,&quot; etc..., but for every column except the AVG() one. http://stackoverflow.com/questions/1343327/flex-3-alert-text-doesnt-stretch-to-fill-space Comment by Nik Reiman on Flex 3 Alert text doesn't stretch to fill space? Nik Reiman 2009-08-27T19:31:44Z 2009-08-27T19:31:44Z Yeah, something is totally wrong with the way you are calling Alert. It should not stretch like that. Can you paste some code? http://stackoverflow.com/questions/772579/swf-is-not-a-loadable-module/853350#853350 Comment by Nik Reiman on SWF is not a loadable module Nik Reiman 2009-08-21T13:37:50Z 2009-08-21T13:37:50Z Ditto for me. Oy vey, what a helluva workaround... http://stackoverflow.com/questions/1244541/how-to-test-void-method-with-junit-testing-tools Comment by Nik Reiman on How to test void method with Junit testing tools? Nik Reiman 2009-08-07T13:02:50Z 2009-08-07T13:02:50Z Is it not possible to refactor the method to return something other than void? It's not like any existing code would be bothered, since no calls to the method are looking at the outcome. ;) http://stackoverflow.com/questions/1205748/getting-duplicate-entry-errors-from-hibernate-is-mysql-to-blame/1207976#1207976 Comment by Nik Reiman on Getting duplicate entry errors from Hibernate, is MySQL to blame? Nik Reiman 2009-07-31T13:18:16Z 2009-07-31T13:18:16Z Very thorough and clear answer -- thanks! http://stackoverflow.com/questions/1140991/how-do-i-get-intellij-not-to-analyze-my-ant-build-files/1141065#1141065 Comment by Nik Reiman on How do I get Intellij not to analyze my ant build files? Nik Reiman 2009-07-17T07:04:43Z 2009-07-17T07:04:43Z The .properties file is in the same directory as the build.xml. http://stackoverflow.com/questions/1108095/visual-svn-and-bug-tracking-integrated Comment by Nik Reiman on Visual SVN and Bug Tracking Integrated Nik Reiman 2009-07-10T07:23:38Z 2009-07-10T07:23:38Z This question should probably be community wiki, as there is no definite &quot;best&quot; bug tracking software. http://stackoverflow.com/questions/1080297/how-does-midi-tempo-message-apply-to-other-tracks/1083712#1083712 Comment by Nik Reiman on How does Midi TEMPO message apply to other tracks? Nik Reiman 2009-07-06T11:39:46Z 2009-07-06T11:39:46Z Yep, I love that webpage myself. It's a treasure trove for all things MIDI, and also has a nice dose of geek humor to keep things from getting too dry. In case you didn't figure it out already, the main portal page is actually at <a href="http://home.roadrunner.com/~jgglatt/" rel="nofollow">home.roadrunner.com/~jgglatt</a> http://stackoverflow.com/questions/970586/error-after-upgrading-flex-sdk-expected Comment by Nik Reiman on Error after upgrading Flex SDK: "{ expected " Nik Reiman 2009-06-09T15:01:43Z 2009-06-09T15:01:43Z Can you paste in the line which is causing this to fail? http://stackoverflow.com/questions/905728/when-programmers-dont-have-enough-work-what-to-do/905739#905739 Comment by Nik Reiman on When Programmers Don’t Have Enough Work, what to do? Nik Reiman 2009-05-25T19:16:52Z 2009-05-25T19:16:52Z Yep, nice answer. Any company who believes their product doesn't have bugs or is well tested enough is in serious denial... you can always do more. :) http://stackoverflow.com/questions/892203/how-do-i-delete-an-eclipse-perspective-for-a-plugin-i-uninstalled/893049#893049 Comment by Nik Reiman on How do I delete an Eclipse perspective for a plugin I uninstalled? Nik Reiman 2009-05-21T15:21:46Z 2009-05-21T15:21:46Z Sadly, no, this didn't work.