<?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>Blog of Interest / 有趣的网站 &#187; Fix</title>
	<atom:link href="http://pagesofinterest.net/blog/category/%e7%bc%96%e7%a8%8b-programming/fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://pagesofinterest.net/blog</link>
	<description></description>
	<lastBuildDate>Mon, 11 Jan 2010 13:21:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Java: repaint() Waking Nightmare</title>
		<link>http://pagesofinterest.net/blog/2009/06/java-repaint-waking-nightmare/</link>
		<comments>http://pagesofinterest.net/blog/2009/06/java-repaint-waking-nightmare/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:04:53 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Hate - 讨厌]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Nightmare]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=697</guid>
		<description><![CDATA[I wanted the little app I'm making to display a green tick or a red cross depending on whether the user had entered valid credentials.  Simple?  Yeah.  Everything went really well, I extended a JPanel to handle the tick/cross display area (tickCross), got the POST code going, strung together the rest of the GUI elements.  

The problem was that tickCross.repaint() wasn't reliably repainting.  about 30% of the time the image wouldn't be painted.  The method was being called, but nothing was happening.  I tried Google, re-read the related Sun Java docs and was reminded that: "repaint() does not actually paint. It calls the peer repaint which enqueues a request in some platform-dependent way inside the native GUI for a repaint." - <a href="http://mindprod.com/jgloss/repaint.html">MindProd</a>. Great.  My OS was deciding when I was allowed to draw.


No related posts.]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/06/java-repaint-waking-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find and Replace Text Within Multiple Files in Linux &#8211; Avoid RSI</title>
		<link>http://pagesofinterest.net/blog/2009/06/find-and-replace-text-within-multiple-files-in-linux-avoid-rsi/</link>
		<comments>http://pagesofinterest.net/blog/2009/06/find-and-replace-text-within-multiple-files-in-linux-avoid-rsi/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 01:02:15 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=693</guid>
		<description><![CDATA[After updating 100+ pages manually, I realized that I had neglected to add "index.php" to the end of certain links.  Usually this would be fine, but the links in question are opened in Shadowbox, which will fail on pretty, "index.php"-less links.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/02/strip-uxxxx-from-string-and-replace-it-with-the-correct-unicode-character/' rel='bookmark' title='Permanent Link: Strip /uXXXX From String and Replace it With the Correct Unicode Character'>Strip /uXXXX From String and Replace it With the Correct Unicode Character</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/perl-script-to-insert-dbpedia-infobox-data-into-a-mysql-database/' rel='bookmark' title='Permanent Link: Perl Script to Insert DBpedia Infobox Data into a MySQL Database'>Perl Script to Insert DBpedia Infobox Data into a MySQL Database</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/09/fancy-footer/' rel='bookmark' title='Permanent Link: Fancy Footer'>Fancy Footer</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/06/find-and-replace-text-within-multiple-files-in-linux-avoid-rsi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rescuing Settings From Broken JDownloader Installation in Ubuntu</title>
		<link>http://pagesofinterest.net/blog/2009/06/rescuing-settings-from-broken-jdownloader-installation-in-ubuntu/</link>
		<comments>http://pagesofinterest.net/blog/2009/06/rescuing-settings-from-broken-jdownloader-installation-in-ubuntu/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 15:40:45 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Jaunty]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[JDownloader]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=674</guid>
		<description><![CDATA[Somehow I broke my JDownloader installation, by meddling with the network settings.  As I had quite a lot of download packages queued, I wanted to rescue them and use them with the latest version of JDownloader.  I managed to do this successfully, here's how:


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/05/installing-jdownloader-in-ubuntu/' rel='bookmark' title='Permanent Link: Installing JDownloader in Ubuntu'>Installing JDownloader in Ubuntu</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/11/opencyc-researchcyc-in-ubuntu/' rel='bookmark' title='Permanent Link: OpenCyc/ResearchCyc in Ubuntu'>OpenCyc/ResearchCyc in Ubuntu</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/thunderbird-3-beta-in-jaunty/' rel='bookmark' title='Permanent Link: Thunderbird 3 Beta in Ubuntu'>Thunderbird 3 Beta in Ubuntu</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/06/rescuing-settings-from-broken-jdownloader-installation-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Error: &#8216;g is undefined&#8217;</title>
		<link>http://pagesofinterest.net/blog/2009/05/jquery-error-g-is-undefined/</link>
		<comments>http://pagesofinterest.net/blog/2009/05/jquery-error-g-is-undefined/#comments</comments>
		<pubDate>Wed, 20 May 2009 05:59:11 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=669</guid>
		<description><![CDATA[Scroll to comments
Discovered the cause of this annoying (but seemingly impotent) error in a response by Karl Swedberg on Nabble.
The error was caused by my passing only one function to jQuery.hover(), eg:

 jQuery&#40;&#34;.blog-entry-date&#34;&#41;.hover&#40;function&#40;&#41;&#123;
                jQuery&#40;this&#41;.animate&#40;&#123;color: genHex&#40;&#41;&#125;,100&#41;;
      [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/' rel='bookmark' title='Permanent Link: Using PNG Transparency + the jQuery Colour Change Plugin'>Using PNG Transparency + the jQuery Colour Change Plugin</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/09/scroll-to-anchors-with-jquery/' rel='bookmark' title='Permanent Link: Scroll to Anchors With jQuery'>Scroll to Anchors With jQuery</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/' rel='bookmark' title='Permanent Link: Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa'>Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/05/jquery-error-g-is-undefined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Sound in Ubuntu Jaunty With Intel HDA VT1708B</title>
		<link>http://pagesofinterest.net/blog/2009/04/no-sound-in-ubuntu-jaunty-with-intel-hda-vt1708b/</link>
		<comments>http://pagesofinterest.net/blog/2009/04/no-sound-in-ubuntu-jaunty-with-intel-hda-vt1708b/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 14:28:29 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Jaunty]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=616</guid>
		<description><![CDATA[Scroll to comments
After becoming terminally annoyed with a my broken Intrepid installation, I decided to install Jaunty.
While I was enjoying the new growl-esque notification system, I noticed a flaw &#8211; no program would make any.  Not a peep.
Headphones plugged in, check.  Volume sliders in gnome-sound-properties all the way up, check.  Hmm&#8230;  [...]


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/05/thunderbird-3-beta-in-jaunty/' rel='bookmark' title='Permanent Link: Thunderbird 3 Beta in Ubuntu'>Thunderbird 3 Beta in Ubuntu</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/gwibber-daily-build-ppa-ubuntu/' rel='bookmark' title='Permanent Link: Gwibber Daily Build PPA Ubuntu'>Gwibber Daily Build PPA Ubuntu</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/06/rescuing-settings-from-broken-jdownloader-installation-in-ubuntu/' rel='bookmark' title='Permanent Link: Rescuing Settings From Broken JDownloader Installation in Ubuntu'>Rescuing Settings From Broken JDownloader Installation in Ubuntu</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/04/no-sound-in-ubuntu-jaunty-with-intel-hda-vt1708b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shadowbox rel=&#8217;shadowbox&#8217; Doesn&#8217;t Work? Here&#8217;s a Workaround</title>
		<link>http://pagesofinterest.net/blog/2009/03/shadowbox-relshadowbox-doesnt-work-heres-a-workaround/</link>
		<comments>http://pagesofinterest.net/blog/2009/03/shadowbox-relshadowbox-doesnt-work-heres-a-workaround/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 03:00:12 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[RW Tutorial - RW教程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Shadowbox]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=552</guid>
		<description><![CDATA[Yesterday I was trying to implement a <a href="http://www.mjijackson.com/shadowbox/">Shadowbox</a> contact form in the <a href="http://boispca.org/">Bay of Islands SPCA</a> site, but I just <em>couldn't</em> get it to work.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2008/09/scroll-to-anchors-with-jquery/' rel='bookmark' title='Permanent Link: Scroll to Anchors With jQuery'>Scroll to Anchors With jQuery</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/jquery-error-g-is-undefined/' rel='bookmark' title='Permanent Link: jQuery Error: &#8216;g is undefined&#8217;'>jQuery Error: &#8216;g is undefined&#8217;</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/' rel='bookmark' title='Permanent Link: Using PNG Transparency + the jQuery Colour Change Plugin'>Using PNG Transparency + the jQuery Colour Change Plugin</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/03/shadowbox-relshadowbox-doesnt-work-heres-a-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
