<?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; Programming &#8211; 编程</title>
	<atom:link href="http://pagesofinterest.net/blog/tag/%e7%bc%96%e7%a8%8b-programming/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>Write Your Own Listener Interface (you know you want to)</title>
		<link>http://pagesofinterest.net/blog/2009/06/write-your-own-listener-interface-you-know-you-want-to/</link>
		<comments>http://pagesofinterest.net/blog/2009/06/write-your-own-listener-interface-you-know-you-want-to/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 21:30:37 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Interface]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming - 编程]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=698</guid>
		<description><![CDATA[This tutorial was all I needed to quickly implement my listener: <a href="http://www.devarticles.com/c/a/Java/Listeners-in-Java/">Listeners in Java</a>

It's clear, succinct and comprehensive.  When you need to implement your custom listener interface, check it out.



Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/06/java-repaint-waking-nightmare/' rel='bookmark' title='Permanent Link: Java: repaint() Waking Nightmare'>Java: repaint() Waking Nightmare</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/07/rw-helper-update/' rel='bookmark' title='Permanent Link: RW Helper Update'>RW Helper Update</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/05/normal-user-unable-to-write-to-fat32-partition-ubuntu/' rel='bookmark' title='Permanent Link: Normal User Unable to Write to FAT32 Partition Ubuntu'>Normal User Unable to Write to FAT32 Partition Ubuntu</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/06/write-your-own-listener-interface-you-know-you-want-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using PNG Transparency + the jQuery Colour Change Plugin</title>
		<link>http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/</link>
		<comments>http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 11:13:08 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=667</guid>
		<description><![CDATA[A tutorial describing how to achieve the "colour change on roll-over" effect used in this site's RSS and Twitter links in the sidebar.


Related posts:<ol><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/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/11/eclipse-negative-colour-scheme/' rel='bookmark' title='Permanent Link: Eclipse Negative Colour Scheme'>Eclipse Negative Colour Scheme</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strip /uXXXX From String and Replace it With the Correct Unicode Character</title>
		<link>http://pagesofinterest.net/blog/2009/02/strip-uxxxx-from-string-and-replace-it-with-the-correct-unicode-character/</link>
		<comments>http://pagesofinterest.net/blog/2009/02/strip-uxxxx-from-string-and-replace-it-with-the-correct-unicode-character/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 02:35:47 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Class]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Tutorial – 教程]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=547</guid>
		<description><![CDATA[I discovered '/uXXXX' appearing where pretty unicode characters should be within my strings.  The strings were to be compared to ... other strings, which <em>would</em> have the proper unicode characters, so I had to replace the '/uXXXX' in my strings.  I couldn't find a class to do this, but found enough information to understand what needed to be done.  The below function is what I came up with.  


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/05/url-base64-character-xml-and-ecmascript-conversion/' rel='bookmark' title='Permanent Link: URL, Base64, Character, XML and ECMAScript Conversion'>URL, Base64, Character, XML and ECMAScript Conversion</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/2009/06/find-and-replace-text-within-multiple-files-in-linux-avoid-rsi/' rel='bookmark' title='Permanent Link: Find and Replace Text Within Multiple Files in Linux &#8211; Avoid RSI'>Find and Replace Text Within Multiple Files in Linux &#8211; Avoid RSI</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/02/strip-uxxxx-from-string-and-replace-it-with-the-correct-unicode-character/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exec-php and WP-Syntax Caveat</title>
		<link>http://pagesofinterest.net/blog/2009/02/exec-php-and-wp-syntax-caveat/</link>
		<comments>http://pagesofinterest.net/blog/2009/02/exec-php-and-wp-syntax-caveat/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 01:57:49 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Exec-PHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WP-Syntax]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=460</guid>
		<description><![CDATA[<br />
<b>Parse error</b>:  syntax error, unexpected T_LOGICAL_AND in <b>/home2/pagesofi/public_html/wordpress/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()'d code</b> on line <b>1</b><br />



Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/02/wp-blog-proves-that-dreams-can-come-true/' rel='bookmark' title='Permanent Link: WP-Blog Proves that Dreams *Can* Come True'>WP-Blog Proves that Dreams *Can* Come True</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/02/twitter-tools-post-from-sidebar-blog-in-different-directory-fix/' rel='bookmark' title='Permanent Link: Twitter Tools Post From Sidebar &#8211; Blog in Different Directory Fix'>Twitter Tools Post From Sidebar &#8211; Blog in Different Directory Fix</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/02/js-kit-recent-comments-php-script/' rel='bookmark' title='Permanent Link: JS-Kit Recent Comments PHP Script'>JS-Kit Recent Comments PHP Script</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/02/exec-php-and-wp-syntax-caveat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling JS-Kit Comments</title>
		<link>http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/</link>
		<comments>http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 06:50:11 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[RW Tutorial - RW教程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[Customization - 用户化]]></category>
		<category><![CDATA[JS-Kit]]></category>
		<category><![CDATA[JS-Kit Comments]]></category>
		<category><![CDATA[Programming - 编程]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=475</guid>
		<description><![CDATA[Styling JS-Comments is really quite straightforward. I strongly recommend you read <a href="http://pagesofinterest.net/mikes/blog_of_interest_files/fancy_footer.php">this post</a> before moving on, as it contains tips on resizing JS-Kit elements, such as the width/height of comments, among other things.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2008/07/js-kit-comments-greybox-on-any-page/' rel='bookmark' title='Permanent Link: JS-Kit Comments + Greybox on Any Page'>JS-Kit Comments + Greybox on Any Page</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/slider-progress-slider-styling-option-pane/' rel='bookmark' title='Permanent Link: Slider Progress: Slider Styling Option Pane'>Slider Progress: Slider Styling Option Pane</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/06/js-kit-comments-for-each-blog-entry/' rel='bookmark' title='Permanent Link: JS-Kit Comments for Each Blog Entry'>JS-Kit Comments for Each Blog Entry</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fancy Footer</title>
		<link>http://pagesofinterest.net/blog/2008/09/fancy-footer/</link>
		<comments>http://pagesofinterest.net/blog/2008/09/fancy-footer/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 12:01:59 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=397</guid>
		<description><![CDATA[So I created a PHP script that is included in the "Prefix" of my blog pages. It consists of one function that is passed a few pieces of information, and spits out a nicely formatted footer section.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/02/exec-php-and-wp-syntax-caveat/' rel='bookmark' title='Permanent Link: Exec-php and WP-Syntax Caveat'>Exec-php and WP-Syntax Caveat</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/11/fancy-footer-update/' rel='bookmark' title='Permanent Link: Fancy Footer Update'>Fancy Footer Update</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/02/wp-blog-proves-that-dreams-can-come-true/' rel='bookmark' title='Permanent Link: WP-Blog Proves that Dreams *Can* Come True'>WP-Blog Proves that Dreams *Can* Come True</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/09/fancy-footer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Scroll to Anchors With jQuery</title>
		<link>http://pagesofinterest.net/blog/2008/09/scroll-to-anchors-with-jquery/</link>
		<comments>http://pagesofinterest.net/blog/2008/09/scroll-to-anchors-with-jquery/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 11:05:17 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[RW Tutorial - RW教程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=543</guid>
		<description><![CDATA[This post will introduce and explain the "scroll to anchor" method I have used throughout this site. For a demo, click "scroll to Comments", which you'll find above.


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/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/2008/09/fancy-footer/' rel='bookmark' title='Permanent Link: Fancy Footer'>Fancy Footer</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/09/scroll-to-anchors-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chinese Idiom Database Updates</title>
		<link>http://pagesofinterest.net/blog/2008/09/chinese-idiom-database-updates/</link>
		<comments>http://pagesofinterest.net/blog/2008/09/chinese-idiom-database-updates/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 00:19:23 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Idiom - 成语]]></category>
		<category><![CDATA[Chinese Idioms]]></category>
		<category><![CDATA[Culture - 文化]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[成语]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=384</guid>
		<description><![CDATA[I hit a brick wall with my plugin development, so I spent some time updating the <a href="http://pagesofinterest.net/idiom-database/">Chinese Idiom Database</a>.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/02/exec-php-and-wp-syntax-caveat/' rel='bookmark' title='Permanent Link: Exec-php and WP-Syntax Caveat'>Exec-php and WP-Syntax Caveat</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/02/wp-blog-proves-that-dreams-can-come-true/' rel='bookmark' title='Permanent Link: WP-Blog Proves that Dreams *Can* Come True'>WP-Blog Proves that Dreams *Can* Come True</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>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/09/chinese-idiom-database-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS-Kit Comments + Greybox on Any Page</title>
		<link>http://pagesofinterest.net/blog/2008/07/js-kit-comments-greybox-on-any-page/</link>
		<comments>http://pagesofinterest.net/blog/2008/07/js-kit-comments-greybox-on-any-page/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 11:41:10 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[JS-Kit]]></category>
		<category><![CDATA[RW Tutorial - RW教程]]></category>
		<category><![CDATA[Rapidweaver]]></category>
		<category><![CDATA[Snippet - 小片]]></category>
		<category><![CDATA[Tutorial - 教程]]></category>
		<category><![CDATA[Products - 产品]]></category>
		<category><![CDATA[Programming - 编程]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=533</guid>
		<description><![CDATA[I realised that I didnâ€™t want comments to be visible on the page in case one set of photos became wildly popular (yeah, right); which would result in a page of comments with a few photos, instead of a page of photos with maybe one or two comments. For some reason, Greybox popped into my head, and wouldnâ€™t leave. A few hours later, this happened: <a href="http://pagesofinterest.net/mikes/photo/hangzhou/day_1.php">Hangzhou Day 1</a>.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2008/11/styling-js-kit-comments/' rel='bookmark' title='Permanent Link: Styling JS-Kit Comments'>Styling JS-Kit Comments</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/03/js-kit-comments-correct-usage-of-the-permalink-and-path-attributes/' rel='bookmark' title='Permanent Link: JS-Kit Comments: Correct Usage of the &#8216;Permalink&#8217; and &#8216;Path&#8217; Attributes'>JS-Kit Comments: Correct Usage of the &#8216;Permalink&#8217; and &#8216;Path&#8217; Attributes</a></li>
<li><a href='http://pagesofinterest.net/blog/2008/06/js-kit-comments-for-each-blog-entry/' rel='bookmark' title='Permanent Link: JS-Kit Comments for Each Blog Entry'>JS-Kit Comments for Each Blog Entry</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/07/js-kit-comments-greybox-on-any-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RW Helper Update</title>
		<link>http://pagesofinterest.net/blog/2008/07/rw-helper-update/</link>
		<comments>http://pagesofinterest.net/blog/2008/07/rw-helper-update/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 07:41:11 +0000</pubDate>
		<dc:creator>faceleg</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Programming - 编程]]></category>
		<category><![CDATA[Rapidweaver]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=482</guid>
		<description><![CDATA[Instead of using Cocoa to create my latest RW addition, Iâ€™ve decided to use Java.


Related posts:<ol><li><a href='http://pagesofinterest.net/blog/2009/06/write-your-own-listener-interface-you-know-you-want-to/' rel='bookmark' title='Permanent Link: Write Your Own Listener Interface (you know you want to)'>Write Your Own Listener Interface (you know you want to)</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/06/java-repaint-waking-nightmare/' rel='bookmark' title='Permanent Link: Java: repaint() Waking Nightmare'>Java: repaint() Waking Nightmare</a></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/slider-update-tab-feature-coming-together/' rel='bookmark' title='Permanent Link: Slider Update &#8211; Tab Feature Coming Together'>Slider Update &#8211; Tab Feature Coming Together</a></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2008/07/rw-helper-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
