<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>我的空间</title>
	<atom:link href="http://songuke.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://songuke.wordpress.com</link>
	<description>Academic Graphics Research for Future Commercial Games</description>
	<lastBuildDate>Mon, 10 Aug 2009 14:03:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='songuke.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f908cca724e276b9a072e49dd9b27f53?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>我的空间</title>
		<link>http://songuke.wordpress.com</link>
	</image>
			<item>
		<title>Direct3D Tutorial (2007)</title>
		<link>http://songuke.wordpress.com/2009/08/10/direct3d-tutorial-2007/</link>
		<comments>http://songuke.wordpress.com/2009/08/10/direct3d-tutorial-2007/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 14:03:39 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/?p=150</guid>
		<description><![CDATA[Just some notes that I wrote in 2007 for my Direct3D shader kick start. I need to say the tutorial is already a bit out dated. I kept it here for my reference only. Please do not follow it if you are a newbie.  
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
/* Author: Son Hua */
/* Date: 30/05/2007 */
/* How to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=150&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just some notes that I wrote in 2007 for my Direct3D shader kick start. I need to say the tutorial is already a bit out dated. I kept it here for my reference only. Please do not follow it if you are a newbie. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
/* Author: Son Hua */<br />
/* Date: 30/05/2007 */<br />
/* How to create an empty template project for Direct3D programming */</p>
<p>If you&#8217;re a newbie in Direct3D programming, and if you&#8217;re looking for a step-by-step guide to create a framework project to use for your Direct3D programming homework, then this is for you! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>First of all, you need to:<br />
1. Install DirectX SDK<br />
2. Install Microsoft Visual Studio 2005, with Platform SDK (which includes winmm.lib and comclt.lib, which is used by the common framework in DirectX SDK sample directory).</p>
<p>Visual Studio 2005 configuration:<br />
You will have to do some settings for VS2k5 to automatically find header files and library files (.h, .lib) of Direct3D (d3d9.h, d3d9.lib or something like that).</p>
<p>Tools -&gt; Options, go to Project and Solutions node, select VC++ Directories<br />
Choose following items from the combo box on right top of the window:<br />
Include directories &#8211;&gt; Add the path to the Include directory in DirectX SDK installation folder.<br />
e.g. $(DXSDK_DIR)Include<br />
Library directories (.lib) &#8211;&gt; Add the path to the Lib directory in DirectX SDK installation folder.<br />
e.g. $(DXSDK_DIR)Lib\x86</p>
<p>Another approach is that you can set these options in Project Properties of a particular project, but then you will need to repeat this work every time you create a new Direct3D project from scratch. So do it once in the VS2k5 settings instead. </p>
<p>So that&#8217;s it.<br />
Then you can copy the source files in the Common folder of DirectX SDK Samples into your project, modify any #pragma comment (lib, &#8220;&#8230;&#8221;) if needed (to refer to your necessary library, e.g. d3dx9.lib, d3dx9d.lib). Define any necessary constant if needed. </p>
<p>#pragma comment(lib, &#8220;d3d9.lib&#8221;) &#8211;&gt; Link to d3d9.lib (static lib) when compile. You also can declare it in Project Properties instead using #pragma.</p>
<p>error LNK: 2019: unresolved symbols &#8211;&gt; means that some static lib are missing. (Header files are included, but no execution code (inside the static libs) is found as the libs are missing). Using #pragma comment(lib, &#8220;&#8230;&#8221;) to link to more libs if needed.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=150&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/08/10/direct3d-tutorial-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Python SGMLParser and HTMLParser</title>
		<link>http://songuke.wordpress.com/2009/08/08/python-sgmlparser-and-htmlparser/</link>
		<comments>http://songuke.wordpress.com/2009/08/08/python-sgmlparser-and-htmlparser/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:31:20 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[python parser unicode utf-8 codepoint html]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/08/08/python-sgmlparser-and-htmlparser/</guid>
		<description><![CDATA[Recently I started to make a small program that can help me pull out interesting parts of my often visiting news website. The program is written in Python 2.5 and I have derived my parser from HTMLParser in htmllib module.
However, the SGMLParser and HTMLParser are not perfect. It does not handle the &#8220; &#8221; entity reference [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=145&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Recently I started to make a small program that can help me pull out interesting parts of my often visiting news website. The program is written in Python 2.5 and I have derived my parser from HTMLParser in htmllib module.</p>
<p>However, the SGMLParser and HTMLParser are not perfect. It does not handle the &#8220; &#8221; entity reference and the character reference &#8220;&amp;#val;&#8221; where val is greater than 255. So when I print out the literal data to the HTTP response, these characters are replaced with a strange question mark character like this (�).</p>
<p>Fortunately, it is not hard to fix this issue. Just override the entity_def table to add new entity references, and override the convert_charref and convert_codepoint function to handle character reference. Below is my fix.</p>
<pre>
#----------------------------------------------------------------
# Definition of entities -- derived classes may override
# Default SGML and HTML parser do not handle   entity reference.
# It is handled here.
entitydefs = \
{'lt': '', 'amp': '&amp;', 'quot': '"', 'apos': '\'',
# custom entity ref handler
'nbsp': ' '
}

# Default SGML parser does not handle charref where the character value is greater than 255.
# It is handled here.
def convert_charref(self, name):
"""Convert character reference, may be overridden."""
try:
n = int(name)
except ValueError:
return
#if not 0 &lt;= n &lt;= 255:
#    return
return self.convert_codepoint(n)

def convert_codepoint(self, codepoint):
return unichr(codepoint) # unicode version of chr
</pre>
<p>Then everything is fine. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=145&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/08/08/python-sgmlparser-and-htmlparser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>10,000 lines of code</title>
		<link>http://songuke.wordpress.com/2009/07/30/10000-lines-of-code/</link>
		<comments>http://songuke.wordpress.com/2009/07/30/10000-lines-of-code/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:32:41 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/?p=143</guid>
		<description><![CDATA[An up coming challenge.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=143&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>An up coming challenge.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=143&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/07/30/10000-lines-of-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Did not pass two questions</title>
		<link>http://songuke.wordpress.com/2009/06/09/did-not-pass-two-questions/</link>
		<comments>http://songuke.wordpress.com/2009/06/09/did-not-pass-two-questions/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 01:59:42 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/06/09/did-not-pass-two-questions/</guid>
		<description><![CDATA[I didn&#8217;t pass Database and Network. In deep depress at the moment. What&#8217;s going on? What is the main reason for this failure? Time! Yes, I didn&#8217;t totally pay attention to this module. Next semester, more time should be reserved to study this again! Life still goes on. Try your best and you will not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=54&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I didn&#8217;t pass Database and Network. In deep depress at the moment. What&#8217;s going on? What is the main reason for this failure? Time! Yes, I didn&#8217;t totally pay attention to this module. Next semester, more time should be reserved to study this again! Life still goes on. Try your best and you will not regret that.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=54&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/06/09/did-not-pass-two-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Daily News</title>
		<link>http://songuke.wordpress.com/2009/06/08/daily-news/</link>
		<comments>http://songuke.wordpress.com/2009/06/08/daily-news/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 04:58:44 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[3D Graphics]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/06/08/daily-news/</guid>
		<description><![CDATA[1. Render Water as a Post-Process Effect
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=52&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1. <a href="http://www.gamedev.net/reference/articles/article2642.asp">Render Water as a Post-Process Effect</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=52&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/06/08/daily-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Daily News</title>
		<link>http://songuke.wordpress.com/2009/06/04/48/</link>
		<comments>http://songuke.wordpress.com/2009/06/04/48/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 08:22:20 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[3D Graphics]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/06/04/48/</guid>
		<description><![CDATA[
GPU-accelerated WiFi password cracking goes mainstream
Hierarchical Image Space Radiosity for Interactive Global Illumination (Eurographics 2009)
Seadragon Mobile (iPhone app from Microsoft) uses iPhone GPU acceleration for large image browsing and zooming.
Deferred Shading tutorial and implementation.
Deferred Lighting (Light PrePass) in CryEngine 3.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=48&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ol>
<li><a href="http://blogs.zdnet.com/security/?p=2419">GPU-accelerated WiFi password cracking goes mainstream</a></li>
<li><a href="http://www.cs.uiowa.edu/~cwyman/publications/files/imgSpRadiosity/egsr09_imgSpRadiosity.small.pdf">Hierarchical Image Space Radiosity for Interactive Global Illumination (Eurographics 2009)</a></li>
<li>Seadragon Mobile (iPhone app from Microsoft) uses <a href="http://arstechnica.com/apple/news/2008/12/microsoft-iphone-gpu-support-bests-the-competition.ars">iPhone GPU acceleration</a> for large image browsing and zooming.</li>
<li><a href="http://www710.univ-lyon1.fr/~jciehl/Public/educ/GAMA/2007/Deferred_Shading_Tutorial_SBGAMES2005.pdf">Deferred Shading</a> tutorial and implementation.</li>
<li>Deferred Lighting (Light PrePass) in CryEngine 3.</li>
</ol>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=48&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/06/04/48/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Experience from CS6240</title>
		<link>http://songuke.wordpress.com/2009/04/22/experience-from-cs6240/</link>
		<comments>http://songuke.wordpress.com/2009/04/22/experience-from-cs6240/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 05:43:37 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[personal-experience]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/04/22/experience-from-cs6240/</guid>
		<description><![CDATA[I&#8217;ve been trying out my best efforts in this CS6240 course project although I did not have a lot of time. I felt quite satisfied with my presentation preparation but it seems not running well when I present the work to the professor. No matter how I try, he kept asking me about those questions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=44&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been trying out my best efforts in this CS6240 course project although I did not have a lot of time. I felt quite satisfied with my presentation preparation but it seems not running well when I present the work to the professor. No matter how I try, he kept asking me about those questions that I think it is really trivial to the way I&#8217;m doing the project. I&#8217;ve no idea what is going wrong. I&#8217;ve been working hard, and I don&#8217;t want to get a bad grade. But anyway, before you blame others, you need to look back at yourself. I drew out a couple of things after this project:<br />
1. Do not try to reimplement other&#8217;s method, unless you are asked to do so in an assignment. Use your own method, even though it&#8217;s not so good. But it shows how independent you are from defining the problem, find an algorithm to solve, and evaluate the result.<br />
2. Do not start your project too late that you suffer from the pressure of being late in the project deadline. It prevents your creativity.<br />
3. You need to determine what you want to solve from the beginning. Do not try out a method and after that run tests to see how far this method can work, or how many tests it can handle. Instead, design a method that address a specific problem that you know well, and make the algorithm to address and solve that problem in the end. My experience: I implemented a method to transfer the style. However, I didn&#8217;t address any specific styles like water color, oil, pastel. I complete the implementation and then test what it can handle. This is not good for research (the professor told me that). Instead, address something like water color, and design your method to transfer good water color instead. This is far more better.</p>
<p>Finally, sometimes you get wrong, but do not give up. This failure is a good experience to a better work in the future. So do not blame the others, first blame myself and learn from it. The world is always interesting to learn about.  :)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=44&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/04/22/experience-from-cs6240/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Tile Studio, a very nice tool for pixel artists</title>
		<link>http://songuke.wordpress.com/2009/04/05/tile-studio-a-very-nice-tool-for-pixel-artists/</link>
		<comments>http://songuke.wordpress.com/2009/04/05/tile-studio-a-very-nice-tool-for-pixel-artists/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 03:06:45 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[game tile pixel]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/04/05/tile-studio-a-very-nice-tool-for-pixel-artists/</guid>
		<description><![CDATA[I revisit Tile Studio again today after knowing about it a few years ago. Not many updates since then but I like the way this tool helps pixel artists, especially newbies, to draw more easily. Tiles of different size can be created side by side and then animation can be synthesized using key frames. Colors [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=43&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I revisit Tile Studio again today after knowing about it a few years ago. Not many updates since then but I like the way this tool helps pixel artists, especially newbies, to draw more easily. Tiles of different size can be created side by side and then animation can be synthesized using key frames. Colors can be selected in a range to ease the shading. The darken/lighten tool make the lighting process, in case you do it manually, more easier. Darker and brighter colors are selected automatically. Last but not least, a small preview window at the bottom right shows how your tile looks when placing it on the map. A must-use tool for indie game developers.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=43&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/04/05/tile-studio-a-very-nice-tool-for-pixel-artists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Shortcuts</title>
		<link>http://songuke.wordpress.com/2009/03/28/ubuntu-shortcuts/</link>
		<comments>http://songuke.wordpress.com/2009/03/28/ubuntu-shortcuts/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 05:48:00 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2009/03/28/ubuntu-shortcuts/</guid>
		<description><![CDATA[Ctrl + Alt + F1 = Switch to the first virtual terminal
Ctrl + Alt + F2(F3)(F4)(F5)(F6) = Select the different virtual terminals
Ctrl + Alt + F7 = Switch to current terminal session with X (e.g., go back to Gnome from terminal)
(from http://ubuntuforums.org/showthread.php?t=50794)
Alt-Ctrl-L Locks the screen.
Alt-F1 opens the Applications menu, then use the arrow keys to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=38&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Ctrl + Alt + F1</strong> = Switch to the first virtual terminal<br />
<strong>Ctrl + Alt + F2(F3)(F4)(F5)(F6)</strong> = Select the different virtual terminals<br />
<strong>Ctrl + Alt + F7</strong> = Switch to current terminal session with X (e.g., go back to Gnome from terminal)</p>
<p style="text-align:right;">(from http://ubuntuforums.org/showthread.php?t=50794)</p>
<p>Alt-Ctrl-L Locks the screen.</p>
<p><strong>Alt-F1 opens the Applications menu</strong>, then use the arrow keys to navigate the submenus.</p>
<p><strong>Alt-F2 opens the Run Application dialog box</strong>.</p>
<p>Alt-F3 opens the Deskbar Applet (F3 opens the search bar at the bottom of the window).</p>
<p>Alt-F4 closes the current window.</p>
<p>Alt-F5 unmaximizes the current window (if it&#8217;s maximized, of course).</p>
<p><strong>Alt-F7, followed by arrow keys or mouse movement, adjusts the current window&#8217;s position</strong>.</p>
<p><strong>Alt-F8 resizes the current window.</strong></p>
<p><strong>Alt-F9 minimizes the current window.</strong></p>
<p>Alt-F10 maximizes the current window.</p>
<p>Alt-spacebar opens the window menu.</p>
<p>Alt-Tab moves between open windows.</p>
<p>Ctrl-Alt-Tab moves between open panels on the desktop.</p>
<p>Ctrl-W closes the current window.</p>
<p>Ctrl-Q closes the current application.</p>
<p>Here are some keyboard shortcuts for working in the Terminal window:</p>
<p>Ctrl-C kills the current process.</p>
<p>Ctrl-Z sends the current process to the background.</p>
<p>Ctrl-D logs you out.</p>
<p>Ctrl-R finds the last command matching the entered letters.</p>
<p>Tab followed by entered letters lists the available commands beginning with those letters.</p>
<p>Ctrl-U deletes the current line.</p>
<p>Ctrl-K deletes from the cursor right.</p>
<p>Ctrl-W deletes the word before the cursor.</p>
<p>Ctrl-L clears the terminal output.</p>
<p>Shift-Insert pastes the contents of the clipboard.</p>
<p>Alt-F moves forward one word.</p>
<p>Alt-B moves backward one word.</p>
<p style="text-align:right;">(From Ubuntu Unleashed, http://www.ubuntu-unleashed.com/2008/02/list-of-ubuntu-keyboard-shortcuts.html)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=38&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2009/03/28/ubuntu-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
		<item>
		<title>[November 12, 2008] Ngày 12 tháng 11 năm 2008 :D</title>
		<link>http://songuke.wordpress.com/2008/11/12/november-12-2008-ngay-12-thang-11-nam-2008-d/</link>
		<comments>http://songuke.wordpress.com/2008/11/12/november-12-2008-ngay-12-thang-11-nam-2008-d/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 06:34:39 +0000</pubDate>
		<dc:creator>songuke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://songuke.wordpress.com/2008/11/12/november-12-2008-ngay-12-thang-11-nam-2008-d/</guid>
		<description><![CDATA[Hôm nay thứ tư, ngày 12 tháng 11 năm 2008. Một ngày bình thường, tối về nhà sớm hơn 2 ông trong nhà, ở trường làm việc rồi, về nhà được nghỉ ngơi nên buồn buồn lôi cái blog ra update. ^^
Kể ra thì còn một tháng nữa thi JLPT3 rồi, mà giờ này còn [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=57&subd=songuke&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hôm nay thứ tư, ngày 12 tháng 11 năm 2008. Một ngày bình thường, tối về nhà sớm hơn 2 ông trong nhà, ở trường làm việc rồi, về nhà được nghỉ ngơi nên buồn buồn lôi cái blog ra update. ^^</p>
<p>Kể ra thì còn một tháng nữa thi JLPT3 rồi, mà giờ này còn 3 bài chưa học T_T, chưa luyện nghe, chưa làm sample test, chưa ôn hết ngữ pháp <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (, đã vậy cuối tháng còn ham hố theo mấy đứa trong lab wa Kuching chơi 3 ngày nữa. Lần này gan ớn luôn rồi, thi JLPT3 mà tèo coi như tốn mấy trăm k tiền đăng kí. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( Giờ chỉ ước, đi chơi về khỏi học bài mà tự nhiên thi đậu thì thiệt là khoái <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Dạo này ở Sing không buồn cũng không dzui. Ngày lại ngày, công việc một đống, mỗi ngày đem ra gặm một miếng, khi nào gần hết đống đó tự nhiên lòi ra một đống khác, làm suốt ngày mà không được nghỉ <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( Mau mau qua tháng 12 cho con nhờ, mau mau tới Tết cho con nhờ, sẽ về nhà chơi, sẽ được nghỉ nửa tháng <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Hết tháng 12 năm nay coi như xong vụ tiếng Nhật đi, năm sau sẽ polish tiếng Tàu của mình lên cái nữa. Sẽ cố gắng cho cái english tiến thêm tí nữa, degrade quá rồi <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Hè hè, phải đi tắm rồi. Đói bụng quá nữa. Đi tắm rồi đi nấu mì ăn <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Viết  blog xong tự nhiên thấy yêu đời gớm. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/songuke.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/songuke.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/songuke.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/songuke.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/songuke.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/songuke.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/songuke.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/songuke.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/songuke.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/songuke.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=songuke.wordpress.com&blog=2120165&post=57&subd=songuke&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://songuke.wordpress.com/2008/11/12/november-12-2008-ngay-12-thang-11-nam-2008-d/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/14428e4b568e8c08610df994e92132e5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">songuke</media:title>
		</media:content>
	</item>
	</channel>
</rss>