<?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>JimVernon.com</title>
	<atom:link href="http://jimvernon.com/feed" rel="self" type="application/rss+xml" />
	<link>http://jimvernon.com</link>
	<description></description>
	<lastBuildDate>Tue, 27 Nov 2012 18:00:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Pandora app in Android being slow?</title>
		<link>http://jimvernon.com/archives/288</link>
		<comments>http://jimvernon.com/archives/288#comments</comments>
		<pubDate>Mon, 06 Aug 2012 22:51:50 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=288</guid>
		<description><![CDATA[If you notice that the Pandora app takes a long time to load songs, there is a fix (although it&#8217;s counter-intuitive). Go into the Pandora app settings, tap Advanced, then check the box that says &#8220;Higher Quality Audio&#8221;. Your songs should load much more quickly.]]></description>
				<content:encoded><![CDATA[<p> 	If you notice that the Pandora app takes a long time to load songs, there is a fix (although it&#8217;s counter-intuitive).  Go into the Pandora app settings, tap Advanced, then check the box that says &#8220;Higher Quality Audio&#8221;.  Your songs should load much more quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/288/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting an optional section from an Infopath 2010 form via code</title>
		<link>http://jimvernon.com/archives/279</link>
		<comments>http://jimvernon.com/archives/279#comments</comments>
		<pubDate>Wed, 11 Jul 2012 17:44:38 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=279</guid>
		<description><![CDATA[I was using an optional section in a web-enabled Infopath form to add a new item to the data connection for a dropdownlist, and could not for the life of me find out how to delete the section after adding the item to the list. There was one solution that involved conditional formatting, but that [...]]]></description>
				<content:encoded><![CDATA[<p> 	I was using an optional section in a web-enabled Infopath form to add a new item to the data connection for a dropdownlist, and could not for the life of me find out how to delete the section after adding the item to the list. There was one solution that involved conditional formatting, but that hid the section completely, including the button to insert the section.</p>
<p>&nbsp;</p>
<p>I managed to figure it out on my own, and basically you just tell the optional section to delete itself.  Here&#8217;s the code:</p>
<blockquote><p>nav.SelectSingleNode(&#8220;/my:myFields/my:OptionalSection&#8221;, this.NamespaceManager).DeleteSelf();</p>
<p>&nbsp;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/279/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for ClearType fonts looking bad in OpenOffice and LibreOffice</title>
		<link>http://jimvernon.com/archives/275</link>
		<comments>http://jimvernon.com/archives/275#comments</comments>
		<pubDate>Thu, 19 Apr 2012 05:34:27 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=275</guid>
		<description><![CDATA[If your running Ubuntu or some other Linux variant, and ClearType fonts like Calibri or Cambria look jagged and thin (or just ugly) in Open/LibreOffice, there is a fix. The problem is that for small font sizes, TrueType fonts use bitmaps instead of antialiasing, which just don&#8217;t look particularly good. To stop this from happening, create [...]]]></description>
				<content:encoded><![CDATA[<p> 	If your running Ubuntu or some other Linux variant, and ClearType fonts like Calibri or Cambria look jagged and thin (or just ugly) in Open/LibreOffice, there is a fix. The problem is that for small font sizes, TrueType fonts use bitmaps instead of antialiasing, which just don&#8217;t look particularly good. To stop this from happening, create a file in your home folder called .fonts.conf (if it doesn&#8217;t already exist) and put this in it:</p>
<blockquote><p>&lt;match target=&#8221;font&#8221; &gt;<br />
&lt;edit name=&#8221;embeddedbitmap&#8221; mode=&#8221;assign&#8221;&gt;<br />
&lt;bool&gt;false&lt;/bool&gt;<br />
&lt;/edit&gt;<br />
&lt;/match&gt;</p></blockquote>
<p>Save it, and then log out and log back in again. Your fonts should look great now.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/275/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable the Workspace Switcher in Ubuntu Unity</title>
		<link>http://jimvernon.com/archives/273</link>
		<comments>http://jimvernon.com/archives/273#comments</comments>
		<pubDate>Sun, 15 Apr 2012 21:24:50 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=273</guid>
		<description><![CDATA[It&#8217;s pretty simple, actually. Install MyUnity from the Software Center, or run this command in a terminal: sudo apt-get install myunity Then open MyUnity, go to the Desktop tab, and set the number of vertical/horizontal virtual desktops to 1. Log out, and then log back in. The Workspace Switcher should be gone.]]></description>
				<content:encoded><![CDATA[<p> 	It&#8217;s pretty simple, actually. Install MyUnity from the Software Center, or run this command in a terminal:</p>
<p>sudo apt-get install myunity</p>
<p>Then open MyUnity, go to the Desktop tab, and set the number of vertical/horizontal virtual desktops to 1. Log out, and then log back in. The Workspace Switcher should be gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/273/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 9 being a bit slow?</title>
		<link>http://jimvernon.com/archives/270</link>
		<comments>http://jimvernon.com/archives/270#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:39:38 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=270</guid>
		<description><![CDATA[I installed Firefox 9 a few days ago and I&#8217;m loving it so far. In fact, it has replaced Chrome (which had replaced Firefox for me awhile back), which says a lot for the progress that Mozilla has made in the last couple of years. Anyway, I was having this issue where resizing the Firefox [...]]]></description>
				<content:encoded><![CDATA[<p>I installed Firefox 9 a few days ago and I&#8217;m loving it so far.  In fact, it has replaced Chrome (which had replaced Firefox for me awhile back), which says a lot for the progress that Mozilla has made in the last couple of years.</p>
<p>Anyway, I was having this issue where resizing the Firefox window was really choppy and slow.  Not a huge deal, but still annoying.  The solution was to go into the Options, go to the Advanced tab, and uncheck &#8220;Use Hardware Acceleration&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/270/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting rid of Compiz lag in Ubuntu</title>
		<link>http://jimvernon.com/archives/258</link>
		<comments>http://jimvernon.com/archives/258#comments</comments>
		<pubDate>Thu, 29 Dec 2011 03:48:38 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=258</guid>
		<description><![CDATA[One of the problems I&#8217;ve had with Ubuntu on pretty much every machine that I&#8217;ve ever put it on is that Compiz (Desktop Effects) does not run smoothly.  It&#8217;s always slightly laggy and jittery, and it&#8217;s especially noticeable when you&#8217;re moving a window around.  Fortunately, there is a fix that I discovered awhile ago that [...]]]></description>
				<content:encoded><![CDATA[<p> 	One of the problems I&#8217;ve had with Ubuntu on pretty much every machine that I&#8217;ve ever put it on is that Compiz (Desktop Effects) does not run smoothly.  It&#8217;s always slightly laggy and jittery, and it&#8217;s especially noticeable when you&#8217;re moving a window around.  Fortunately, there is a fix that I discovered awhile ago that has worked every time.  The short version is that you need to install compizconfig-settings-manager and turn off the setting to auto-detect your display&#8217;s refresh rate, bump up the frame rate manually, and disable vertical sync (optional, but seems to help to).</p>
<p>Here&#8217;s a quick how to:</p>
<ol>
<li>Open a terminal and type this command: sudo apt-get install compizconfig-settings-manager</li>
<li>Once it&#8217;s installed, run it.  It should be in the System menu if you&#8217;re using Gnome 2, or you can type &#8220;compizconfig&#8221; in the search box in Unity.  You&#8217;ll get a window like this:</li>
<li><a href="http://www.jimvernon.com/wp-content/uploads/2011/12/main-window.png"><img class="aligncenter size-medium wp-image-259" title="CompizConfig Screen" src="http://www.jimvernon.com/wp-content/uploads/2011/12/main-window-300x188.png" alt="" width="300" height="188" /></a></li>
<li>Click the Composite button on the top.  You should see this screen: <a href="http://www.jimvernon.com/wp-content/uploads/2011/12/setting-before.png"><img class="size-medium wp-image-261 aligncenter" title="setting-before" src="http://www.jimvernon.com/wp-content/uploads/2011/12/setting-before-300x188.png" alt="" width="300" height="188" /></a></li>
<li>Uncheck &#8220;Detect Refresh Rate&#8221; and set the refresh rate to 60 (or whatever you&#8217;re screen&#8217;s refresh rate is, if you know it).  It should look like this:<a href="http://www.jimvernon.com/wp-content/uploads/2011/12/setting-after.png"><img class="aligncenter size-medium wp-image-262" title="setting-after" src="http://www.jimvernon.com/wp-content/uploads/2011/12/setting-after-300x188.png" alt="" width="300" height="188" /></a></li>
<li>Click Back.</li>
<li>Click the OpenGL button near the top.  You should see this screen:<a href="http://www.jimvernon.com/wp-content/uploads/2011/12/setting2-before.png"><img class="aligncenter size-medium wp-image-263" title="setting2-before" src="http://www.jimvernon.com/wp-content/uploads/2011/12/setting2-before-300x189.png" alt="" width="300" height="189" /></a></li>
<li>Uncheck &#8220;Sync to VBlank&#8221;.  It should look like this: <a href="http://www.jimvernon.com/wp-content/uploads/2011/12/settings2-after.png"><img class="aligncenter size-medium wp-image-264" title="settings2-after" src="http://www.jimvernon.com/wp-content/uploads/2011/12/settings2-after-300x189.png" alt="" width="300" height="189" /></a></li>
<li>Close CompizConfig-Settings-Manager and reboot your computer.  You should notice that the performance is much smoother now.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/258/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for wobbly Lenovo S10-3t screen</title>
		<link>http://jimvernon.com/archives/248</link>
		<comments>http://jimvernon.com/archives/248#comments</comments>
		<pubDate>Wed, 15 Jun 2011 17:46:51 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=248</guid>
		<description><![CDATA[The screen hinge on my Lenovo S10-3t netbook/tablet was getting loose to the point where the screen was wobbling back and forth whenever I moved with it sitting on my lap.  Also, the screen was falling forward a half inch or so when I was holding it in tablet mode.  I was worried that the [...]]]></description>
				<content:encoded><![CDATA[<p> 	The screen hinge on my Lenovo S10-3t netbook/tablet was getting loose to the point where the screen was wobbling back and forth whenever I moved with it sitting on my lap.  Also, the screen was falling forward a half inch or so when I was holding it in tablet mode.  I was worried that the hinge itself was wearing out, but last night I decided to see if I could fix it anyway.  It turned out to be pretty simple.</p>
<p>If you&#8217;re having this problem, all you need to do it tighten two screws located on the bottom of the screen.  They&#8217;re hidden beneath two rubber pads, which I&#8217;ve highlighted in this picture:</p>
<p><a href="http://www.jimvernon.com/wp-content/uploads/2011/06/lenovos103t.png"><img class="aligncenter size-full wp-image-249" title="lenovos103t" src="http://www.jimvernon.com/wp-content/uploads/2011/06/lenovos103t.png" alt="Lenovo S10-3t hinge screw location" width="501" height="119" /></a></p>
<p>The pads are glued on, so you should be able to pry them off easily with your finger nails.  Once you&#8217;ve tightened the screws enough to eliminate the wobbling, you can cover them back up with the rubber pads.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/248/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 SP1 Problem</title>
		<link>http://jimvernon.com/archives/242</link>
		<comments>http://jimvernon.com/archives/242#comments</comments>
		<pubDate>Wed, 02 Mar 2011 23:50:35 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=242</guid>
		<description><![CDATA[If you&#8217;re having trouble installing Windows 7 SP 1, here&#8217;s something to check.  I have my computer set to dual-boot with Ubuntu, and apparently that changes some of the flags on the Windows partitions.  That said, this fix may not work for you if you aren&#8217;t dual-booting, but I&#8217;d give it a try anyway. What [...]]]></description>
				<content:encoded><![CDATA[<p> 	If you&#8217;re having trouble installing Windows 7 SP 1, here&#8217;s something to check.  I have my computer set to dual-boot with Ubuntu, and apparently that changes some of the flags on the Windows partitions.  That said, this fix may not work for you if you aren&#8217;t dual-booting, but I&#8217;d give it a try anyway.</p>
<p>What you do is right click on Computer, click on Manage, and when the Computer Management screen comes up, click on Disk Management.  After a few moments you&#8217;ll see a list of drives and partitions.  You should see a 200 MB partition for Windows.  Right click on it and click Mark Partition as Active.  At this point you should be able to run the service pack installer.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/242/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Windows Desktop Gadets without them snapping into place.</title>
		<link>http://jimvernon.com/archives/241</link>
		<comments>http://jimvernon.com/archives/241#comments</comments>
		<pubDate>Thu, 15 Jul 2010 19:36:49 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Cool]]></category>

		<guid isPermaLink="false">http://jimvernon.com/archives/241</guid>
		<description><![CDATA[All you have to do is hold the Shift key while moving them. &#160;This is great for when you&#8217;re trying to line up your gadgets and they snapping/sticking to the side of the screen or to another gadget.]]></description>
				<content:encoded><![CDATA[<p>All you have to do is hold the Shift key while moving them. &nbsp;This is great for when you&#8217;re trying to line up your gadgets and they snapping/sticking to the side of the screen or to another gadget.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/241/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error</title>
		<link>http://jimvernon.com/archives/239</link>
		<comments>http://jimvernon.com/archives/239#comments</comments>
		<pubDate>Sat, 19 Jun 2010 05:28:06 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimvernon.com/?p=239</guid>
		<description><![CDATA[I was getting this error when trying to access a remote database from a website: &#8220;Lost connection to MySQL server at &#8216;reading initial communication packet&#8217;, system error: 111&#8243; It turned out that for whatever reason, MySQL did not like using a different port forwarded to 3306.  I guess you need to change the port in [...]]]></description>
				<content:encoded><![CDATA[<p> 	I was getting this error when trying to access a remote database from a website: &#8220;Lost connection to MySQL server at &#8216;reading initial communication packet&#8217;, system error: 111&#8243;</p>
<p>It turned out that for whatever reason, MySQL did not like using a different port forwarded to 3306.  I guess you need to change the port in my.cnf and on your firewall.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimvernon.com/archives/239/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.286 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 00:07:42 -->

<!-- Compression = gzip -->