<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>低調的傳說之地</title>
	<atom:link href="http://skyx.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://skyx.wordpress.com</link>
	<description>收藏著我珍貴的寶藏</description>
	<lastBuildDate>Wed, 11 Jan 2012 15:33:27 +0000</lastBuildDate>
	<language>zh-hk</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='skyx.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>低調的傳說之地</title>
		<link>http://skyx.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://skyx.wordpress.com/osd.xml" title="低調的傳說之地" />
	<atom:link rel='hub' href='http://skyx.wordpress.com/?pushpress=hub'/>
		<item>
		<title>[iOS] UITableView 應用及其總結</title>
		<link>http://skyx.wordpress.com/2012/01/09/ios-uitableview-use-and-summary/</link>
		<comments>http://skyx.wordpress.com/2012/01/09/ios-uitableview-use-and-summary/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 16:27:11 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[編程交流]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1208</guid>
		<description><![CDATA[說好的，這次寫iOS的技術文章，雖然我也沒有用iOS的cocoa touch framework多久。哈哈! 注：本文假定各位有一些objective-c語法基礎。 注2：本文部份圖片來源自Apple Developer文檔，最傳神的說XD。 言歸正傳，這次的主題是 UITableView ─ 很常用的present資料的component。 UITableView 的 Style 預設有兩種：Plain 及 Grouped。 Plain: Grouped: 裝在 UITableView 裡面的元素是 UITableViewCell。 Cell的結構圖： 而 UITableViewCell 預設有4種樣式 Style： UITableViewCellStyleDefault：預設使用這種，若左側ImageView沒圖的話，只有一行字(textLable.text)。 UITableViewCellStyleValue1：左側為textLable.text並且左對齊，右側為detailTextLable.text並且右對齊。 UITableViewCellStyleValue2：左側為detailTextLable.text，右側為textLable.text並且左對齊。 UITableViewCellStyleSubtitle：跟UITableViewCellStyleDefault大致相同，detailTextLable.text出現在textLable.text下方。 textLable和detailTextLable都包含在contentView裡面。 那麼先上點code snippet代碼來說明要如何使用： Cell 在alloc後便不能再更改某些component的frame了，例如是ImageView，textLable及detailTextLable等。 如果比較進階一點的，想修改或者增加更多的component進去Cell裡面，有兩種方法(大同小異)： 第一種是在cellForRowAtIndexPath delegate method裡alloc cell時在contentView裡面addSubView。 第二種是需要繼承Cell作一個Custom Cell 的Class，並可以使用layoutSubview等方法來修改component的frame呢。 References: A Closer Look at Table-View Cells Standard Styles for Table-View Cells [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1208&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2012/01/09/ios-uitableview-use-and-summary/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/table_style_plain.png" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/table_style_grouped.png" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/tv_cell_parts_simple.jpg" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/tvcellstyle_default.jpg" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/tvcellstyle_value1.jpg" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/tvcellstyle_value2.jpg" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2012/01/tvcellstyle_subtitle.jpg" medium="image">
			<media:title type="html">點擊看全圖</media:title>
		</media:content>
	</item>
		<item>
		<title>生日大快樂</title>
		<link>http://skyx.wordpress.com/2011/12/19/happy-birthday-2011/</link>
		<comments>http://skyx.wordpress.com/2011/12/19/happy-birthday-2011/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 04:39:10 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[心情記事]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1195</guid>
		<description><![CDATA[好久沒更新BLOG了，現在比較少時間在寫文章，看來這幾天寫一些技術文章來總結一下iOS 的學習過程吧。 言歸正轉，昨天是我的生日，非常感謝各方好友的祝福。 小弟非常開心，希望各位也跟我一樣開心快樂阿！ Filed under: 心情記事<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1195&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/12/19/happy-birthday-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>寫 iphone apps</title>
		<link>http://skyx.wordpress.com/2011/11/13/working-on-iphone-apps/</link>
		<comments>http://skyx.wordpress.com/2011/11/13/working-on-iphone-apps/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 14:43:18 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[學習記事錄]]></category>
		<category><![CDATA[工作記事錄]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1191</guid>
		<description><![CDATA[近來在公司裡主要的TASK是開發iOS應用程式，一個e服務的聚合Apps，只允許某電訊的客戶才能使用。 這個限制&#8230;老實說，基於End User的角度來說，這很討人厭。但站於商業角度考慮，這是理所當然的肥水不流別人田。 站在我作為implement者的立場，只是單純想要把最棒的Apps呈現出來就可以了，GUI Design有其他人負責，但感覺也不是十分好看的GUI&#8230; 這支程式用到很多主流Apps都覆蓋的技術： 1. Tab Bar + Navigation Bar 複合型界面 2. ScrollView 實現動態 Remote Link Banner，支持點擊Show Details及Image Cache 3. 類似 Whatsapp 的 Activation 方法及相關底層數據儲存 4. 使用通訊錄API 5. 大量 Async Web service (使用官方NSURLConnection, NSXMLParser API) 6. 應用 UITableVIew + 自定義 Cell + 刪除 + 排序 7. 使用打電話API 8. Google Map + Location Service [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1191&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/11/13/working-on-iphone-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>回憶裡一個重要的考試</title>
		<link>http://skyx.wordpress.com/2011/09/11/a-important-exam-in-my-memory/</link>
		<comments>http://skyx.wordpress.com/2011/09/11/a-important-exam-in-my-memory/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 06:18:34 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[心情記事]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1185</guid>
		<description><![CDATA[今天在一個我大學唸書的論壇上看到一個學弟問某某老師教得好不好，會不會很嚴跟擋掉學生的問題。 突然之間回想起一件挺難忘的事，事緣我因重要的事需要離開澳門，而那天正好有丁教授的人工智能期中考試。 我重要的事是不可能改期的，所以在前兩天，我打算到丁教授的辦公室裡面說明情況。 其實只有兩種選擇，第一是辦完事後回來考。 但是會覺得其他人都考了，會不會比較不公平？ 因為我能問別人考試內容，雖然我不打算這樣做。而教授會不會也覺得比較難做呢？ 第二是我先提早考，然後立即離開澳門處理重要的事。對其他學生公平，只是對自己不公平而已，少一些時間複習。 最後，我選擇了第二個選擇，我相信我不會因為多一點時間複習對考試結果有很深遠的影響，只是早一天考而已。 這天，我到丁教授的辦公室裡獨自一人坐著考試。心裡面其實挺緊張，丁教授1 VS 1耶! 我一邊做一邊在看時間，一來是害怕時間不夠，二來是我爸在等我，送我去碼頭&#8230; 後來丁教授外出，只剩我自己一個人在做。其實有一些題目我不會做，當下心裡想拿點複習資料看，但是這是作弊耶！所以我沒有這樣做，懂就懂，不懂就不做！ 丁教授回來了，她看著我仍然在做，坐回她的座位上繼續工作。 終於，我把懂的題都做完了。時間還有剩，不會的題也以自己的思考下給做了下去，錯就錯唄！ 複看一次試卷確認無誤後，我跟丁教授說完成了，然後我離開了她的辦公室，跑去大學外面，我爸在等著我呢。 一個星期後，派發考卷。我覺得大家都是很強的實力的學生，怎料到挺多人不合格又或者是分數六十幾的。 當派到我的時候，我有八十幾份耶 @@! 比別人早考，沒有作弊，八十幾分，真正實力，當之無愧! 我知道A君仍然是九十幾分&#8230; Filed under: 心情記事<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1185&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/09/11/a-important-exam-in-my-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>遙遠的連線</title>
		<link>http://skyx.wordpress.com/2011/08/21/remote-imac-from-windows/</link>
		<comments>http://skyx.wordpress.com/2011/08/21/remote-imac-from-windows/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 07:38:07 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[工作記事錄]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1181</guid>
		<description><![CDATA[我已經開始使用公司的imac一段小時間，其27吋的大螢幕，非常之棒。 用來開發iphone app不用再在13.3吋的小螢幕上看到脫窗了XD 由於support的原因，上一星期很少時間使用它，基本上沒進度可言呢。 所以在想如果在家能remote它就好了。 首先在windows機子下面，用VNC client即可，而在mac機上，則使用Vine Server。 基本上Vine Server開著在後台上，就可以用VNC client連上。 事實上，我在家中要連上公司這台imac，要經過： 家裡windows連上一台公司server，再從這台server連上自己在公司上的desktop， 再從這台desktop連上imac。 有夠複雜的連線 = =&#124;&#124;&#124; 看看速度慢不慢，太慢就直接無視了XD Filed under: 工作記事錄<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1181&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/08/21/remote-imac-from-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>神速</title>
		<link>http://skyx.wordpress.com/2011/07/18/rapid-to-build-up-iphone-app-with-a-week/</link>
		<comments>http://skyx.wordpress.com/2011/07/18/rapid-to-build-up-iphone-app-with-a-week/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 15:16:32 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[工作記事錄]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1173</guid>
		<description><![CDATA[我目前在公司裡的新玩兒──寫iphone apps。對於iOS這個platform，我是沒有太多研究的，雖然我在iphone 2G時代曾經研究過。 先後購買了 iphone4, ipad2 , imac 27&#8243; (沒付運到)，不過timeline已經定了在8月份。 由於imac還沒到位，其中一個同事借了他的macbook pro給我在公司做。 幸好我先去研究一下相關資料，一個星期就基本弄到八九成了。(連我都覺得自己神速) 主要function:  user input a word (handle keyboard show and hidden)  search (soap call web service)，return xml and parsering (delegate) to data array  navigate to tableview show result  click more button to load more data  click item to navigate detail view show detail [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1173&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/07/18/rapid-to-build-up-iphone-app-with-a-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2008/06/xd.gif" medium="image">
			<media:title type="html">XD</media:title>
		</media:content>
	</item>
		<item>
		<title>黑歷史</title>
		<link>http://skyx.wordpress.com/2011/07/06/dark-history/</link>
		<comments>http://skyx.wordpress.com/2011/07/06/dark-history/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 13:02:27 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[心情記事]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1169</guid>
		<description><![CDATA[相信在每個人的內心深處都有一些不想向別人提起的人生經歷， 曾經伴除著你的這段黑暗歲月，稱之為黑歷史。 時光飛逝，儘管已經完結了，你又有多大的勇氣敢說出來？ Filed under: 心情記事<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1169&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/07/06/dark-history/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>朋友飯聚2</title>
		<link>http://skyx.wordpress.com/2011/06/27/gathering-with-university-guys-2/</link>
		<comments>http://skyx.wordpress.com/2011/06/27/gathering-with-university-guys-2/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 08:51:22 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[心情記事]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1163</guid>
		<description><![CDATA[這次的飯聚選了去吃意大利菜，老實說我是第一次吃耶！ 地點是一家挺有意大利feel的餐廳，waiter都是說意大利文或英語&#8230;很少懂中文的 @@ 桌子上會放著一些烤麵包條像零食一樣，然後menu有中/英/意三語。酒menu全意大利文。 點菜時是用指號碼來叫XD，當然點的人還是有輔以英文喇，不過有沒有聽懂倒是不知道呢XD 印象中的菜單: 頭盤: 三文魚片 + 切片麵包(牛油) 主菜: 烤雞 And 薄餅(細)X2  And 墨魚汁飯 飲料: 支裝意大利水X2 (感覺像普通水) 570MOP左右，感覺還是挺好吃的。(味覺超一般的我XD) 不過在聊天層面，是位置不好還是&#8230;? 有點好像插不到話題 @@&#8230;是哪招? Filed under: 心情記事<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1163&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/06/27/gathering-with-university-guys-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
		<item>
		<title>修復WordPress上Box.net的widget</title>
		<link>http://skyx.wordpress.com/2011/05/23/fixed-boxnet-widget-embed-on-wordpress-com/</link>
		<comments>http://skyx.wordpress.com/2011/05/23/fixed-boxnet-widget-embed-on-wordpress-com/#comments</comments>
		<pubDate>Mon, 23 May 2011 15:54:31 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[雜文]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1159</guid>
		<description><![CDATA[不知道大家有否注意到右側裝著一些shared的檔案給大家下載的flash呢? (眾人：沒有!) 前一陣子我已經發現它好像壞了! 直到剛剛我才把它給修復了，哈哈。 我起初還以為是Box.net系統出問題，結論是&#8230;Box.net更改了flashplayer及其連結方式寫法。 下面來一個總結，分享給一些有相同問題的朋友們。 Step 1: 登入Box.net系統，然後到自己想分享檔案的folder外面。然後點選右邊的三角形： Step 2: 彈出的設定對話框，可以選擇圖示、排序及大小，設定完成後可以預覽或者直接把中間的Code copy起來貼到wordpress的widget上使用囉! Step 3: Sample預覽結果。 Filed under: 雜文 Tagged: Wordpress<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1159&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/05/23/fixed-boxnet-widget-embed-on-wordpress-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2011/05/retrieved_the_embed_code_1.png" medium="image">
			<media:title type="html">Step1</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2011/05/retrieved_the_embed_code_2.png" medium="image">
			<media:title type="html">Step2</media:title>
		</media:content>

		<media:content url="http://skyx.files.wordpress.com/2011/05/retrieved_the_embed_code_3.png" medium="image">
			<media:title type="html">Step3</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenXML及SharePoint 2010簡單研究使用總結</title>
		<link>http://skyx.wordpress.com/2011/05/22/use-openxml-generate-excel-upload-to-sharepoint-2010-summary/</link>
		<comments>http://skyx.wordpress.com/2011/05/22/use-openxml-generate-excel-upload-to-sharepoint-2010-summary/#comments</comments>
		<pubDate>Sun, 22 May 2011 08:18:43 +0000</pubDate>
		<dc:creator>skyx</dc:creator>
				<category><![CDATA[編程交流]]></category>

		<guid isPermaLink="false">http://skyx.wordpress.com/?p=1153</guid>
		<description><![CDATA[最近因應公司要升級內部的Server──Sharepoint 2010，又有一個小功能想做，結果自己跑去研究SDK了。 雖然最後確認不是我做的XD 但是我自己還是覺得學多了一點東西是不錯的呢！ 我主要是做了這些功能： 1) search from database 2) generate DataSet by ADO.NET 3) using Open XML SDK v2.0 generate Excel 2007 format output (.xlsx) 4) upload to Sharepoint 2010 by Sharepoint Client SDK 嚴格來說只有第三、第四兩點是新東西。或許有一些人不知道，xlsx這種新型的Excel其實是一個Zip file，而裡面是一堆XML組成的。 而這些XML是一個標準OOXML的實現，通過Open XML SDK就可以讀寫xlsx了。 不過它要求.net framework 3.5，原因估計是因為用了Linq，可是公司裡才用VS2005 + fw 2.0 = = 即使裝了fw 3.5，VS2005 還是沒有更改target framework的選項阿，囧rz 由於我本機fw全都裝了，直接混合來用結果還是可行的，但是Linq使用不能，Open XML SDK [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skyx.wordpress.com&amp;blog=1119790&amp;post=1153&amp;subd=skyx&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://skyx.wordpress.com/2011/05/22/use-openxml-generate-excel-upload-to-sharepoint-2010-summary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/508c3638e125811aee73543fe832b2fa?s=96&#38;d=identicon" medium="image">
			<media:title type="html">skyx</media:title>
		</media:content>
	</item>
	</channel>
</rss>
