<?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>the fancy vicissitude of mirage &#187; Works</title>
	<atom:link href="http://blog.cybersome.com/category/works/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cybersome.com</link>
	<description>follow the heart, chase the dream</description>
	<lastBuildDate>Sat, 22 May 2010 08:55:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>the beginning of scheme, CSci 1901</title>
		<link>http://blog.cybersome.com/2009/02/the-beginning-of-scheme-csci-1901/</link>
		<comments>http://blog.cybersome.com/2009/02/the-beginning-of-scheme-csci-1901/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 06:25:50 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://blog.cybersome.com/?p=68</guid>
		<description><![CDATA[一个小时前本来想贴的,怕惹到人生气,所以保存草稿的&#8230; ;;CSCI 1901 ;;Homework 1 ;;Jincheng Yu ;; ;;Problem 2: Taylor series for the value of the mathematical constant e (define (taylor n) (define (factor n) (define (factorial n) (cond ((= 1 n) 1) ((= 0 n) 1) (else (* n (factorial (- n 1)))))) (/ 1 (factorial n))) (define (taylor-helper counter result) (if (= [...]]]></description>
			<content:encoded><![CDATA[<p>一个小时前本来想贴的,怕惹到人生气,所以保存草稿的&#8230;</p>
<p><code>;;CSCI 1901<br />
;;Homework 1<br />
;;Jincheng Yu<br />
;;<br />
;;Problem 2: Taylor series for the value of the mathematical constant e</p>
<p>(define (taylor n)<br />
    (define (factor n)<br />
      (define (factorial n)<br />
	(cond ((= 1 n) 1)<br />
	      ((= 0 n) 1)<br />
	      (else (* n (factorial (- n 1))))))<br />
      (/ 1 (factorial n)))<br />
  (define (taylor-helper counter result)<br />
    (if (= 0 counter)<br />
	(+ result (factor 0))<br />
	(taylor-helper (- counter 1) (+ result (factor counter)))<br />
    )<br />
  )<br />
  (taylor-helper n 0)<br />
)</code></p>
<p>btw, (for SEO purpose) <a href="http://it.umn.edu/students/awards/deanslist/index.html">Dean’s list</a.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cybersome.com/2009/02/the-beginning-of-scheme-csci-1901/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>贴涂鸦~</title>
		<link>http://blog.cybersome.com/2008/06/jes-doodle/</link>
		<comments>http://blog.cybersome.com/2008/06/jes-doodle/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 14:18:14 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://blog.cybersome.com/?p=60</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><center></p>
<p><a href="/wp-content/uploads/2008/06/lol.png"><img src="/wp-content/uploads/2008/06/lol.png" alt="" title="lol" width="300" height="99" /></a></p>
<p><a href="/wp-content/uploads/2008/06/hearts2love.png"><img src="/wp-content/uploads/2008/06/hearts2love.png" alt="" title="hearts2love" width="308" height="152" /></a></p>
<p><a href="/wp-content/uploads/2008/06/hnn.png"><img src="/wp-content/uploads/2008/06/hnn.png" alt="" title="hnn" width="350" height="144" /></a></p>
<p><a href="/wp-content/uploads/2008/06/jiong.png"><img src="/wp-content/uploads/2008/06/jiong.png" alt="" title="jiong" width="356" height="113" /></a></p>
<p><a href="/wp-content/uploads/2008/06/umn.png"><img src="/wp-content/uploads/2008/06/umn.png" alt="" title="umn" width="345" height="101" /></a></p>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cybersome.com/2008/06/jes-doodle/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>almost all techniques in day trading reflect facts in real life</title>
		<link>http://blog.cybersome.com/2008/04/almost-all-techniques-in-day-trading-reflect-facts-in-real-life/</link>
		<comments>http://blog.cybersome.com/2008/04/almost-all-techniques-in-day-trading-reflect-facts-in-real-life/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 21:05:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Works]]></category>

		<guid isPermaLink="false">http://blog.cybersome.com/2008/04/almost-all-techniques-in-day-trading-reflect-facts-in-real-life/</guid>
		<description><![CDATA[在看Tools and Tactics for the Master Day Trader (Oliver Velez &#038; Greg Capra),当然是中文版的啦:《短线交易大师:工具和策略》 看了将近100页,感觉有些难啃,稍微哲了点.真正技术,图表说的不太多.更多是分析原理和谈思维方式与心态. 感觉不止是在说短线交易的心态,还能辐射的更深入 算了,我转述还不如摘录表达的清晰 #$%#$#$%#$%#$% 呵呵,没找到文本版的,我就懒得练打字了吧.真有兴趣的自己下pdf看吧.47.08M(这是个纯扫描的版本,没我看的那个清晰) &#8230;或者是我演绎太多了&#8230;?顶多解释成我平时太过抗拒吹嘘人生哲理的扯淡书吧&#8230;.whatever, 先把这些记着吧 p.s. Jay的音乐还不错,基本算顺耳的 p.p.s. Yahoo对中文的支持还不是一般的糟糕.notepad里存的中文字全成了乱码 :( p.p.p.s. To: &#8220;you know whom I proposed to mention&#8221;, 坚持,努力~ ;-)]]></description>
			<content:encoded><![CDATA[<p>在看Tools and Tactics for the Master Day Trader (Oliver Velez &#038; Greg Capra),当然是中文版的啦:《短线交易大师:工具和策略》</p>
<p>看了将近100页,感觉有些难啃,稍微哲了点.真正技术,图表说的不太多.更多是分析原理和谈思维方式与心态.</p>
<p>感觉不止是在说短线交易的心态,还能辐射的更深入</p>
<p>算了,我转述还不如摘录表达的清晰</p>
<blockquote><p>#$%#$#$%#$%#$%</p>
<p>呵呵,没找到文本版的,我就懒得练打字了吧.真有兴趣的自己下pdf看吧.<a href="http://www.waihui.com/ebook/day_trader.pdf">47.08M</a>(这是个纯扫描的版本,没我看的那个清晰)</p></blockquote>
<p>&#8230;或者是我演绎太多了&#8230;?顶多解释成我平时太过抗拒吹嘘人生哲理的扯淡书吧&#8230;.whatever, 先把这些记着吧</p>
<p>p.s. Jay的音乐还不错,基本算顺耳的</p>
<p>p.p.s. Yahoo对中文的支持还不是一般的糟糕.notepad里存的中文字全成了乱码 :(</p>
<p>p.p.p.s. To: &#8220;you know whom I proposed to mention&#8221;, 坚持,努力~ ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cybersome.com/2008/04/almost-all-techniques-in-day-trading-reflect-facts-in-real-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
