<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Down Home Country Coding With Scott Selikoff and Jeanne Boyarsky &#187; JavaRanch Forum Migration</title>
	<atom:link href="http://www.selikoff.net/category/javaranch-forum-migration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.selikoff.net</link>
	<description>Java/J2EE Software Development and Technology Discussion Blog</description>
	<lastBuildDate>Thu, 29 Jul 2010 10:47:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>postgresql and jdbc</title>
		<link>http://www.selikoff.net/2010/06/13/postgresql-and-jdbc/</link>
		<comments>http://www.selikoff.net/2010/06/13/postgresql-and-jdbc/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 01:30:59 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1988</guid>
		<description><![CDATA[In postgresql &#8211; selecting maximum for each group, we saw the actual stored function.  That was the easy part.  Then there was dealing with Postgresql and JDBC.  I encountered a few surprises while doing this. Calling the stored function I expected to use JDBC&#8217;s CallableStatement since I was calling a stored procedure.  Nope.  The proper [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/06/13/postgresql-and-jdbc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>postgresql &#8211; selecting maximum for each group</title>
		<link>http://www.selikoff.net/2010/06/13/postgresql-selecting-maximum-for-each-group/</link>
		<comments>http://www.selikoff.net/2010/06/13/postgresql-selecting-maximum-for-each-group/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 01:30:27 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1983</guid>
		<description><![CDATA[I had a requirement to return the thread with the most replies in each forum at JavaRanch&#8216;s Coderanch forums.  In Postgresql 8.4, this would be very easy &#8211; just use the window functions.  Unfortunately, we aren&#8217;t on Postgresql 8.4 yet.  The other common pattern is something like SELECT stuff FROM mytable t1 WHERE date = [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/06/13/postgresql-selecting-maximum-for-each-group/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>process builder to run multi-platform postgres import</title>
		<link>http://www.selikoff.net/2010/04/25/process-builder-to-run-multi-platform-postgres-import/</link>
		<comments>http://www.selikoff.net/2010/04/25/process-builder-to-run-multi-platform-postgres-import/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 00:24:18 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[processBuilder]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1948</guid>
		<description><![CDATA[We saw how to clone a postgresql database for testing cleanly in an earlier blog post. The next step is to do so from Java so it can be part of an integration test. How to run each of 4 DDLs: Running a DDL file is easy which is good since we have four of [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/04/25/process-builder-to-run-multi-platform-postgres-import/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>junit suite wide setup (not @BeforeClass)</title>
		<link>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/</link>
		<comments>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 01:39:08 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[Java/J2EE]]></category>
		<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[integration_test]]></category>
		<category><![CDATA[junit4]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1912</guid>
		<description><![CDATA[Problem How do I run setup/teardown for my whole suite, not just one class/test? Impact of Problem JUnit offers @Before to run a method before each test and @BeforeClass to run a method once before a class.  For a small suite, @BeforeClass may be enough.  For a large integration test suite, setting up the database [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/04/12/junit-suite-wide-setup-not-beforeclass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>clone a postgresql database for testing cleanly</title>
		<link>http://www.selikoff.net/2010/03/28/clone-a-postgresql-database-for-testing-cleanly/</link>
		<comments>http://www.selikoff.net/2010/03/28/clone-a-postgresql-database-for-testing-cleanly/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 03:03:35 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JDBC]]></category>
		<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[jforum]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1812</guid>
		<description><![CDATA[I&#8217;m looking at writing integration tests for the back end of JavaRanch&#8216;s JForum install. A few &#8220;pesky&#8221; requirements/constraints Multiple developers all over the word have their own local test databases filled with data in different states.  The tests must work for everyone.  Ideally they won&#8217;t leave data floating around either. The tests must use PostgreSQL.  [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/03/28/clone-a-postgresql-database-for-testing-cleanly/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>javaranch forums go mobile</title>
		<link>http://www.selikoff.net/2010/01/03/javaranch-forums-go-mobile/</link>
		<comments>http://www.selikoff.net/2010/01/03/javaranch-forums-go-mobile/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 17:20:20 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1633</guid>
		<description><![CDATA[Want to know what went  on behind the scenes of JavaRanch&#8217;s mobile site creation? Timeline January 2009 &#8211; We started talking about how poorly the site renders on a BlackBerry July 2009 &#8211; I got a BlackBerry for work.  And ugh.  The forums do look horrible. August 2009 &#8211; Tried out BlackBerry emulator and explored [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/01/03/javaranch-forums-go-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to test a local web application in droid simulator</title>
		<link>http://www.selikoff.net/2010/01/02/how-to-test-a-local-web-application-in-droid-simulator/</link>
		<comments>http://www.selikoff.net/2010/01/02/how-to-test-a-local-web-application-in-droid-simulator/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 01:34:44 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/?p=1628</guid>
		<description><![CDATA[In August, I blogged about how to use the blackberry simulator because information was so scarce.  I&#8217;m happy to say the Android emulator documentation is much better. My goal About a month ago, beta testers of  JavaRanch’s JForum implementation told me the iPhone and the Droid had a large blank column on the right side [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2010/01/02/how-to-test-a-local-web-application-in-droid-simulator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>memory profiling with jvisualvm</title>
		<link>http://www.selikoff.net/2009/08/24/memory-profiling-with-jvisualvm/</link>
		<comments>http://www.selikoff.net/2009/08/24/memory-profiling-with-jvisualvm/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 23:53:16 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JavaRanch Forum Migration]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/blog/?p=1156</guid>
		<description><![CDATA[I&#8217;ve been meaning to blog about jmap/jvisualvm for a while, but this JavaRanch question finally prompted me to do so. My goal was to see where the memory was going in our JForum installation at JavaRanch. This was a one time thing, so I decided to see if I could do so without JProbe.   I [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2009/08/24/memory-profiling-with-jvisualvm/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>how to test a local web application in blackberry simulator</title>
		<link>http://www.selikoff.net/2009/08/16/how-to-test-a-local-web-application-in-blackberry-simulator/</link>
		<comments>http://www.selikoff.net/2009/08/16/how-to-test-a-local-web-application-in-blackberry-simulator/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 23:49:14 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JavaRanch Forum Migration]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/blog/?p=1152</guid>
		<description><![CDATA[Surely there must already be a tutorial on this, but I didn&#8217;t see one.  I did see this information scattered amongst various places.  So here it is in one place. My goal Make JavaRanch&#8217;s JForum implementation more mobile friendly.  It&#8217;s not too bad on the iPhone because the iPhone has a better browser.  On the [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2009/08/16/how-to-test-a-local-web-application-in-blackberry-simulator/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>klocwork &#8211; a review</title>
		<link>http://www.selikoff.net/2009/07/04/klocwork-a-review/</link>
		<comments>http://www.selikoff.net/2009/07/04/klocwork-a-review/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 20:37:01 +0000</pubDate>
		<dc:creator>Jeanne Boyarsky</dc:creator>
				<category><![CDATA[JavaRanch Forum Migration]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[static analysis]]></category>

		<guid isPermaLink="false">http://www.selikoff.net/blog/?p=1120</guid>
		<description><![CDATA[Since I wrote a review of JTest, I decided to do a review of the other commercial product I tried in the Java static analysis family &#8211; Klocwork Installation I ran into some trouble installing the trial Eclipse plugin. I saw a zip file to use instead of the update site.  I then unzipped it [...]]]></description>
		<wfw:commentRss>http://www.selikoff.net/2009/07/04/klocwork-a-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
