<?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>JonCellini.com &#187; Tech</title>
	<atom:link href="http://joncellini.com/blog/archives/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://joncellini.com/blog</link>
	<description></description>
	<lastBuildDate>Tue, 10 Apr 2012 16:01:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Monitoring vCenter vctomcat with Hyperic</title>
		<link>http://joncellini.com/blog/archives/2012/03/20/monitoring-vcenter-vctomcat-with-hyperic/</link>
		<comments>http://joncellini.com/blog/archives/2012/03/20/monitoring-vcenter-vctomcat-with-hyperic/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 00:25:03 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/?p=1929</guid>
		<description><![CDATA[VMware makes some amazing things, sadly interoperability between them often seems to be an afterthought. In my professional life we have been chasing after a longstanding issue with the bundled Tomcat server (vctomcat) included with vCenter. While its nice that &#8230; <a href="http://joncellini.com/blog/archives/2012/03/20/monitoring-vcenter-vctomcat-with-hyperic/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vmware.com/" target="_blank">VMware</a> makes some amazing things, sadly interoperability between them often seems to be an afterthought.</p>
<p>In my professional life we have been chasing after a longstanding issue with the bundled Tomcat server (<em>vctomcat</em>) included with <a href="http://www.vmware.com/products/vcenter/overview.html" target="_blank">vCenter</a>. While its nice that VMware got around to including a JVM memory sizing option during the install we&#8217;ve found that even the &#8220;large&#8221; option doesn&#8217;t cut it for us. Along the way we&#8217;ve had a <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#038;cmd=displayKC&#038;externalId=1039180" target="_blank">kb</a> or <a href="http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&#038;docType=kc&#038;externalId=1029647&#038;sliceId=1&#038;docTypeID=DT_KB_1_1&#038;dialogID=305374107&#038;stateId=1 0 305376039" target="_blank">two</a> written about our troubles which begs the question of how do we monitor what is going on with Tomcat?<br />
<span id="more-1929"></span><br />
VMware via its SpringSource division happens to own this fantastic platform for monitoring and performance management called <a href="http://www.hyperic.com/" target="_blank">Hyperic</a>. Tomcat is one of the supported technologies out of the box that Hyperic can instrument via <a href="http://www.oracle.com/technetwork/java/javase/tech/javamanagement-140525.html" target="_blank">Java Management Extensions</a> (JMX). For some dumb reason VMware doesn&#8217;t enable JMX out of the box for the &#8220;vctomcat&#8221; Tomcat instance that is installed as part of vCenter. Fortunately enabling it isn&#8217;t too difficult once you figure out where the configuration is and what magic incantation of java options are required.</p>
<p>To enable JMX you need to pass the following java options:<br />
<code><br />
-Dcom.sun.management.jmxremote<br />
-Dcom.sun.management.jmxremote.port=6969<br />
-Dcom.sun.mangement.ssl=false<br />
-Dcom.sun.management.jmxremote.authenticate=false<br />
-Dcom.sun.management.jmxremote.ssl=false<br />
</code></p>
<p>The <em>jmxremote.ssl</em> option is necessary to make Hyperic talk to the self-signed SSL certificate that is bundled as part of the vCenter web services. Replacing the default certificates is a <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#038;cmd=displayKC&#038;externalId=2007824" target="_blank">giant bag of hurt</a> and for whatever reason the vCenter team can&#8217;t seem to figure out how to implement SSL support without doing stupid things like hard coding default passwords into the code. It is easier to ignore all this nonsense and to disable security.</p>
<p>To add those java options you simply run the helpful &#8220;<strong>Configure Tomcat</strong>&#8221; shortcut that is created as part of the vCenter install. On the &#8220;<strong>Java</strong>&#8221; tab enter them in the &#8220;<strong>Java Options</strong>&#8221; box on the page:<br />
<a href="http://joncellini.com/blog/wp-content/uploads/2012/03/tomcat.jpg"><img src="http://joncellini.com/blog/wp-content/uploads/2012/03/tomcat.jpg" alt="" title="Tomcat_Settings" width="424" height="433" class="aligncenter size-full wp-image-1930" /></a></p>
<p>Once that is done apply the changes and restart the vCenter web services.</p>
<p>The Hyperic agent should now be able to discover the discover the bundled Tomcat process and gather metrics from it successfully.<br />
<a href="http://joncellini.com/blog/wp-content/uploads/2012/03/hyperic.jpg"><img src="http://joncellini.com/blog/wp-content/uploads/2012/03/hyperic-1024x579.jpg" alt="" title="hyperic_screen" width="584" height="330" class="aligncenter size-large wp-image-1933" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2012/03/20/monitoring-vcenter-vctomcat-with-hyperic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting data out of an HP iLO</title>
		<link>http://joncellini.com/blog/archives/2012/02/28/getting-data-out-of-an-hp-ilo/</link>
		<comments>http://joncellini.com/blog/archives/2012/02/28/getting-data-out-of-an-hp-ilo/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 01:17:30 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/?p=1921</guid>
		<description><![CDATA[Today at work I had the need to do some automation around several hundred HP Integrated Lights-Out (iLO) adapters and wanted to do a simple sanity check on the version &#038; firmware of the device I was interacting with. HP &#8230; <a href="http://joncellini.com/blog/archives/2012/02/28/getting-data-out-of-an-hp-ilo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://h18013.www1.hp.com/products/servers/management/remotemgmt.html" title="HP iLO" target="_blank"></a>Today at work I had the need to do some automation around several hundred HP Integrated Lights-Out (iLO) adapters and wanted to do a simple sanity check on the version &#038; firmware of the device I was interacting with. HP makes this information available via HTTP without the need for authentication. Since I had trouble finding where this was documented here is the URL structure to use:</p>
<p><code>https://myilo-address/xmldata?item=All</code></p>
<p>This will return an XML document that contains the model, serial, and firmware revision. It works with iLO, iLO2, and iLO3 adapters.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2012/02/28/getting-data-out-of-an-hp-ilo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fixing AirPort Extreme performance woes</title>
		<link>http://joncellini.com/blog/archives/2012/02/04/fixing-airport-extreme-performance-woes/</link>
		<comments>http://joncellini.com/blog/archives/2012/02/04/fixing-airport-extreme-performance-woes/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 01:46:38 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/?p=1912</guid>
		<description><![CDATA[PROTIP if your AirPort Extreme has abysmal performance regardless of position or settings try giving it a factory default reset. I have one that has gone through probably 4-5 in-place firmware upgrades over the last few years and somewhere along &#8230; <a href="http://joncellini.com/blog/archives/2012/02/04/fixing-airport-extreme-performance-woes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>PROTIP</strong> if your <a href="http://www.apple.com/airportextreme/" target="_blank">AirPort Extreme</a> has abysmal performance regardless of position or settings try giving it a <a href="http://support.apple.com/kb/HT3728" target="_blank">factory default reset</a>. </p>
<p>I have one that has gone through probably 4-5 in-place firmware upgrades over the last few years and somewhere along the way started to provide horrible downstream throughput to clients. No amount of troubleshooting on my part could get it to work correctly. After giving it a reset its back to working as expected &#8211; yay for WiFi faster than dial-up.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2012/02/04/fixing-airport-extreme-performance-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specifying a custom BIOS for VMware Fusion / Workstation</title>
		<link>http://joncellini.com/blog/archives/2011/10/30/custom-bios-for-vmware-fusion-workstation/</link>
		<comments>http://joncellini.com/blog/archives/2011/10/30/custom-bios-for-vmware-fusion-workstation/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 18:35:38 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/?p=1853</guid>
		<description><![CDATA[Since I can never remember the setting here is how to specify a custom BIOS for use with a VMware Fusion / Workstation VM. Add the following line to the .vmx file for the VM: bios440.filename = "mycustombios.rom" And place &#8230; <a href="http://joncellini.com/blog/archives/2011/10/30/custom-bios-for-vmware-fusion-workstation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since I can never remember the setting here is how to specify a custom BIOS for use with a VMware <a href="http://www.vmware.com/products/fusion/overview.html" target="_blank">Fusion</a> / <a href="http://www.vmware.com/products/workstation/index.html" target="_blank">Workstation</a> VM. </p>
<p>Add the following line to the .vmx file for the VM:</p>
<p><code>bios440.filename = "mycustombios.rom"</code></p>
<p>And place the rom file inside the VM folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2011/10/30/custom-bios-for-vmware-fusion-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retro</title>
		<link>http://joncellini.com/blog/archives/2011/06/12/retro/</link>
		<comments>http://joncellini.com/blog/archives/2011/06/12/retro/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 21:27:53 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Aria]]></category>
		<category><![CDATA[Mina]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/?p=1764</guid>
		<description><![CDATA[It is strange to think that a pay phone is like an antique to my kids.Posted from Portland, Oregon, United States.]]></description>
			<content:encoded><![CDATA[<p><a href="http://joncellini.com/blog/wp-content/uploads/2011/06/20110612-022816.jpg"><img src="http://joncellini.com/blog/wp-content/uploads/2011/06/20110612-022816.jpg" alt="20110612-022816.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://joncellini.com/blog/wp-content/uploads/2011/06/20110612-022950.jpg"><img src="http://joncellini.com/blog/wp-content/uploads/2011/06/20110612-022950.jpg" alt="20110612-022950.jpg" class="alignnone size-full" /></a></p>
<p>It is strange to think that a pay phone is like an antique to my kids.<br/><br/><a class="geolocation-link" href="#" id="geolocation1764" name="45.5088,-122.71780100000001" onclick="return false;">Posted from Portland, Oregon, United States.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2011/06/12/retro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linode&#8217;s 7th</title>
		<link>http://joncellini.com/blog/archives/2010/06/16/linodes-7th/</link>
		<comments>http://joncellini.com/blog/archives/2010/06/16/linodes-7th/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 06:00:51 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/archives/2010/06/16/linodes-7th/</guid>
		<description><![CDATA[Linode turned 7 today &#8211; congratulations to Chris &#38; the team! Thank you for yet another free RAM increase to my VPS. I&#8217;ve been an extremely happy customer since 2006.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linode.com/?r=0ae46b6dbf77766768652c2ef08f1c516e822e20" target="_top">Linode</a> turned 7 today &#8211; congratulations to Chris &amp; the team!</p>
<p>Thank you for yet another <a href="http://blog.linode.com/2010/06/16/linode-turns-7-big-ram-increase/" target="_top">free RAM increase</a> to my VPS. I&#8217;ve been an extremely happy customer since 2006.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2010/06/16/linodes-7th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lucid</title>
		<link>http://joncellini.com/blog/archives/2010/04/29/lucid/</link>
		<comments>http://joncellini.com/blog/archives/2010/04/29/lucid/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 05:54:32 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/archives/2010/04/29/lucid/</guid>
		<description><![CDATA[Props to the guys at Linode who wrote up a handy guide on how to upgrade to Ubuntu 10.04. I upgraded my VPS earlier this evening and everything was painless.]]></description>
			<content:encoded><![CDATA[<p>Props to the guys at <a href="http://www.linode.com/?r=0ae46b6dbf77766768652c2ef08f1c516e822e20" target="_top">Linode</a> who wrote up a handy <a href="http://library.linode.com/troubleshooting/upgrade-ubuntu-10.04" target="_top">guide</a> on how to upgrade to <a href="http://www.ubuntu.com/products/whatisubuntu" target="_top">Ubuntu</a> 10.04.</p>
<p>I upgraded my VPS earlier this evening and everything was painless.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2010/04/29/lucid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO reset a MySQL root password</title>
		<link>http://joncellini.com/blog/archives/2010/02/22/howto-reset-a-mysql-root-password/</link>
		<comments>http://joncellini.com/blog/archives/2010/02/22/howto-reset-a-mysql-root-password/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 03:01:15 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/archives/2010/02/22/howto-reset-a-mysql-root-password/</guid>
		<description><![CDATA[If your a terrible DBA like me here are the six steps to reset a forgotten MySQL root user password: 1. stop mysql # /etc/init.d/mysql stop The output should look like this: * Stopping MySQL database server mysqld &#160;&#160; &#8230;done. &#8230; <a href="http://joncellini.com/blog/archives/2010/02/22/howto-reset-a-mysql-root-password/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If your a terrible DBA like me here are the six steps to reset a forgotten <a href="http://mysql.com/">MySQL</a> root user password:</p>
<p><b>1. stop mysql</b></p>
<blockquote>
<p># /etc/init.d/mysql stop</p>
</blockquote>
<p>The output should look like this:</p>
<blockquote>
<p>* Stopping MySQL database server mysqld</p>
<p>&nbsp;&nbsp; &#8230;done.</p>
<p>
</p></blockquote>
<p><b>2. restart mysql without a password</b></p>
<blockquote>
<p># mysqld_safe &#8211;skip-grant-tables &amp;</p>
</blockquote>
<p>The output should look like this:</p>
<blockquote>
<p>[1] 28808</p>
<p>100222 18:32:27 mysqld_safe Logging to syslog.</p>
<p>100222 18:32:27 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql</p>
</blockquote>
<p><b>3. connect to mysql using the mysql client</b></p>
<blockquote>
<p># mysql -u root</p>
</blockquote>
<p>The output should look like this:</p>
<blockquote>
<p>Welcome to the MySQL monitor. Commands end with ; or \g.</p>
<p>Your MySQL connection id is 1</p>
<p>Server version: 5.1.37-1ubuntu5.1 (Ubuntu)</p>
<p>Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the current input statement.</p>
</blockquote>
<p><b>4. set a new mysql root user password</b></p>
<blockquote>
<p>mysql&gt; use mysql;</p>
<p>Reading table information for completion of table and column names</p>
<p>You can turn off this feature to get a quicker startup with -A</p>
<p>Database changed</p>
<p>mysql&gt; update user set password=PASSWORD(&#8220;<b>NEWROOTPASSWORDHERE</b>&#8220;) where User=&#8217;root&#8217;;</p>
<p>Query OK, 0 rows affected (0.02 sec)</p>
<p>Rows matched: 3 Changed: 0 Warnings: 0</p>
<p>mysql&gt; flush privileges;</p>
<p>Query OK, 0 rows affected (0.09 sec)</p>
<p>mysql&gt; quit</p>
<p>Bye</p>
<p>
</p></blockquote>
<p><b>5. stop mysql</b></p>
<blockquote>
<p># /etc/init.d/mysql stop</p>
</blockquote>
<p>The output should look like this:</p>
<blockquote>
<p>* Stopping MySQL database server mysqld</p>
<p>100222 18:35:29 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended</p>
<p>&nbsp;&nbsp; &#8230;done.</p>
<p>[1]+ Done mysqld_safe &#8211;skip-grant-tables</p>
</blockquote>
<p><b>6. restart mysql</b></p>
<blockquote>
<p># /etc/init.d/mysql start</p>
</blockquote>
<p>Who needs to remember passwords? <img src='http://joncellini.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2010/02/22/howto-reset-a-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the iPad</title>
		<link>http://joncellini.com/blog/archives/2010/01/29/the-ipad/</link>
		<comments>http://joncellini.com/blog/archives/2010/01/29/the-ipad/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 08:03:29 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/archives/2010/01/29/the-ipad/</guid>
		<description><![CDATA[I don&#8217;t grok all the aversion in the techie/gadget press in regards to the iPad. Do I want one (yet)? No; however, it seems like a pretty ideal device for someone like my wife or father-in-law. They both have pretty &#8230; <a href="http://joncellini.com/blog/archives/2010/01/29/the-ipad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t grok <a href="http://gizmodo.com/5458531/the-ipad-is-the-gadget-we-never-knew-we-needed">all</a> <a href="http://gizmodo.com/5458382/8-things-that-suck-about-the-ipad">the</a> <a href="http://io9.com/5458822/why-the-ipad-is-crap-futurism">aversion</a> in the techie/gadget press in regards to the <a href="http://www.apple.com/ipad/">iPad</a>.</p>
<p>Do I want one (yet)? No; however, it seems like a pretty ideal device for someone like my <a href="http://heathercellini.com/">wife</a> or father-in-law. They both have pretty typical computing needs &#8211; a browser, email, iTunes for media consumption, the occasional word processing. The iPad nails all of these functions out of the box plus has the added bonus of the App Store ecosystem so there are plenty of niche specific apps and casual games to enjoy as well. It seems like a step closer to that task-centric &#8220;toaster&#8221; computing model which I think aligns well to the expectations of a large part of the population. Panic&#8217;s Steven Frank describes this <a href="http://stevenf.tumblr.com/post/359224392/i-need-to-talk-to-you-about-computers-ive-been">personal computing evolution</a> much more eloquently.</p>
<p>Right now I just want to finally ditch my current <a href="http://www.motorola.com/motoinfo/product/details.jsp?globalObjectId=162">Moto dumbphone</a> and get an iPhone. I&#8217;m not ready to make the leap to AT&amp;T yet so I was disappointed that the end of their exclusivity for it in the US wasn&#8217;t announced this week. Oh well maybe in time for my birthday <img src='http://joncellini.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2010/01/29/the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlipShare and Snow Leopard</title>
		<link>http://joncellini.com/blog/archives/2009/09/11/flipshare-and-snow-leopard/</link>
		<comments>http://joncellini.com/blog/archives/2009/09/11/flipshare-and-snow-leopard/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 19:55:07 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://joncellini.com/blog/archives/2009/09/11/flipshare-and-snow-leopard/</guid>
		<description><![CDATA[Pure Digital has an updated release of their FlipShare application that is Snow Leopard (OS X 10.6) compatible. The Mac download link at the Pure Digital site still offers the old version; however, support was nice enough to provide me &#8230; <a href="http://joncellini.com/blog/archives/2009/09/11/flipshare-and-snow-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Pure Digital has an updated release of their <a href="http://www.theflip.com/products_flip_flipshare.shtml#scene=sceneMain">FlipShare</a> application that is <a href="http://www.apple.com/macosx/">Snow Leopard</a> (OS X 10.6) compatible. The Mac <a href="http://www.theflip.com/app/fvsw/45/update/index.aspx">download</a> link at the Pure Digital site still offers the old version; however, support was nice enough to provide me a download link for version 4.5.1 when I asked for it.</p>
<p>You can grab a copy of the .dmg <a href="http://download.theflip.com/update.theflip.com/app/fvsw/451/update/Setup_FlipShare.dmg">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joncellini.com/blog/archives/2009/09/11/flipshare-and-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

