<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.ruri.com.tw/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang=""><title type="html">技術論壇</title><subtitle type="html">CommunityServer , BlogEngine.Net 原廠公告、最佳化與個人研究心得</subtitle><id>http://www.ruri.com.tw/blogs/tech/atom.aspx</id><link rel="alternate" type="text/html" href="http://www.ruri.com.tw/blogs/tech/default.aspx" /><link rel="self" type="application/atom+xml" href="http://www.ruri.com.tw/blogs/tech/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.36.8414">Community Server</generator><updated>2009-12-08T22:50:00Z</updated><entry><title>ScrewTurn Wiki 3.0.2</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/19/ScrewTurn-Wiki-3.0.2.aspx" /><id>/blogs/tech/archive/2010/02/19/ScrewTurn-Wiki-3.0.2.aspx</id><published>2010-02-19T15:14:00Z</published><updated>2010-02-19T15:14:00Z</updated><content type="html">ScrewTurn Wiki 在農曆年前的幾天，發佈了 3.0.2 版本 這版本對於台灣用戶來說，是一個很重要的版本，因為已經內建的正體中文翻譯 另外原本要外掛的 Sitemap ，也改為內建功能，不需要再外掛了 詳細更新與下載，請見官方網站: http://www.screwturn.eu/Changelog.ashx...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/19/ScrewTurn-Wiki-3.0.2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3954" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="ScrewTurnWiki" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/ScrewTurnWiki/default.aspx" /></entry><entry><title>Color ListBox for .Net 2.0</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/08/Color-ListBox-for-Net-2.aspx" /><id>/blogs/tech/archive/2010/02/08/Color-ListBox-for-Net-2.aspx</id><published>2010-02-08T07:50:00Z</published><updated>2010-02-08T07:50:00Z</updated><content type="html">因為工作關係，常需要寫測試軟體，偶爾會看到訪間的 Log 畫面是彩色的，也想動手將測試結果輸出彩色的 一般我都會用 ListBox 作為顯示畫面，因為 ListBox 以行為單位，很適合我的使用，但也很不幸的 .Net 並沒有辦法將 ListBox 每行用不同的顏色，不過其實還是可以讓他用 &amp;quot;畫&amp;quot; 的完成這項作業 首先先把 DrawMode 設定為 OwnerDrawVariable ，再加入 listBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBox1_DrawItem) ，這時您就可以自己創作 ListBox 的顯示方式了 此時便可以用 e.Graphics.DrawString 畫出所要的有顏色字串 e.Graphics.DrawString((sender as ListBox).Items[e.Index].ToString(), e.Font, myBrush, e.Bounds.X, e.Bounds.Y); Item 內有 pass fail 時要改變不同顏色...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/08/Color-ListBox-for-Net-2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3943" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Visual Studio" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Visual+Studio/default.aspx" /><category term="C#" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/C_2300_/default.aspx" /><category term=".Net" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/.Net/default.aspx" /></entry><entry><title>Subkismet captcha for CommunityServer or ASP.Net</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/06/Subkismet-captcha-for-CommunityServer-aspnet.aspx" /><id>/blogs/tech/archive/2010/02/06/Subkismet-captcha-for-CommunityServer-aspnet.aspx</id><published>2010-02-06T08:41:00Z</published><updated>2010-02-06T08:41:00Z</updated><content type="html">現在一位網站管理員，除了要管理真人的內容外，對付廣告機器人也是一件頭痛的問題，各大網站相繼淪陷於廣告機器人之後，就有網站陸續加入認證圖案，這時就造就了 CAPTCHA ( 詳細解釋請見 Wiki ) 不論你網站規模大小，有沒有流量等等，總是會有一些廣告機器人滲透，CommunityServer 只要開了匿名留言，自然也會成為攻擊對象，於 .Net 2.0 中，要寫一個 CAPTCHA 並不困難，相對的網路上的免費資源也不少，這次就介紹 Subkismet ，Captcha 只是 Subkismet 專案 的一部分，做出來的 Captcha 會是由點狀顯示文字 (如下圖)，對於一般(亞洲)人辨識並不至於太困難，例如 reCaptcha 這個對於亞洲人來說就太過困難 Subkismet 主要分為兩部分，HttpHandler 與 CaptchaControl ， HttpHandler 是負責產生圖形， CaptchaControl 負責編碼與驗證，在使用前請先完成 設定作業 1. Web.config 加入 &amp;lt;add verb=&amp;quot;*&amp;quot; path=&amp;quot;*CaptchaImage...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/06/Subkismet-captcha-for-CommunityServer-aspnet.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3938" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Community Server 網站整合" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_B27DD97A74650854_/default.aspx" /></entry><entry><title>當 CommunityServer 遇上 LightBox (下) </title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/03/CommunityServer-with-lightbox-3.aspx" /><id>/blogs/tech/archive/2010/02/03/CommunityServer-with-lightbox-3.aspx</id><published>2010-02-03T13:55:00Z</published><updated>2010-02-03T13:55:00Z</updated><content type="html">在上一篇，講解了如何在 tinymce 上使用 lightbox ，但只有 blog 才能使用 tinymce 顯示 lightbox ，在多媒體 ( media ) 便派不上用場 如果要在多媒體使用 lightbox ，只有從 Theme ( aspx 檔案 ) 下手，CommunityServer 上，主要是靠 CSMedia:MediaGalleryPostData 物件顯示與建立聯結，但很不幸的，建立聯結這個屬性 LinkTo=&amp;quot;View&amp;quot; 此類，並無法擴充讓他支援 lightbox ，如果要支援，唯有修改 SDK 或是自己建立一個新的 Control ，這裡便從講解 SDK 開始 當有 SDK 環境後，開啟CS2008.5_SP2_4.1.40407.4157.sdk\Source\CommunityServer.MediaGalleries\Controls\MediaGalleryPost\MediaGalleryPostData.cs 檔案，在 104 行左右便可見到此程式碼 case MediaGalleryPostLinkTo.View: link...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/03/CommunityServer-with-lightbox-3.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3935" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Community Server 網站整合" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_B27DD97A74650854_/default.aspx" /></entry><entry><title>當 CommunityServer 遇上 LightBox (中) </title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/02/CommunityServer_2D00_with_2D00_lightbox_2D00_2.aspx" /><id>/blogs/tech/archive/2010/02/02/CommunityServer_2D00_with_2D00_lightbox_2D00_2.aspx</id><published>2010-02-02T14:39:00Z</published><updated>2010-02-02T14:39:00Z</updated><content type="html">在一般 Tinymce 上，預設並不允許使用 rel 屬性，使用前請先在 extended_valid_elements 加入 a[name|href|target|title|onclick|rel] ，在 CommunityServer 環境下，上面步驟不需要，Telligent 已經將預設值寫好了 但在一般環境下，您插入聯結後就會發現 tinymce 並沒有地方讓您輸入 rel=&amp;quot;lightbox&amp;quot; ，這時候有兩種解決方法 方法1: 直接編輯 HTML 按下 tinymce 的 HTML 按鈕，自己 DIY 加進去，這方法如果文章很長，就會很辛苦去找那些圖片連結跑哪去了 方法2: 安裝 advlink plugins advlink plugins 預設並沒有安裝在 CommunityServer 上，首先先到 TinyMCE 官網 下載最新版，解開後到 plugins 目錄即可取得 advlink 再來就是把 plugins 啟動，在 CommunityServer 上即用 notepad 開啟 CommunityServer.config ，在 editorOption...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/02/CommunityServer_2D00_with_2D00_lightbox_2D00_2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3930" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Community Server 網站整合" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_B27DD97A74650854_/default.aspx" /></entry><entry><title>BlogEngine.NET 1.6 釋出</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/02/BlogEngine.Net-1.6-Release.aspx" /><id>/blogs/tech/archive/2010/02/02/BlogEngine.Net-1.6-Release.aspx</id><published>2010-02-02T02:56:00Z</published><updated>2010-02-02T02:56:00Z</updated><content type="html">今天 BlogEngine.NET 1.6 已經正式推出了，在這版，主要是針對 SPAM 回應做出一些改進，並且可以使用多重 Widget zone，Page Slug 也可以存在資料庫中 詳細的更新，請見官方網站 http://dotnetblogengine.net/page/BlogEngineNET-16-Release-Notes.aspx ※更新時，請務必參照 更新步驟 砍掉 ExtensionManager 目錄並修改 CSS...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/02/BlogEngine.Net-1.6-Release.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3926" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="BlogEngine.Net" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/BlogEngine.Net/default.aspx" /></entry><entry><title>當 CommunityServer 遇上 LightBox (上)</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/02/01/CommunityServer-with-lightbox-1.aspx" /><id>/blogs/tech/archive/2010/02/01/CommunityServer-with-lightbox-1.aspx</id><published>2010-02-01T13:51:00Z</published><updated>2010-02-01T13:51:00Z</updated><content type="html">LightBox 已經在許多官方網站採用，或許大家對他並不陌生，這是一套 JavaScript 的程式，也就是他可以套用在各作業平台上 要取得這套，先到 Lightbox 官方網站 下載取得 安裝步驟很簡單 1. 上傳檔案 2. 在網頁上加入 Javascript &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;js/prototype.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;js/scriptaculous.js?load=effects,builder&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;js/lightbox.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt; 3. 同網頁加入 CSS link &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/02/01/CommunityServer-with-lightbox-1.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3924" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Community Server 網站整合" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_B27DD97A74650854_/default.aspx" /></entry><entry><title>更新為 CommunityServer 2008.5 SP3 (Build: 36.8414)</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/30/Update-website-to-CommunityServer-2008_5F00_5-SP3.aspx" /><id>/blogs/tech/archive/2010/01/30/Update-website-to-CommunityServer-2008_5F00_5-SP3.aspx</id><published>2010-01-30T14:57:00Z</published><updated>2010-01-30T14:57:00Z</updated><content type="html">自從 TelligentCommunity 推出後，不僅我就沒在關心 CommunityServer ，連官方更新都是靜悄悄，但事實上 CommunityServer 2008.5 SP3 已經悄悄的推出了 本次更新，主要是修正 Wiki 功能外，修正 Flash 上傳問題，和修正一些小 Bug ，並沒有增加任何功能 更新資料庫時，僅會發現有些分頁功能修正 與 Wiki 修正，還有修正月曆顯示外，並無資料格式變動 ( PS. 更新後即無法使用在 SQL2000 Server 上 ) 詳細更新列表請見官方網站: http://telligent.com/support/communityserver/community_server_2008/w/cs20085docs/full-list-of-bug-fixes-in-cs2008-5-sp3.aspx 另外此次更新，並沒有公開下載，須提供序號與相關資料給 Telligent Support 後，他們才會寄檔案給您，並此 SP3 也沒有 SDK 版本可以下載...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/30/Update-website-to-CommunityServer-2008_5F00_5-SP3.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3912" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 新聞" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_B0655E80_/default.aspx" /><category term="主機管理" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/_3B4E5F6AA17B0674_/default.aspx" /></entry><entry><title>CommunityServer 2007 Unicode Search CSModule</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/30/CommunityServer-2007-Unicode-Search-CSModule.aspx" /><id>/blogs/tech/archive/2010/01/30/CommunityServer-2007-Unicode-Search-CSModule.aspx</id><published>2010-01-30T14:28:00Z</published><updated>2010-01-30T14:28:00Z</updated><content type="html">Because some user request , release this CSModule. Change source code release to CSModule , and Change to always using like search. Using this CSModule , you can run search unicode without SearchBarrel or EnterpriseSearch Download ( for CS2007 ) : http://www.ruri.com.tw/media/p/3909.aspx Download ( for CS2008 ) : http://www.ruri.com.tw/media/p/2642.aspx Download ( for CS2008.5 sp2 ) : http://www.ruri.com.tw/media/p/3910.aspx...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/30/CommunityServer-2007-Unicode-Search-CSModule.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3911" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /></entry><entry><title>活動行事曆啟用</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/23/Event-Calendar-system-enable.aspx" /><id>/blogs/tech/archive/2010/01/23/Event-Calendar-system-enable.aspx</id><published>2010-01-23T05:56:00Z</published><updated>2010-01-23T05:56:00Z</updated><content type="html">在 ASP.Net 2.0 中，提供的月曆控制項可以輕易的改造成行事曆，也因為如此，在 Codeplex 也找不到這類的行事曆 但偏偏在 CommunityServer 上 ( 包含 Telligent Community 5.0 ) ，就是沒有行事曆功能，最近網站剛好有此需求，就順手 DIY 了一個 Popup 部分，原本都是用 OverLib ，但不知為何套到 CommunityServer Themes 後，顯示視窗位置會有很大的偏差，還好有找到另外一套極度相似 wz_tooltip ，這兩套極度相似到大部份指令還可以相容，有 tooltip popup 需求的人，可以參考看看...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/23/Event-Calendar-system-enable.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3882" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="站務資訊" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/_D97AD952C78C0A8A_/default.aspx" /><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /></entry><entry><title>SyntaxHighlighter Wrapper CSModule 2.0 in CommunityServer 2008.5 </title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/18/SyntaxHighlighter_2D00_Wrapper_2D00_CSModule_2D00_2_2D00_in_2D00_CommunityServer_2D00_2008_2D00_English.aspx" /><id>/blogs/tech/archive/2010/01/18/SyntaxHighlighter_2D00_Wrapper_2D00_CSModule_2D00_2_2D00_in_2D00_CommunityServer_2D00_2008_2D00_English.aspx</id><published>2010-01-18T12:41:00Z</published><updated>2010-01-18T12:41:00Z</updated><content type="html">At several ago , Serge B. send a mail want release SyntaxHighlighter Wrapper CSModule source code and will help update to dp.SyntaxHighlighter 2.0 . But many many day ago , I already wrote a CSModule for dp.SyntaxHighlighter 2.0 of this time they a not freeware.But they are freeware now. I recheck the CSModule and fix backward compatibility , upgrade tiny_mce plugins. Now it release!! You can use SyntaxHighlighter Wrapper CSModule 2.0 with dp.SyntaxHighlighter 2.x . This CSModule will automatic load...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/18/SyntaxHighlighter_2D00_Wrapper_2D00_CSModule_2D00_2_2D00_in_2D00_CommunityServer_2D00_2008_2D00_English.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3872" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Code Highlight" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Code+Highlight/default.aspx" /><category term="SyntaxHighlighter" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/SyntaxHighlighter/default.aspx" /></entry><entry><title>SyntaxHighlighter Wrapper CSModule 2.0 in CommunityServer 2008.5</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/18/SyntaxHighlighter-Wrapper-CSModule-2-in-CommunityServer-2008-chinese.aspx" /><id>/blogs/tech/archive/2010/01/18/SyntaxHighlighter-Wrapper-CSModule-2-in-CommunityServer-2008-chinese.aspx</id><published>2010-01-18T11:59:00Z</published><updated>2010-01-18T11:59:00Z</updated><content type="html">在很久很久以前，有釋出 SyntaxHighlighter Wrapper CSModule ，在當時已經有 dp.SyntaxHighlighter 2.0 了，只是那時這並不是免費軟體，開發好對應的 CSModule 後，便發現此困境，便就沒有發表出來，也沒繼續追蹤下去 直到最近，有網友 Serge B. 發信來，希望我提供 1.1 版原始碼讓他更新，這時才驚覺 dp.SyntaxHighlighter已經轉為 Freeware 了，其實我早有 2.0 對應的 CSModule ，不過對方是 Microsoft MVP ，怎麼可以丟出去是讓人丟臉，便先行驗證了一下，並將 1.1 版的相容性同時做了點修正與調整，同時更新 Tiny_mce plugins for 2.0 下載網址: http://update.to/cs/SyntaxHighlighter/CommunityServer.SyntaxHighlighterWrapper20.zip...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/18/SyntaxHighlighter-Wrapper-CSModule-2-in-CommunityServer-2008-chinese.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3871" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="Community Server 技術" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Community+Server+_80625388_/default.aspx" /><category term="Code Highlight" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/Code+Highlight/default.aspx" /><category term="SyntaxHighlighter" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/SyntaxHighlighter/default.aspx" /></entry><entry><title>フィーナ  逆変身</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/08/feena-sayaka-set.aspx" /><id>/blogs/tech/archive/2010/01/08/feena-sayaka-set.aspx</id><published>2010-01-08T15:09:00Z</published><updated>2010-01-08T15:09:00Z</updated><content type="html">一直請白河さやか當 model ，這次換請月公主 フィーナ (Feena) 來當個 model 其實 フィーナ 的照片一直有陸續照，但一直照不出拿的出來見人的照片，照出來的感覺總是和實際上的不太一樣，首先是我對那個大臉頗有意見，另外琉璃色的頭髮是一個很難呈現的顏色，因為很容易因為太淡，被背景蓋掉，所以特地挑了一個黑色背景，不過在 E20 下，拍出來不夠艷麗，還好朋友借來的 40D 拍出來還不錯 不過拍好後發覺眼睫毛沒有貼的很好，下次要拍再改進一下...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/08/feena-sayaka-set.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3857" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="フィーナ" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/_D530A330FC30CA30_/default.aspx" /></entry><entry><title>英語發音教學</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2010/01/01/Acapela_2D00_Text_2D00_to_2D00_Speech.aspx" /><id>/blogs/tech/archive/2010/01/01/Acapela_2D00_Text_2D00_to_2D00_Speech.aspx</id><published>2010-01-01T08:14:00Z</published><updated>2010-01-01T08:14:00Z</updated><content type="html">台灣人英語程度和年齡相反，小學生程度&amp;gt;國中生&amp;gt;高中生&amp;gt;大學生&amp;gt;已畢業，英文不好除了單字不夠多外，另一點就是不會念 一般上班族，大都會用眼睛博士 ( Dr.eye )，這套有個缺點，當字庫裡面沒有的單字 (有時並不算單字)，查不到時您也沒辦法知道讀音，還好國外有網站可以告訴你讀音 Acapela Text to Speech Demo 您只要在裡面輸入文字，他就會念給你聽，例如一些比較難發音的網站 ( Plurk , youtube ) 或平台 Android , ubuntu 或根本不是單字 SPMT 至少先會念，這樣要背下來就會快很多...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2010/01/01/Acapela_2D00_Text_2D00_to_2D00_Speech.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3841" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="網站推薦" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/_B27DD97AA863A685_/default.aspx" /></entry><entry><title>每日匯率 RSS 正式播送</title><link rel="alternate" type="text/html" href="/blogs/tech/archive/2009/12/08/Daily_2D00_Currency_2D00_RSS.aspx" /><id>/blogs/tech/archive/2009/12/08/Daily_2D00_Currency_2D00_RSS.aspx</id><published>2009-12-08T14:50:00Z</published><updated>2009-12-08T14:50:00Z</updated><content type="html">因為我個人常常需要繳外幣給主機商、網域名稱和國際購物，匯率多少常常需要關心一下，可以從帳戶調度和預知帳單金額以免吐血 在首頁的右方下面一點點，有我從土銀偷出來的資料，每天會自動更新，但有時候也稍稍的懶惰，想說用 RSS 跑更方便 要產生 RSS ，在 CommunityServer 裡面就有提供 RSS.Net 的元件，說個歷史， RSS.Net 其實古早古早以前就有了，可以到此下載 http://www.rssdotnet.com/ ，但不曉得是不是作者不見了還是 商業化 ，原本原始碼已經失聯了，雖然商業化後的個人版只要 9 美金，但免錢的不是更好 在 CommuntiyServer 2008 時，Telligent 有被網友提出來，2008 裡面包含的 RSS.Net 並不是上面提到的那個古早版本，有修正了一些 Bug ，但原始碼就沒有公布，當時 Telligent 也就只好把 Source Code 放了出來 (不過放哪裡我也忘了，好像也失聯了) ，這套 Telligent 改過的 RSS.Net 含原始碼(也含範例)就一直躺在我電腦裡，如果也有網友有需要，可以連絡我，不需要原始碼的可以直接下...(&lt;a href="http://www.ruri.com.tw/blogs/tech/archive/2009/12/08/Daily_2D00_Currency_2D00_RSS.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.ruri.com.tw/aggbug.aspx?PostID=3825" width="1" height="1"&gt;</content><author><name>dmwc</name><uri>http://www.ruri.com.tw/members/dmwc/default.aspx</uri></author><category term="站務資訊" scheme="http://www.ruri.com.tw/blogs/tech/archive/tags/_D97AD952C78C0A8A_/default.aspx" /></entry></feed>