<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;AkUAQ3gzeCp7ImA9WhRRFE4.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153</id><updated>2011-11-28T07:57:22.680+08:00</updated><category term="Me" /><category term="PHP" /><category term="Reading" /><category term="Life" /><category term="Interesting" /><category term="Project Management" /><category term="Daily Digest" /><category term="HTML" /><category term="NOC India" /><category term="Basic C/C++" /><category term="Java" /><category term="Cool stuff" /><category term="NUS SoC" /><category term="OpenGL" /><category term="Web" /><category term="NUS CS3241" /><title>Edison Sandbox</title><subtitle type="html">To live, to experience</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://edisonkwtsui.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>37</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/hNdSi" /><feedburner:info uri="blogspot/hndsi" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;D0YFRXc9fCp7ImA9WhdWE0s.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-2280442117308567308</id><published>2011-09-07T11:11:00.003+08:00</published><updated>2011-09-07T11:11:54.964+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-07T11:11:54.964+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Web" /><category scheme="http://www.blogger.com/atom/ns#" term="PHP" /><title>When to use $_SESSION vs $_COOKIE</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;span class="Apple-style-span" style="background-color: white; color: #333333; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="article-content"&gt;
A critical feature in web programming is the ability to seamlessly pass data from one page load to the next. It's used most commonly when dealing with user logins, but also for passing error messages, shopping carts, etc.&lt;br /&gt;
Storing data across pages using PHP is done with two variables in the global scope, called $_SESSION and $_COOKIE, and although accomplishing the same end goal, the both go about it in very different ways. The purpose of this article is to give a brief look into the differences between cookies and sessions, when it's better to use one versus the other, and the pros and cons of the two.&lt;br /&gt;
&lt;strong&gt;The difference is in how each store data.&lt;/strong&gt;&amp;nbsp;Cookies store data locally in the user's browser, while sessions store data on the webserver.&lt;br /&gt;
&lt;h3 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Session Basics&lt;/h3&gt;
Sessions are simply server-side cookies each with a corresponding client side cookie that contains only a reference to its server-side counterpart.&amp;nbsp;When a user visits a page, the client sends the reference code to the server, and PHP will then match that reference code to a server-side cookie and load the data in the server's cookie into the $_SESSION superglobal.&lt;br /&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Pros&lt;/h4&gt;
&lt;ol&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Can store very large amounts of data easily.&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Save bandwidth by passing only a reference to the session each pageload. A client-side cookie has to pass all of its data.&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Data is stored on the web server. This makes sessions secure, because the data cannot be viewed or edited by the client.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Cons&lt;/h4&gt;
&lt;ol&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Ends when the browser is closed unless you've configured php.ini to extend sessions' cookie lifetime. Cannot last forever.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Cookie Basics&lt;/h3&gt;
Cookie data is sent to the web server every page load. PHP reads and stores the value into the $_COOKIE superglobal.&amp;nbsp;When a cookie is created, you can give it a lifespan. After that lifespan runs out, it will expire.&lt;br /&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Pros&lt;/h4&gt;
&lt;ol&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Can last as long as the website needs. They will still be there even if the browser is closed and reopened.&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Useful for "remember me" logins&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Useful for storing temporary user settings. For example, if a user is browsing a paginated list of items, sorted a certain way, the sorting setting can be stored in a cookie.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Cons&lt;/h4&gt;
&lt;ol&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Stored in the users filesystem. This means that the user can tamper with it and view it.&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Can only store a limited amount of data.&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;Must pass all data to the webserver each pageload. This takes up more bandwidth.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Cookies in Action&lt;/h3&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Creating a cookie&lt;/h4&gt;
The function definition:&lt;br /&gt;
&lt;em&gt;bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, int secure]]]]])&lt;/em&gt;&lt;br /&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php     if (!isset($_COOKIE['Ordering'])) {         setcookie("Ordering", $_POST['ChangeOrdering'], time() + 31536000);     } ?--&gt;&lt;/pre&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Using a cookie&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php 	echo (isset($_COOKIE['ordering'])) ? $_COOKIE['ordering'] : 'cookie value not set'; ?--&gt;&lt;/pre&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Deleting a cookie&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php setcookie('favorite_color'); ?--&gt;&lt;/pre&gt;
Setting a cookie with no value is the same as deleting it.&amp;nbsp;This will not remove the file from the client computer. To do this, you can set the cookie expiration date to a time in the past, and the browser will take care of it.&lt;br /&gt;
&lt;h3 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Sessions in Action&lt;/h3&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Creating a session&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php session_start(); ?--&gt;&lt;/pre&gt;
This must be called near the top of your code before any output. When you call this function, PHP will check to see if the user sent a session cookie. If so, it will load the session data into $_SESSION. If not, it will create a new session file on the server and send the ID back to the client.&lt;br /&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Setting a value&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php $_SESSION['first_name'] = 'Brian'; ?--&gt;&lt;/pre&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Reading a session value&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php echo $_SESSION['first_name']; ?--&gt;&lt;/pre&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Removing session data&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php unset($_SESSION['first_name']); ?--&gt;&lt;/pre&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
Ending a session&lt;/h4&gt;
&lt;pre class="php" name="code"&gt;&lt;!--?php session_destroy(); ?--&gt;&lt;/pre&gt;
&lt;h3 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
The Bottom Line&lt;/h3&gt;
Sessions are cookies where the data is stored on the server. Cookies are stored in the users filesystem (typically in their "Temporary Internet Files" folder). Both have their advantages, but on any given day, you'll probably find yourself using sessions much more commonly.&lt;br /&gt;
&lt;h4 style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; position: relative;"&gt;
PHP Documentation&lt;/h4&gt;
&lt;ol&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;&lt;a href="http://www.php.net/manual/en/book.session.php" style="color: #336699; text-decoration: none;" title="PHP Session Manual"&gt;PHP Manual: Sessions&lt;/a&gt;&lt;/li&gt;
&lt;li style="margin-bottom: 0.25em; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-indent: 0px;"&gt;&lt;a href="http://php.net/manual/en/features.cookies.php" style="color: #336699; text-decoration: none;" title="PHP Cookie Manual"&gt;PHP Manual: Cookies&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div class="post-end"&gt;
&lt;div class="block recommended"&gt;
&lt;/div&gt;
&lt;div class="block same-category"&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-2280442117308567308?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QekAUIEROxWGaxK1KB3vQtHbunM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QekAUIEROxWGaxK1KB3vQtHbunM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QekAUIEROxWGaxK1KB3vQtHbunM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QekAUIEROxWGaxK1KB3vQtHbunM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/g4Pvvnu2uM8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/2280442117308567308/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/09/when-to-use-session-vs-cookie.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/2280442117308567308?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/2280442117308567308?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/g4Pvvnu2uM8/when-to-use-session-vs-cookie.html" title="When to use $_SESSION vs $_COOKIE" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/09/when-to-use-session-vs-cookie.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUMDRXY7fSp7ImA9WhdWEkU.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-6241494453266634172</id><published>2011-09-06T12:31:00.002+08:00</published><updated>2011-09-06T12:31:14.805+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-06T12:31:14.805+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Web" /><category scheme="http://www.blogger.com/atom/ns#" term="Interesting" /><title>簡繁體中文對照表</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;簡繁體中文對照表&lt;br /&gt;
&lt;br /&gt;
IT用語對照表&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Programming 相关词汇及用语&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
abstract 抽象 抽象 简繁相同&lt;br /&gt;
algorithm 算法 演算法 &lt;br /&gt;
application 应用程序 應用程式 &lt;br /&gt;
argument 参数;引数;自变量 引數 &lt;br /&gt;
array 数组 陣列 差异大&lt;br /&gt;
asynchronous 异步 非同步 差异大&lt;br /&gt;
attribute 属性 屬性 简繁相同&lt;br /&gt;
boolean 布尔值 布林值 &lt;br /&gt;
class 类 類別 &lt;br /&gt;
class library 类库 類別庫 &lt;br /&gt;
code  代码;源代码 程式碼 &lt;br /&gt;
comment;annotate 注释 註釋 &lt;br /&gt;
component 组件 元件 差异大&lt;br /&gt;
constant 常量 常數 &lt;br /&gt;
constructor 构造函数 建構函數;建構子 &lt;br /&gt;
CSS 样式表 樣式表 简繁相同&lt;br /&gt;
data structure 数据结构 資料結構 &lt;br /&gt;
deadlock 死锁;死结 死結 &lt;br /&gt;
debug 调试 除錯;偵錯 差异大&lt;br /&gt;
delegate 委托 委派 &lt;br /&gt;
DLL (Dynamic Link Library) 动态链接库文件 組件;動態鏈結程式庫 差异大&lt;br /&gt;
Design Pattern 设计模式 設計樣式 &lt;br /&gt;
distributed 分布式 分散式 &lt;br /&gt;
encapsulation 封装 封裝 简繁相同&lt;br /&gt;
enumerator 枚举 列舉 &lt;br /&gt;
event 事件 事件 简繁相同&lt;br /&gt;
field 字段 欄位 &lt;br /&gt;
framework 框架 框架 简繁相同&lt;br /&gt;
function 函数;函式 函數;函式 简繁相同&lt;br /&gt;
generic(s) 泛型 泛型 简繁相同&lt;br /&gt;
implement 实现 實作 (interface)&lt;br /&gt;
inherit 继承 繼承 简繁相同&lt;br /&gt;
instance 实例 實體;執行個體 &lt;br /&gt;
instantiate 实例化 實體化;具現化 &lt;br /&gt;
interface 接口 介面 差异大&lt;br /&gt;
iterator 迭代器 迭代器 简繁相同&lt;br /&gt;
loop 循环 迴圈 差异大&lt;br /&gt;
message 消息 訊息 &lt;br /&gt;
method 方法 方法 简繁相同&lt;br /&gt;
namespace 命名空间 命名空間 简繁相同&lt;br /&gt;
Object-Oriented 面向对象 物件導向 差异大&lt;br /&gt;
object 对象 物件 差异大&lt;br /&gt;
operator 运算符 運算子 &lt;br /&gt;
overload 重载 多載 &lt;br /&gt;
override 重写 覆寫 &lt;br /&gt;
paging 分页 分頁 简繁相同&lt;br /&gt;
parameter 参数 參數 简繁相同&lt;br /&gt;
persistence 持久化 永續 差异大&lt;br /&gt;
polymorphism 多态 多型 &lt;br /&gt;
process 进程 行程;程序 非指商业流程&lt;br /&gt;
program 程序 程式 &lt;br /&gt;
programmer 程序员 程式設計師 &lt;br /&gt;
programming 编程 程式設計;寫程式 &lt;br /&gt;
property 属性 屬性 简繁相同&lt;br /&gt;
queue 队列 佇列 &lt;br /&gt;
refactor 重构 重構;重建  简繁相同&lt;br /&gt;
reference type 引用类型 參考型別 差异大&lt;br /&gt;
reflection 反射 反射 简繁相同&lt;br /&gt;
Regular Expression 正则表达式 規則運算式 &lt;br /&gt;
return 返回 傳回 &lt;br /&gt;
reuse 复用 重用;複用 &lt;br /&gt;
serialization 序列化 序列化 简繁相同&lt;br /&gt;
source code 源代码 原始碼 &lt;br /&gt;
static 静态 靜態 简繁相同&lt;br /&gt;
string 字符串;字符 字串 &lt;br /&gt;
strong type 强类型 強型別 &lt;br /&gt;
struct 結構 結構 简繁相同&lt;br /&gt;
synchronization 同步 同步 简繁相同&lt;br /&gt;
thread 线程 執行緒 差异大&lt;br /&gt;
transaction 事务 交易 差异大&lt;br /&gt;
type 类型 型別 &lt;br /&gt;
value type 值类型 實值型別 &lt;br /&gt;
variable 变量 變數 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Database 相关词汇及用语&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
access 存取 存取 简繁相同&lt;br /&gt;
cluster index 聚集索引;集簇索引 叢集索引 &lt;br /&gt;
column 列;字段 行 簡繁相反&lt;br /&gt;
connection 联机 連線 差异大&lt;br /&gt;
data 数据 資料 &lt;br /&gt;
database 数据库 資料庫 &lt;br /&gt;
data access 数据访问 資料存取 &lt;br /&gt;
disconnection 脱机 離線 差异大&lt;br /&gt;
index 索引 索引 简繁相同&lt;br /&gt;
information 信息;資訊 資訊 &lt;br /&gt;
mapping 映射  &lt;br /&gt;
OLTP 联机事务处理 線上交易處理 差异大&lt;br /&gt;
primary key 主键 主鍵 简繁相同&lt;br /&gt;
query 查询 查詢 简繁相同&lt;br /&gt;
record 记录 記錄 简繁相同&lt;br /&gt;
relation 联系(一对多) 關聯(一對多) &lt;br /&gt;
row 行 列 簡繁相反&lt;br /&gt;
save 存储;储存 儲存 簡繁相反&lt;br /&gt;
select 提取 選取;撈取 &lt;br /&gt;
SQL statement SQL语句 SQL陳述式 都称SQL语法&lt;br /&gt;
stored procedure 存储过程 預存程序 差异大&lt;br /&gt;
table 表;数据表 資料表 &lt;br /&gt;
transaction 事务 交易 差异大&lt;br /&gt;
trigger 触发器 觸發器;觸發程序 简繁相同&lt;br /&gt;
type 类型 型別 &lt;br /&gt;
view 视图 檢視表 差异大&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;ASP.NET 相关词汇及用语&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
binding 綁定 繫結 差异大&lt;br /&gt;
buffer 缓冲区 緩衝 &lt;br /&gt;
button 按钮 按鈕 简繁相同&lt;br /&gt;
cache 缓存 快取 差异大&lt;br /&gt;
Code-behind 后台 後端;程式碼後置 &lt;br /&gt;
control 控件 控制項 &lt;br /&gt;
Message Queue 消息队列 訊息佇列 &lt;br /&gt;
prefix 前缀 前置詞 &lt;br /&gt;
ViewState 视图状态 檢視狀態 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Visual Studio 相关词汇及用语&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
add 添加 加入 &lt;br /&gt;
breakpoint 断点 中斷點 &lt;br /&gt;
copy 复制;拷贝 複製;拷貝 简繁相同&lt;br /&gt;
cut 剪切 剪下 &lt;br /&gt;
item 項 項目 &lt;br /&gt;
menu 菜單 功能表 差异大&lt;br /&gt;
navigate 导航 巡覽 &lt;br /&gt;
new 增加 新增 &lt;br /&gt;
paste 粘贴 貼上 &lt;br /&gt;
project 項目 專案 差异大&lt;br /&gt;
solution 解决方案 方案 &lt;br /&gt;
toolbox 工具箱 工具箱 简繁相同&lt;br /&gt;
window 窗口 視窗 &lt;br /&gt;
? 生成 建置 &lt;br /&gt;
? 引用 參考 差异大&lt;br /&gt;
? 设置 設定 &lt;br /&gt;
? 列表 清單 &lt;br /&gt;
? 选项卡 索引標籤 差异大&lt;br /&gt;
? 指针 指標 &lt;br /&gt;
? 窗体;表单 表單 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;IT 通用词汇&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
bit ? 位元 &lt;br /&gt;
Byte 字节 位元組 差异大&lt;br /&gt;
CD 光盘 光碟 &lt;br /&gt;
computer  计算机 電腦 &lt;br /&gt;
CPU 处理器 處理器 简繁相同&lt;br /&gt;
create 创建 建立 &lt;br /&gt;
default 默认 預設 差异大&lt;br /&gt;
download  下载 下載 简繁相同&lt;br /&gt;
drive 磁盘 磁碟 &lt;br /&gt;
emulator 仿真器;模拟器 模擬器 &lt;br /&gt;
file 文件 檔案 &lt;br /&gt;
flash 闪存 快閃記憶體;簡短留言 &lt;br /&gt;
folder 文件夹 資料夾 &lt;br /&gt;
HD (Hard Disk) 硬盘 硬碟 &lt;br /&gt;
hyperlink 链接 超連結 &lt;br /&gt;
Internet 互联网;因特网 網際網路 &lt;br /&gt;
LAN 局域网 區域網路 &lt;br /&gt;
Memory 内存 記憶體 差异大&lt;br /&gt;
monitor;screen 屏幕 螢幕 &lt;br /&gt;
mouse 鼠标 滑鼠 &lt;br /&gt;
network 网络 網路 简繁相同&lt;br /&gt;
on-line 在线 線上 &lt;br /&gt;
Operating System 操作系统 作業系統 &lt;br /&gt;
partition;sector 扇区 磁區 &lt;br /&gt;
path 目录 目錄;路徑 简繁相同&lt;br /&gt;
plug-in 插件;外掛 外掛 &lt;br /&gt;
performance 性能 效能 &lt;br /&gt;
print 打印 列印 &lt;br /&gt;
project 工程;项目 專案 差异大&lt;br /&gt;
project management 项目管理 專案管理 差异大&lt;br /&gt;
protocol 协议 協定 &lt;br /&gt;
read-only 只读 唯讀 &lt;br /&gt;
register 注册 註冊 &lt;br /&gt;
Registry 注册表 機碼;暫存器 差异大&lt;br /&gt;
ROM 只读存储器 唯讀記憶體 &lt;br /&gt;
save 存储;储存 儲存 簡繁相反&lt;br /&gt;
scalability 可扩展性 可擴充性 &lt;br /&gt;
scroll bar 滚动条 捲軸 &lt;br /&gt;
server 服务器 伺服器 &lt;br /&gt;
software 软件 軟體 &lt;br /&gt;
tuning 优化 最佳化 &lt;br /&gt;
upload 上载 上傳 &lt;br /&gt;
WAN 广域网 廣域網路 &lt;br /&gt;
? 短信;短讯 簡訊 &lt;br /&gt;
? 界面 介面 如:UI，不是指OOP编程的interface&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;日常用语&lt;/strong&gt;&lt;br /&gt;
原文 简中 繁中 补充说明&lt;br /&gt;
于 於 &lt;br /&gt;
after 后 後 &lt;br /&gt;
conflict 冲突 衝突 &lt;br /&gt;
example 示例 範例 &lt;br /&gt;
inside 里 裡 &lt;br /&gt;
lose 丢失 遺失 &lt;br /&gt;
standard 规范 規範 &lt;br /&gt;
定制 制定 簡繁相反&lt;br /&gt;
兼容性 相容性&amp;nbsp;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-6241494453266634172?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Sz4qFgPF3x7ipYq44dWdZ0noNL0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Sz4qFgPF3x7ipYq44dWdZ0noNL0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Sz4qFgPF3x7ipYq44dWdZ0noNL0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Sz4qFgPF3x7ipYq44dWdZ0noNL0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/2zASZuPsg6U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/6241494453266634172/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/09/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6241494453266634172?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6241494453266634172?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/2zASZuPsg6U/blog-post.html" title="簡繁體中文對照表" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/09/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUBRno7cCp7ImA9WhdWEkU.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-8152046953404902452</id><published>2011-09-06T12:27:00.002+08:00</published><updated>2011-09-06T12:27:37.408+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-09-06T12:27:37.408+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Web" /><category scheme="http://www.blogger.com/atom/ns#" term="Interesting" /><title>兩岸IT相關用語的對照表</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;br /&gt;
&lt;h3 align="left" id="sites-page-title-header" xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;span dir="ltr" id="sites-page-title"&gt;兩岸IT相關用語的對照表&lt;/span&gt; &lt;/h3&gt;&lt;div class="sites-canvas-main" id="sites-canvas-main"&gt; &lt;div id="sites-canvas-main-content"&gt; &lt;table cellspacing="0" class="sites-layout-name-two-column sites-layout-hbox" xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td class="sites-layout-tile sites-tile-name-content-1"&gt;&lt;div dir="ltr"&gt;&lt;div&gt; 在兩岸閱讀IT與互聯網相關內容時，會在詞彙上抓不到味，現在將繁簡中文與英文單詞列出對照表，把兩岸簡體繁體的IT常用詞彙做一個對照，希望對大家有幫助，來源 &lt;a href="http://stupid77.com/about/it-liangan-language" rel="nofollow" target="_blank"&gt;三十而慄&lt;/a&gt;&lt;br /&gt;
&lt;table border="1" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;简体中文&lt;/td&gt; &lt;td valign="top" width="151"&gt;繁體中文&lt;/td&gt; &lt;td valign="top" width="151"&gt;English&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style="text-align: center;" valign="top" width="149"&gt;互联网&lt;/td&gt; &lt;td style="text-align: center;" valign="top" width="151"&gt;網路，網際網路&lt;/td&gt; &lt;td style="text-align: center;" valign="top" width="151"&gt;Internet&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style="text-align: center;" valign="top" width="149"&gt;(簡體也稱网络)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td style="text-align: center;" valign="top" width="149"&gt;带宽&lt;/td&gt; &lt;td valign="top" width="151"&gt;頻寬&lt;/td&gt; &lt;td valign="top" width="151"&gt;Bandwidth&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;软件硬件&lt;/td&gt; &lt;td valign="top" width="151"&gt;軟體硬體&lt;/td&gt; &lt;td valign="top" width="151"&gt;Software Hardware&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;服务器&lt;/td&gt; &lt;td valign="top" width="151"&gt;伺服器&lt;/td&gt; &lt;td valign="top" width="151"&gt;Server&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;笔记本&lt;/td&gt; &lt;td valign="top" width="151"&gt;筆記型電腦&lt;/td&gt; &lt;td valign="top" width="151"&gt;Notebook PC&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;上网本&lt;/td&gt; &lt;td valign="top" width="151"&gt;小筆電&lt;/td&gt; &lt;td valign="top" width="151"&gt;Netbook&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;台式机&lt;/td&gt; &lt;td valign="top" width="151"&gt;桌上型電腦&lt;/td&gt; &lt;td valign="top" width="151"&gt;Desktop PC&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;光驱&lt;/td&gt; &lt;td valign="top" width="151"&gt;光碟機&lt;/td&gt; &lt;td valign="top" width="151"&gt;CDROM&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;硬盘&lt;/td&gt; &lt;td valign="top" width="151"&gt;硬碟&lt;/td&gt; &lt;td valign="top" width="151"&gt;Hard Drive Disk&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;内存&lt;/td&gt; &lt;td valign="top" width="151"&gt;記憶體&lt;/td&gt; &lt;td valign="top" width="151"&gt;RAM, Memory&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;刻录光盘&lt;/td&gt; &lt;td valign="top" width="151"&gt;燒錄光碟&lt;/td&gt; &lt;td valign="top" width="151"&gt;Burn CD&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;鼠标&lt;/td&gt; &lt;td valign="top" width="151"&gt;滑鼠&lt;/td&gt; &lt;td valign="top" width="151"&gt;Mouse&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;打印机&lt;/td&gt; &lt;td valign="top" width="151"&gt;印表機&lt;/td&gt; &lt;td valign="top" width="151"&gt;Printer&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;激光&lt;/td&gt; &lt;td valign="top" width="151"&gt;雷射&lt;/td&gt; &lt;td valign="top" width="151"&gt;Laser&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;屏幕&lt;/td&gt; &lt;td valign="top" width="151"&gt;螢幕&lt;/td&gt; &lt;td valign="top" width="151"&gt;Monitor&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan="2" style="text-align: center;" valign="top" width="300"&gt;(同理：看影片時，會用到全屏/全螢幕)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;智能手机&lt;/td&gt; &lt;td valign="top" width="151"&gt;智慧型手機&lt;/td&gt; &lt;td valign="top" width="151"&gt;Smart Phone&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;数码相机&lt;/td&gt; &lt;td valign="top" width="151"&gt;數位相機&lt;/td&gt; &lt;td valign="top" width="151"&gt;Digital Camera&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;摄像头&lt;/td&gt; &lt;td valign="top" width="151"&gt;網路攝影機&lt;/td&gt; &lt;td valign="top" width="151"&gt;Webcam&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;U盘(优盘)&lt;/td&gt; &lt;td valign="top" width="151"&gt;隨身碟&lt;/td&gt; &lt;td valign="top" width="151"&gt;Flash Disk&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="149"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;知识产权&lt;/td&gt; &lt;td valign="top" width="151"&gt;智慧財產權&lt;/td&gt; &lt;td valign="top" width="151"&gt;Intellectual Property&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;数字娱乐&lt;/td&gt; &lt;td valign="top" width="151"&gt;數位娛樂&lt;/td&gt; &lt;td valign="top" width="151"&gt;Digital Entertainment&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td colspan="3" valign="top" width="451"&gt;(同理：数字版权/數位出版等)&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;社交网站&lt;/td&gt; &lt;td valign="top" width="151"&gt;社群網站&lt;/td&gt; &lt;td valign="top" width="151"&gt;Social Network&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style="text-align: center;" valign="top" width="149"&gt;(如：Facebook)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;社会媒体&lt;/td&gt; &lt;td valign="top" width="151"&gt;社群媒體&lt;/td&gt; &lt;td valign="top" width="151"&gt;Social Media&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;博客&lt;/td&gt; &lt;td valign="top" width="151"&gt;部落格&lt;/td&gt; &lt;td valign="top" width="151"&gt;Blog&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;论坛&lt;/td&gt; &lt;td valign="top" width="151"&gt;討論區&lt;/td&gt; &lt;td valign="top" width="151"&gt;Forum&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;在线游戏&lt;/td&gt; &lt;td valign="top" width="151"&gt;線上遊戲&lt;/td&gt; &lt;td valign="top" width="151"&gt;Online Game&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;讯息产业&lt;/td&gt; &lt;td valign="top" width="151"&gt;資訊產業&lt;/td&gt; &lt;td valign="top" width="151"&gt;IT Industry&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td colspan="3" valign="top" width="451"&gt;(同理：讯息工程/資訊工程，讯息管理/資訊管理等)&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;网站运营&lt;/td&gt; &lt;td valign="top" width="151"&gt;網站營運&lt;/td&gt; &lt;td valign="top" width="151"&gt;Website Operation&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;网络营销&lt;/td&gt; &lt;td valign="top" width="151"&gt;網路行銷&lt;/td&gt; &lt;td valign="top" width="151"&gt;Internet Marketing&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;关键词&lt;/td&gt; &lt;td valign="top" width="151"&gt;關鍵字&lt;/td&gt; &lt;td valign="top" width="151"&gt;Keyword&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;搜索引擎&lt;/td&gt; &lt;td valign="top" width="151"&gt;搜尋引擎&lt;/td&gt; &lt;td valign="top" width="151"&gt;Search Engine&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;文件管理&lt;/td&gt; &lt;td valign="top" width="151"&gt;檔案管理&lt;/td&gt; &lt;td valign="top" width="151"&gt;File Management&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;(簡體也稱文档)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;数据库&lt;/td&gt; &lt;td valign="top" width="151"&gt;資料庫&lt;/td&gt; &lt;td valign="top" width="151"&gt;Database&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;优化&lt;/td&gt; &lt;td valign="top" width="151"&gt;最佳化&lt;/td&gt; &lt;td valign="top" width="151"&gt;Optimization&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;文本&lt;/td&gt; &lt;td valign="top" width="151"&gt;純文字檔&lt;/td&gt; &lt;td valign="top" width="151"&gt;Text File&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="149"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;程序&lt;/td&gt; &lt;td valign="top" width="151"&gt;程式&lt;/td&gt; &lt;td valign="top" width="151"&gt;Program&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;程序报错&lt;/td&gt; &lt;td valign="top" width="151"&gt;系統出錯&lt;/td&gt; &lt;td valign="top" width="151"&gt;System Error&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;系统设置&lt;/td&gt; &lt;td valign="top" width="151"&gt;系統設定&lt;/td&gt; &lt;td valign="top" width="151"&gt;Setting&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;连接超时&lt;/td&gt; &lt;td valign="top" width="151"&gt;伺服器沒有響應&lt;/td&gt; &lt;td valign="top" width="151"&gt;Timeout&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;查找&lt;/td&gt; &lt;td valign="top" width="151"&gt;查詢&lt;/td&gt; &lt;td valign="top" width="151"&gt;Searching&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;卸载&lt;/td&gt; &lt;td valign="top" width="151"&gt;移除&lt;/td&gt; &lt;td valign="top" width="151"&gt;Uninstall&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;拷贝&lt;/td&gt; &lt;td valign="top" width="151"&gt;複製&lt;/td&gt; &lt;td valign="top" width="151"&gt;Copy&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;视频&lt;/td&gt; &lt;td valign="top" width="151"&gt;視訊&lt;/td&gt; &lt;td valign="top" width="151"&gt;Video&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;音频&lt;/td&gt; &lt;td valign="top" width="151"&gt;語音&lt;/td&gt; &lt;td valign="top" width="151"&gt;Voice&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;短信&lt;/td&gt; &lt;td valign="top" width="151"&gt;簡訊&lt;/td&gt; &lt;td valign="top" width="151"&gt;Message&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan="2" style="text-align: center;" valign="top" width="300"&gt;(同理：彩信/多媒體簡訊/SMS)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;在线离线&lt;/td&gt; &lt;td valign="top" width="151"&gt;上線下線&lt;/td&gt; &lt;td valign="top" width="151"&gt;Online Offline&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan="3" style="text-align: center;" valign="top" width="451"&gt;(用於MSN，QQ等即時通訊)&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;掉线&lt;/td&gt; &lt;td valign="top" width="151"&gt;斷線&lt;/td&gt; &lt;td valign="top" width="151"&gt;Drop&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td style="text-align: center;" valign="top" width="149"&gt;(非人為的)&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;重启电脑&lt;/td&gt; &lt;td valign="top" width="151"&gt;重開機&lt;/td&gt; &lt;td valign="top" width="151"&gt;Restart, Reboot&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;个人形象&lt;/td&gt; &lt;td valign="top" width="151"&gt;個人造型&lt;/td&gt; &lt;td valign="top" width="151"&gt;Photo, Avatar&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td colspan="3" style="text-align: center;" valign="top" width="451"&gt;(用於MSN、QQ或者論壇、SNS，簡體也用個人頭像)&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;联系人&lt;/td&gt; &lt;td valign="top" width="151"&gt;聯絡人&lt;/td&gt; &lt;td valign="top" width="151"&gt;Contacts&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td valign="top" width="149"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign="top" width="151"&gt;&amp;nbsp;&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;首席执行官&lt;/td&gt; &lt;td valign="top" width="151"&gt;執行長&lt;/td&gt; &lt;td valign="top" width="151"&gt;CEO&lt;/td&gt; &lt;/tr&gt;
&lt;tr style="text-align: center;"&gt; &lt;td valign="top" width="149"&gt;首席运营官&lt;/td&gt; &lt;td valign="top" width="151"&gt;營運長&lt;/td&gt; &lt;td valign="top" width="151"&gt;COO&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt; &lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-8152046953404902452?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dZ4dIDQGpi8RbOYC9sNq_NFzuz0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dZ4dIDQGpi8RbOYC9sNq_NFzuz0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dZ4dIDQGpi8RbOYC9sNq_NFzuz0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dZ4dIDQGpi8RbOYC9sNq_NFzuz0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/mcY6xa19oms" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/8152046953404902452/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/09/it.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/8152046953404902452?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/8152046953404902452?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/mcY6xa19oms/it.html" title="兩岸IT相關用語的對照表" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/09/it.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04FQXc6fip7ImA9WhdXE0o.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-4528412099068335635</id><published>2011-08-27T00:25:00.000+08:00</published><updated>2011-08-27T00:25:10.916+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-27T00:25:10.916+08:00</app:edited><title>Stay hungry, stay foolish</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;iframe allowfullscreen="" frameborder="0" height="345" src="http://www.youtube.com/embed/D1R-jKKp3NA" width="420"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
i hv been rejected but i still in love. &lt;br /&gt;
connecting dots. &lt;br /&gt;
awful tasted med. do what u believe&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-4528412099068335635?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vTYqeGBxYLUnPUxtUrmhYmb4Qs0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vTYqeGBxYLUnPUxtUrmhYmb4Qs0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vTYqeGBxYLUnPUxtUrmhYmb4Qs0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vTYqeGBxYLUnPUxtUrmhYmb4Qs0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/4_GnOpXRNNA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/4528412099068335635/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/08/stay-hungry-stay-foolish.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4528412099068335635?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4528412099068335635?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/4_GnOpXRNNA/stay-hungry-stay-foolish.html" title="Stay hungry, stay foolish" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/D1R-jKKp3NA/default.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/08/stay-hungry-stay-foolish.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIMQHY9fCp7ImA9WhdXE08.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3542452519027087357</id><published>2011-08-26T10:43:00.001+08:00</published><updated>2011-08-26T10:43:01.864+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-26T10:43:01.864+08:00</app:edited><title>Playing with youtube</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;http://code.google.com/apis/youtube/youtube_player_demo.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3542452519027087357?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JIfmM79h9HK_7r5ETpvX0-B3pDw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JIfmM79h9HK_7r5ETpvX0-B3pDw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JIfmM79h9HK_7r5ETpvX0-B3pDw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JIfmM79h9HK_7r5ETpvX0-B3pDw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/sVfcYWDIdbo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3542452519027087357/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/08/playing-with-youtube.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3542452519027087357?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3542452519027087357?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/sVfcYWDIdbo/playing-with-youtube.html" title="Playing with youtube" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/08/playing-with-youtube.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4GQHc7eyp7ImA9WhdQE04.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-4236005654593826754</id><published>2011-08-14T22:42:00.000+08:00</published><updated>2011-08-14T22:42:01.903+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-14T22:42:01.903+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Interesting" /><title>LOVE</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-kMlq-mrHzes/TkfeeHpsqKI/AAAAAAAAAIQ/yi9oLKV6iSU/s1600/love.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://1.bp.blogspot.com/-kMlq-mrHzes/TkfeeHpsqKI/AAAAAAAAAIQ/yi9oLKV6iSU/s320/love.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-4236005654593826754?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MN_xxMOJCXn3ZMRdLe6rn8Sqb0A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MN_xxMOJCXn3ZMRdLe6rn8Sqb0A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MN_xxMOJCXn3ZMRdLe6rn8Sqb0A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MN_xxMOJCXn3ZMRdLe6rn8Sqb0A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/ZxPmIELSLwc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/4236005654593826754/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/08/love.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4236005654593826754?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4236005654593826754?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/ZxPmIELSLwc/love.html" title="LOVE" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-kMlq-mrHzes/TkfeeHpsqKI/AAAAAAAAAIQ/yi9oLKV6iSU/s72-c/love.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/08/love.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4FRns7fip7ImA9WhdQEEo.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3468731118383000980</id><published>2011-08-11T23:51:00.002+08:00</published><updated>2011-08-11T23:51:57.506+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-11T23:51:57.506+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java" /><title>HK Java Usergroup</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;Went PolyU for Java usergroup meeting.&lt;br /&gt;
&lt;br /&gt;
Promotion from Oracle&lt;br /&gt;
ADF, JDevelop&lt;br /&gt;
http://www.oracle.com/technetwork/developer-tools/adf/overview/index.html&lt;br /&gt;
&lt;br /&gt;
Java with more fancy UI&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3468731118383000980?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8MSCVpYQZfkPcAgfR7Sw5r-WTyo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8MSCVpYQZfkPcAgfR7Sw5r-WTyo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8MSCVpYQZfkPcAgfR7Sw5r-WTyo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8MSCVpYQZfkPcAgfR7Sw5r-WTyo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/8upsdGuT87A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3468731118383000980/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/08/hk-java-usergroup.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3468731118383000980?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3468731118383000980?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/8upsdGuT87A/hk-java-usergroup.html" title="HK Java Usergroup" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/08/hk-java-usergroup.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcERX4-eyp7ImA9WhdRGUo.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-1393698594450024438</id><published>2011-08-10T19:50:00.000+08:00</published><updated>2011-08-10T19:50:04.053+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-10T19:50:04.053+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><category scheme="http://www.blogger.com/atom/ns#" term="Life" /><title>Aug update</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;table cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-TE86QVzUVus/TkJrbvgf-_I/AAAAAAAAAII/0ZGj0vAkvYo/s1600/IMG_2534.JPG" imageanchor="1" style="clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="238" src="http://2.bp.blogspot.com/-TE86QVzUVus/TkJrbvgf-_I/AAAAAAAAAII/0ZGj0vAkvYo/s320/IMG_2534.JPG" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Lunch + Book&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Book Times&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Read another chicken soup book passed from Dad. Reading these kind of book is like unwrapping onion. Layer by layer unveiling myself. &amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- I once think the best of life or the environment everyone should strike for is harmony, loving.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;But then I realized there are goods in conflict, where debat can start throughoutly, things are in check-and-balance. Conflicts do play its role in motivating the improvement of life and change of world (given it dun break the relationship).&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;So I should learn to embrace conflict also&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Also life is full of problems. Yet another source of improvement and innovation and an actualization of one's value (thru solving them).&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;I see a onion of problems here, while some are more superficial, more everyday, like how to manage things and resolve adhoc issue. Some are deeper inside, like core value, future, path to take, happiness.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;I do need time to condense, to think through layers and reach to the core. (Sadly, now I dun have the time and not quite ready for that). But it is a path to better know myself and to inline my goal and path.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Talking about &amp;nbsp;problems, there must be success and failure. While what I have learnt is even though I fail, I have to forget that and move on and be more careful on other task and dun ruin other things.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Think thru, be mindful, to love but also to embrace conflict :)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Dun waste time on worrying, try my best all the time and leave more time for rest.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;What I want&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- PM skills&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Programming &amp;amp; Tech skills&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Jogging&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Piano&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;- Squash&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-0Z6P2HNJs4A/TkJriexLCCI/AAAAAAAAAIM/ia6pEWjSMXY/s1600/cityrunner.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="320" src="http://4.bp.blogspot.com/-0Z6P2HNJs4A/TkJriexLCCI/AAAAAAAAAIM/ia6pEWjSMXY/s320/cityrunner.jpg" width="240" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Jogging in TST&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Completed City Runner, a short 3.3km track in 17mins. Can run faster. Need to train and maintenance. Dun get problem ruin other part of my life.&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-1393698594450024438?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jVumVbApZE2T5_SAIZMK0p7f0YM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jVumVbApZE2T5_SAIZMK0p7f0YM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jVumVbApZE2T5_SAIZMK0p7f0YM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jVumVbApZE2T5_SAIZMK0p7f0YM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/sZkJnj5lhu0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/1393698594450024438/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/08/aug-update.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/1393698594450024438?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/1393698594450024438?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/sZkJnj5lhu0/aug-update.html" title="Aug update" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-TE86QVzUVus/TkJrbvgf-_I/AAAAAAAAAII/0ZGj0vAkvYo/s72-c/IMG_2534.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/08/aug-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMNRng7fCp7ImA9WhdSEUo.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-4609880154720845541</id><published>2011-07-20T23:41:00.000+08:00</published><updated>2011-07-20T23:41:37.604+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-20T23:41:37.604+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><title>看書</title><content type="html">&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://3.bp.blogspot.com/-q5DKmz7VhSg/Tib2NzekbjI/AAAAAAAAAIE/Ru72-Du7GKs/s1600/IMG_2450.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://3.bp.blogspot.com/-q5DKmz7VhSg/Tib2NzekbjI/AAAAAAAAAIE/Ru72-Du7GKs/s200/IMG_2450.JPG" width="149" /&gt;&lt;/a&gt;&lt;/div&gt;偶然得到的一本書，挺有意義。&lt;br /&gt;
如果大家也心善，行善，社會也會不一樣。&lt;br /&gt;
&lt;br /&gt;
按中國人的傳統還是由自身做起 ：P&lt;br /&gt;
&lt;br /&gt;
書沒有不值得看，人沒有不值得交&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-4609880154720845541?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6M20gVny2GcDae7uaQEho2CQH6g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6M20gVny2GcDae7uaQEho2CQH6g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/6M20gVny2GcDae7uaQEho2CQH6g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6M20gVny2GcDae7uaQEho2CQH6g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/jJbtDrKpvEo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/4609880154720845541/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4609880154720845541?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4609880154720845541?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/jJbtDrKpvEo/blog-post.html" title="看書" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-q5DKmz7VhSg/Tib2NzekbjI/AAAAAAAAAIE/Ru72-Du7GKs/s72-c/IMG_2450.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AGQ3g6eyp7ImA9WhdSEEk.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-7972700597452340128</id><published>2011-07-19T10:08:00.006+08:00</published><updated>2011-07-19T10:15:22.613+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-19T10:15:22.613+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Web" /><category scheme="http://www.blogger.com/atom/ns#" term="HTML" /><title>Converting Flash to HTML animation</title><content type="html">&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;There is a website with flash needing to convert some of the component to iOS compatible.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;There are couple ways&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;1) Rewrite the animation using jQuery&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;a href="http://jquery.malsup.com/cycle/browser.html"&gt;example&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;2) Convert Flash to HTML animation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;* fla source is needed&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span" style="line-height: 21px;"&gt;* the function is currently limited, but ok for animation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a href="http://labs.adobe.com/technologies/wallaby/"&gt;download&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://labs.adobe.com/wiki/index.php/Wallaby#Release_Notes"&gt;release note&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-7972700597452340128?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3OxcaJDzASuwdX9l4uEwvZrQXcQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OxcaJDzASuwdX9l4uEwvZrQXcQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3OxcaJDzASuwdX9l4uEwvZrQXcQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OxcaJDzASuwdX9l4uEwvZrQXcQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/bKPVVZ_RsDc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/7972700597452340128/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/converting-flash-to-html-animation.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7972700597452340128?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7972700597452340128?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/bKPVVZ_RsDc/converting-flash-to-html-animation.html" title="Converting Flash to HTML animation" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/converting-flash-to-html-animation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08MQncyfCp7ImA9WhdSEE0.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-2568021024531978269</id><published>2011-07-19T01:24:00.000+08:00</published><updated>2011-07-19T01:24:43.994+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-19T01:24:43.994+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><title>Reading for work..</title><content type="html">&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;img border="0" height="320" src="http://2.bp.blogspot.com/-lLuVayi2Pek/TiRsL9LNOnI/AAAAAAAAAH8/REeJxQR7hG4/s320/IMG_2437.JPG" width="239" /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://3.bp.blogspot.com/-pnsf3CMVTOk/TiRsMicMdQI/AAAAAAAAAIA/VX6UUqhaOZk/s1600/IMG_2436.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/-pnsf3CMVTOk/TiRsMicMdQI/AAAAAAAAAIA/VX6UUqhaOZk/s320/IMG_2436.JPG" width="239" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-2568021024531978269?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZztJ-KdgQfuv2GgkwmyhJiRDpQs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZztJ-KdgQfuv2GgkwmyhJiRDpQs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZztJ-KdgQfuv2GgkwmyhJiRDpQs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZztJ-KdgQfuv2GgkwmyhJiRDpQs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/8Gf0ml3L9p0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/2568021024531978269/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/reading-for-work.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/2568021024531978269?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/2568021024531978269?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/8Gf0ml3L9p0/reading-for-work.html" title="Reading for work.." /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-lLuVayi2Pek/TiRsL9LNOnI/AAAAAAAAAH8/REeJxQR7hG4/s72-c/IMG_2437.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/reading-for-work.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEYARnwyeip7ImA9WhdTEEg.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-6515191383708708599</id><published>2011-07-08T00:29:00.000+08:00</published><updated>2011-07-08T00:29:07.292+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-08T00:29:07.292+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><title>Weekend reading</title><content type="html">&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://3.bp.blogspot.com/-KxXkCUN3TEE/ThXdZo2OtJI/AAAAAAAAAG8/BmI-0124Xro/s1600/IMG_2314.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/-KxXkCUN3TEE/ThXdZo2OtJI/AAAAAAAAAG8/BmI-0124Xro/s320/IMG_2314.JPG" width="239" /&gt;&lt;/a&gt;&lt;/div&gt;The Power of Nice&lt;br /&gt;
- A book on negotiation&lt;br /&gt;
&lt;br /&gt;
- Find sth I am not doing enough&lt;br /&gt;
-&amp;gt; Prepare (ok but can be better)&lt;br /&gt;
-&amp;gt; Probe (normally I dun... miss a lot of needed info)&lt;br /&gt;
-&amp;gt; Purpose &lt;br /&gt;
- Find some funny negotiation game&lt;br /&gt;
-&amp;gt; The $10 game&lt;br /&gt;
-&amp;gt; The low bidder must sell in high bidder price&lt;br /&gt;
- Deal with diff characteristic&lt;br /&gt;
-&amp;gt; Extrovert&lt;br /&gt;
-&amp;gt; Progmatic&lt;br /&gt;
-&amp;gt; Analytic&lt;br /&gt;
-&amp;gt; Amiable&lt;br /&gt;
- and know more who am I and possible weakness&lt;br /&gt;
- how to aware of emotion&lt;br /&gt;
- In general, nice for leisure reading&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-6515191383708708599?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/43jw1rO9TkOXkqxVfxslTTxMFuM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/43jw1rO9TkOXkqxVfxslTTxMFuM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/43jw1rO9TkOXkqxVfxslTTxMFuM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/43jw1rO9TkOXkqxVfxslTTxMFuM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/yun1aUTonIY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/6515191383708708599/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/weekend-reading_07.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6515191383708708599?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6515191383708708599?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/yun1aUTonIY/weekend-reading_07.html" title="Weekend reading" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-KxXkCUN3TEE/ThXdZo2OtJI/AAAAAAAAAG8/BmI-0124Xro/s72-c/IMG_2314.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/weekend-reading_07.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMGSXwzfCp7ImA9WhdTEEg.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-7675556445344565811</id><published>2011-07-01T00:42:00.000+08:00</published><updated>2011-07-08T00:33:48.284+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-08T00:33:48.284+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><category scheme="http://www.blogger.com/atom/ns#" term="Project Management" /><title>Weekend Reading</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-m5cevAeaAJ8/ThM-hNL-L-I/AAAAAAAAAG4/C4SHzpRBGjM/s1600/IMG_2109.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/-m5cevAeaAJ8/ThM-hNL-L-I/AAAAAAAAAG4/C4SHzpRBGjM/s200/IMG_2109.JPG" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;A nice PM book&lt;br /&gt;
- Discuss general PM framework&lt;br /&gt;
- Discuss the key reason behind a framework&lt;br /&gt;
- Good discussion on Earn value analysis&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-7675556445344565811?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/idQhpTtsK49yzA7wnI-03SsxZng/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/idQhpTtsK49yzA7wnI-03SsxZng/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/idQhpTtsK49yzA7wnI-03SsxZng/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/idQhpTtsK49yzA7wnI-03SsxZng/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/z4asJDwGeb4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/7675556445344565811/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/weekend-reading.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7675556445344565811?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7675556445344565811?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/z4asJDwGeb4/weekend-reading.html" title="Weekend Reading" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-m5cevAeaAJ8/ThM-hNL-L-I/AAAAAAAAAG4/C4SHzpRBGjM/s72-c/IMG_2109.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/weekend-reading.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEQCRXk-fSp7ImA9WhdTEEg.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-8388855939420343359</id><published>2011-06-19T00:32:00.000+08:00</published><updated>2011-07-08T00:32:44.755+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-07-08T00:32:44.755+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Project Management" /><title>PMP PDU</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-4Ca0ZFvQzQQ/ThXfSWre6GI/AAAAAAAAAHE/qWt9XFgPYqw/s1600/IMG_2325.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="239" src="http://2.bp.blogspot.com/-4Ca0ZFvQzQQ/ThXfSWre6GI/AAAAAAAAAHE/qWt9XFgPYqw/s320/IMG_2325.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;PDU Hunt - IT Auditing for Project Manager&lt;br /&gt;
- Learn what audit want to identify&lt;br /&gt;
-&amp;gt; Risk&lt;br /&gt;
-&amp;gt; Key Control&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-8388855939420343359?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/AZ5_Cr8kK344bkG1uoe1kRndLU0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AZ5_Cr8kK344bkG1uoe1kRndLU0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/AZ5_Cr8kK344bkG1uoe1kRndLU0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AZ5_Cr8kK344bkG1uoe1kRndLU0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/gup7osBs3eE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/8388855939420343359/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/07/pmp-pdu.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/8388855939420343359?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/8388855939420343359?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/gup7osBs3eE/pmp-pdu.html" title="PMP PDU" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-4Ca0ZFvQzQQ/ThXfSWre6GI/AAAAAAAAAHE/qWt9XFgPYqw/s72-c/IMG_2325.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/07/pmp-pdu.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEDQ3k6fyp7ImA9WhZVFUs.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-933789731115447421</id><published>2011-05-28T14:03:00.000+08:00</published><updated>2011-05-28T14:04:32.717+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-28T14:04:32.717+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Reading" /><title>Weekend Reading</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-wDDgxASTz3g/TeCQUQH5J3I/AAAAAAAAAGs/w7o9xOEDACk/s1600/IMG_2013.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 200px;" src="http://1.bp.blogspot.com/-wDDgxASTz3g/TeCQUQH5J3I/AAAAAAAAAGs/w7o9xOEDACk/s200/IMG_2013.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5611643813303494514" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Too many examples&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-933789731115447421?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OULmBDiShhF0VGOSWalcdYjwmLY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OULmBDiShhF0VGOSWalcdYjwmLY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OULmBDiShhF0VGOSWalcdYjwmLY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OULmBDiShhF0VGOSWalcdYjwmLY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/uO6TX-ykqWo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/933789731115447421/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2011/05/weekend-reading.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/933789731115447421?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/933789731115447421?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/uO6TX-ykqWo/weekend-reading.html" title="Weekend Reading" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-wDDgxASTz3g/TeCQUQH5J3I/AAAAAAAAAGs/w7o9xOEDACk/s72-c/IMG_2013.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2011/05/weekend-reading.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMARHY4eip7ImA9Wx5XFkQ.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-7506962718243149896</id><published>2010-09-17T12:36:00.000+08:00</published><updated>2010-09-17T12:40:45.832+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-17T12:40:45.832+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenGL" /><title>Simple Model viewer using OpenTK and C# .net</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_e_B4nzLpfd8/TJLwnGh4RdI/AAAAAAAAAGA/lJeKEqtnBWE/s1600/pic.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 125px;" src="http://1.bp.blogspot.com/_e_B4nzLpfd8/TJLwnGh4RdI/AAAAAAAAAGA/lJeKEqtnBWE/s200/pic.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5517737048040555986" /&gt;&lt;/a&gt;&lt;br /&gt;For a long while, I want to try programming editor with a nice interface.&lt;br /&gt;This is a good start. Enjoy&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-7506962718243149896?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JIWL3tCSfJnWMdn8vdMPhoiYrAg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JIWL3tCSfJnWMdn8vdMPhoiYrAg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JIWL3tCSfJnWMdn8vdMPhoiYrAg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JIWL3tCSfJnWMdn8vdMPhoiYrAg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/O1SPqQgUm-M" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/7506962718243149896/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2010/09/simple-model-viewer-using-opentk-and-c.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7506962718243149896?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7506962718243149896?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/O1SPqQgUm-M/simple-model-viewer-using-opentk-and-c.html" title="Simple Model viewer using OpenTK and C# .net" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_e_B4nzLpfd8/TJLwnGh4RdI/AAAAAAAAAGA/lJeKEqtnBWE/s72-c/pic.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2010/09/simple-model-viewer-using-opentk-and-c.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4MRnk6eip7ImA9WxBQE0w.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-6513791705560594577</id><published>2010-01-12T12:59:00.000+08:00</published><updated>2010-01-13T00:49:47.712+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-13T00:49:47.712+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Daily Digest" /><title>Daily Digest</title><content type="html">&lt;a href="http://www.devx.com/cplus/article/16328"&gt;20 C++ tips&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cantrip.org/emptyopt.html"&gt;The "Empty Member" C++ Optimization&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cise.ufl.edu/~manuel/stroustrup/ex.pdf"&gt;Exception&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.glenmccl.com/tip_023.htm"&gt;Syntax Explicit&lt;/a&gt;&lt;br /&gt;Sth fun&lt;br /&gt;&lt;a href="http://www.cantrip.org/gatto.html"&gt;US education system?&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-6513791705560594577?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/G4oN_5qVyyqkEXhY2YwtsZR_MBM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G4oN_5qVyyqkEXhY2YwtsZR_MBM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/G4oN_5qVyyqkEXhY2YwtsZR_MBM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G4oN_5qVyyqkEXhY2YwtsZR_MBM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/dp6H8Hkyn1o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/6513791705560594577/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2010/01/daily-digest.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6513791705560594577?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/6513791705560594577?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/dp6H8Hkyn1o/daily-digest.html" title="Daily Digest" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2010/01/daily-digest.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8HR3k9cCp7ImA9WxBTEUg.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-4486181804197211849</id><published>2009-12-07T10:45:00.000+08:00</published><updated>2009-12-07T11:00:36.768+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-07T11:00:36.768+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="NUS CS3241" /><category scheme="http://www.blogger.com/atom/ns#" term="OpenGL" /><title>Assignment 4 - Spring mass vs constraint</title><content type="html">From http://cg.alexandra.dk/, they got a tutorial on cloth simulation using Verlet integration, and iterative constraint satisfaction. Video as below:&lt;br /&gt;&lt;object height="340" width="560"&gt;&lt;param name="movie" value="http://www.youtube.com/v/04nXlhdPxB4&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/04nXlhdPxB4&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="340" width="560"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;In class we use spring mass + Euler integration, lets see what is the different&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/R4Xu-7-VsGI&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/R4Xu-7-VsGI&amp;amp;hl=en_GB&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Few Observation&lt;br /&gt;* Euler integration is nicer with smaller time step&lt;br /&gt;* System is not very stable and very subjective to forces and constants&lt;br /&gt;* Spring mass constant has to be set carefully below some threshold (got to test it) to maintain stability&lt;br /&gt;* Spring mass fail to spread out the position offset from collision detection.&lt;br /&gt;This lead to i) over extend of few vertex&lt;br /&gt; ii) CD obj pass thru cloth as vertex are sequeezed out to the side of CD obj&lt;br /&gt;So these may be the reasons why Euler + Spring mass is not used&lt;br /&gt;&lt;br /&gt;On the hand, iterative constraint satisfaction, to me, is like a moving average that spread out the old peak while maintaining new constraint like collision detection.&lt;br /&gt;&lt;br /&gt;Anyway, here is my &lt;a href="http://www.fileden.com/files/2009/9/28/2587462/EulerSpringMassCloth.cpp" title="EulerSpringMassCloth.cpp"&gt;Source code &lt;/a&gt; for Euler Integration + Spring mass&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-4486181804197211849?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uor_4sLIeAhA3GJxMjfYAktCFBc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uor_4sLIeAhA3GJxMjfYAktCFBc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/uor_4sLIeAhA3GJxMjfYAktCFBc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uor_4sLIeAhA3GJxMjfYAktCFBc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/WBL3VE8SZIM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/4486181804197211849/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/12/assignment-4-spring-mass-vs-constraint.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4486181804197211849?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4486181804197211849?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/WBL3VE8SZIM/assignment-4-spring-mass-vs-constraint.html" title="Assignment 4 - Spring mass vs constraint" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/12/assignment-4-spring-mass-vs-constraint.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEIFQHc6cCp7ImA9WxBRF00.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3474730759116619485</id><published>2009-11-30T17:03:00.001+08:00</published><updated>2010-01-05T22:41:51.918+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-05T22:41:51.918+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Basic C/C++" /><title>Quick Revision on C/C++</title><content type="html">Some Reference:&lt;br /&gt;&lt;br /&gt;Tutorial&lt;br /&gt;http://www.learncpp.com/&lt;br /&gt;&lt;br /&gt;On storage&lt;br /&gt;http://ee.hawaii.edu/~tep/EE160/Book/&lt;br /&gt;&lt;br /&gt;dll&lt;br /&gt;http://www.codeguru.com/cpp/cpp/cpp_mfc/tutorials/article.php/c9855/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3474730759116619485?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/khyK-ag-RePksu402NRoTzVsJ9M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/khyK-ag-RePksu402NRoTzVsJ9M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/khyK-ag-RePksu402NRoTzVsJ9M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/khyK-ag-RePksu402NRoTzVsJ9M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/30fVjxG0vfU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3474730759116619485/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/11/quick-revision-on-cc.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3474730759116619485?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3474730759116619485?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/30fVjxG0vfU/quick-revision-on-cc.html" title="Quick Revision on C/C++" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/11/quick-revision-on-cc.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YAR3Y_fip7ImA9WxNaFE0.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3023937306657415045</id><published>2009-11-28T19:23:00.000+08:00</published><updated>2009-11-28T19:52:26.846+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-28T19:52:26.846+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Me" /><title>A year in NUS</title><content type="html">Wow, it is an amazing year studying in NUS. I reckon that today is my last exam but everything just flashing in my mind just like they just happened yesterday. From class to summer intern to lab TA, so many nice memory (oh I forget to mention leisure time, but do I really have that?)&lt;br /&gt;&lt;br /&gt;Class are nice, from the challenging foundation class from Prof Yap and Prof Sim (at least I am more fluent in Maths and technique used in OS and Multimedia), nice graphic class from Prof Low, simulation and distribution class from Prof Yu and Gary, Weitsang for his excellent explanation on computer network, to the PM class from Irene... Thanks all for enrichment and knowledge passed. &lt;br /&gt;&lt;br /&gt;Then to summer intern in India. Same, short time but long story&lt;br /&gt;&lt;br /&gt;Then to lab TA, I feel grateful to have a chance working with Michael and Pasha and meeting extra-ordinary students (in all sense, not just the dancing man). Michael is inspiring and he will just do whatever it takes to let ppl understand the concept (impressive) and Pasha is really a nice glue helping and cheering ppl.&lt;br /&gt;&lt;br /&gt;Thanks all friends, your encouragement and advice. Without that, I cant believe I can finish 10 courses in a year.&lt;br /&gt;&lt;br /&gt;So, a new chapter will soon start!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3023937306657415045?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0cH0zf2pQNdYaEQrTNs_k3qzb4c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0cH0zf2pQNdYaEQrTNs_k3qzb4c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/0cH0zf2pQNdYaEQrTNs_k3qzb4c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0cH0zf2pQNdYaEQrTNs_k3qzb4c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/zNdMrAErivE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3023937306657415045/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/11/year-in-nus.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3023937306657415045?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3023937306657415045?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/zNdMrAErivE/year-in-nus.html" title="A year in NUS" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/11/year-in-nus.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QESXY8fyp7ImA9WxNUEU4.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3319738780193707688</id><published>2009-11-02T01:42:00.000+08:00</published><updated>2009-11-02T11:08:28.877+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-02T11:08:28.877+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="NUS CS3241" /><category scheme="http://www.blogger.com/atom/ns#" term="OpenGL" /><title>CS3241 Lab 10</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_e_B4nzLpfd8/Su3I3vXOhxI/AAAAAAAAAFo/hXOO1aINrW4/s1600-h/lab_screenshot.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 188px; height: 200px;" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/Su3I3vXOhxI/AAAAAAAAAFo/hXOO1aINrW4/s200/lab_screenshot.jpg" alt="" id="BLOGGER_PHOTO_ID_5399192388219340562" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Time flies and we are in lab 10. As assignment 4 requires us to do particle and physics simulation, we will look into collision detection and response a bit. Hopefully, it will help your assignment 4.&lt;br /&gt;&lt;br /&gt;Pls get the source code in forum (lab 10)&lt;br /&gt;&lt;br /&gt;&lt;object style="margin: 0px;" height="355" width="425"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cs3241lab10-091101114232-phpapp01&amp;amp;stripped_title=cs3241-lab-10"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cs3241lab10-091101114232-phpapp01&amp;amp;stripped_title=cs3241-lab-10" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="355" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3319738780193707688?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3OPA5g5Toy3AC75KwL8QfwzkGUI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OPA5g5Toy3AC75KwL8QfwzkGUI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3OPA5g5Toy3AC75KwL8QfwzkGUI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OPA5g5Toy3AC75KwL8QfwzkGUI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/-_ZtCkN83FM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3319738780193707688/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/11/cs3241-lab-10.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3319738780193707688?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3319738780193707688?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/-_ZtCkN83FM/cs3241-lab-10.html" title="CS3241 Lab 10" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_e_B4nzLpfd8/Su3I3vXOhxI/AAAAAAAAAFo/hXOO1aINrW4/s72-c/lab_screenshot.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/11/cs3241-lab-10.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUDQ3o_cCp7ImA9WxNVFks.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-5386849582139297710</id><published>2009-10-28T00:54:00.000+08:00</published><updated>2009-10-28T01:07:52.448+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-28T01:07:52.448+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cool stuff" /><title>Nice video from TED</title><content type="html">Randomly watching video from TED and find some cool stuff.&lt;br /&gt;&lt;br /&gt;Research on digital face&lt;br /&gt;Project site: http://projects.ict.usc.edu/graphics/&lt;br /&gt;&lt;object height="326" width="334"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;param name="bgColor" value="#ffffff"&gt; &lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/PaulDebevec_2009X-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PaulDebevec-2009X.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=662&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=paul_debevec_animates_a_photo_real_digital_face;year=2009;theme=new_on_ted_com;theme=tales_of_invention;theme=the_creative_spark;theme=what_s_next_in_tech;event=TEDxUSC;&amp;amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" allowfullscreen="true" flashvars="vu=http://video.ted.com/talks/dynamic/PaulDebevec_2009X-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/PaulDebevec-2009X.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=662&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=paul_debevec_animates_a_photo_real_digital_face;year=2009;theme=new_on_ted_com;theme=tales_of_invention;theme=the_creative_spark;theme=what_s_next_in_tech;event=TEDxUSC;" height="326" width="334"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt; David Perry on videogames,&lt;br /&gt;The later part of the talk featuring a gamer's video is very nice.&lt;br /&gt;&lt;object height="326" width="334"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;param name="bgColor" value="#ffffff"&gt; &lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/DavidPerry_2006-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DavidPerry-2006.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=361&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=david_perry_on_videogames;year=2006;theme=tales_of_invention;theme=what_s_next_in_tech;event=TED2006;&amp;amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgcolor="#ffffff" allowfullscreen="true" flashvars="vu=http://video.ted.com/talks/dynamic/DavidPerry_2006-medium.flv&amp;amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DavidPerry-2006.embed_thumbnail.jpg&amp;amp;vw=320&amp;amp;vh=240&amp;amp;ap=0&amp;amp;ti=361&amp;amp;introDuration=16500&amp;amp;adDuration=4000&amp;amp;postAdDuration=2000&amp;amp;adKeys=talk=david_perry_on_videogames;year=2006;theme=tales_of_invention;theme=what_s_next_in_tech;event=TED2006;" height="326" width="334"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-5386849582139297710?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MYGDCkAsk_Da_ib1BIATDQ4YTqw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MYGDCkAsk_Da_ib1BIATDQ4YTqw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MYGDCkAsk_Da_ib1BIATDQ4YTqw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MYGDCkAsk_Da_ib1BIATDQ4YTqw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/TkIGtKlP_Y0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/5386849582139297710/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/10/nice-video-from-ted.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/5386849582139297710?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/5386849582139297710?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/TkIGtKlP_Y0/nice-video-from-ted.html" title="Nice video from TED" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/10/nice-video-from-ted.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YMQHwzfip7ImA9WxNaF0s.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-4869233183611065397</id><published>2009-10-27T00:26:00.000+08:00</published><updated>2009-12-02T23:53:01.286+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-02T23:53:01.286+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="NUS CS3241" /><title>CS3241 Memories~</title><content type="html">After all the sweat n pain.... Thx Pasha putting everything up.&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/lIsLrdD4ulg&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/lIsLrdD4ulg&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7Zg5GyRrffo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/7Zg5GyRrffo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/sBtmw604VqE&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/sBtmw604VqE&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-4869233183611065397?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RdtbDTzre1ZwzFSn0mGeL1kfTSA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RdtbDTzre1ZwzFSn0mGeL1kfTSA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RdtbDTzre1ZwzFSn0mGeL1kfTSA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RdtbDTzre1ZwzFSn0mGeL1kfTSA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/hhcAjw6y6pg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/4869233183611065397/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/10/cs3241-memories.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4869233183611065397?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/4869233183611065397?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/hhcAjw6y6pg/cs3241-memories.html" title="CS3241 Memories~" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/10/cs3241-memories.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkUBR3w4eCp7ImA9WxNVEEo.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-7552408646916449502</id><published>2009-10-21T04:23:00.000+08:00</published><updated>2009-10-21T04:24:16.230+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-21T04:24:16.230+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="NOC India" /><title>NOC India presentation</title><content type="html">&lt;span class="Apple-style-span"   style=" color: rgb(68, 68, 68);  white-space: pre; font-family:Arial;font-size:12px;"&gt;&lt;div style="width:425px;text-align:left" id="__ss_2298187"&gt;&lt;br /&gt;&lt;object style="margin:0px" width="425" height="355"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=nocindiaedisontsuipresentation-091020151031-phpapp02&amp;amp;stripped_title=noc-india-edisontsui-presentation"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=nocindiaedisontsuipresentation-091020151031-phpapp02&amp;amp;stripped_title=noc-india-edisontsui-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-7552408646916449502?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lQ4H7qxubU8qsZ6zkW0qVGB6FiY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lQ4H7qxubU8qsZ6zkW0qVGB6FiY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lQ4H7qxubU8qsZ6zkW0qVGB6FiY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lQ4H7qxubU8qsZ6zkW0qVGB6FiY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/KZmOlmPB-NA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/7552408646916449502/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/10/noc-india-presentation.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7552408646916449502?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/7552408646916449502?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/KZmOlmPB-NA/noc-india-presentation.html" title="NOC India presentation" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/10/noc-india-presentation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIDQH05fip7ImA9WxNVEEQ.&quot;"><id>tag:blogger.com,1999:blog-6122259044467289153.post-3346724688794953514</id><published>2009-10-19T01:20:00.000+08:00</published><updated>2009-10-21T11:09:31.326+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-21T11:09:31.326+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="NUS CS3241" /><category scheme="http://www.blogger.com/atom/ns#" term="OpenGL" /><title>CS3241 - Lab9 Implementing Bézier curve</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_e_B4nzLpfd8/SttOsVjbpSI/AAAAAAAAAEw/jvktiz2HEow/s1600-h/bezierUI.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 192px; height: 200px;" src="http://2.bp.blogspot.com/_e_B4nzLpfd8/SttOsVjbpSI/AAAAAAAAAEw/jvktiz2HEow/s200/bezierUI.png" alt="" id="BLOGGER_PHOTO_ID_5393991502313268514" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Thx Michael for saving my day and providing us a nice toy to play.&lt;br /&gt;This week, we  will follow Michael's example on implmenting Bézier curve in OpenGL.&lt;br /&gt;&lt;a href="http://www.fileden.com/getfile.php?file_path=http://www.fileden.com/files/2009/9/28/2587462/BezierUI_todo.c" style="text-decoration: none;"&gt;&lt;span class="Apple-style-span" style="text-decoration: underline;"&gt;Todo&lt;/span&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.fileden.com/getfile.php?file_path=http://www.fileden.com/files/2009/9/28/2587462/BezierUI.c"&gt;Solution&lt;/a&gt;&lt;br /&gt;&lt;div style="width:425px;text-align:left" id="__ss_2303055"&gt;&lt;br /&gt;&lt;object style="margin:0px" width="425" height="355"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cs3241lab9-091020220535-phpapp01&amp;amp;stripped_title=cs3241-lab9-2303055"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=cs3241lab9-091020220535-phpapp01&amp;amp;stripped_title=cs3241-lab9-2303055" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6122259044467289153-3346724688794953514?l=edisonkwtsui.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MvPn90eBvbdy2X4ukNdjHr1nWpk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MvPn90eBvbdy2X4ukNdjHr1nWpk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MvPn90eBvbdy2X4ukNdjHr1nWpk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MvPn90eBvbdy2X4ukNdjHr1nWpk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/hNdSi/~4/M5TQsjN_XM8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://edisonkwtsui.blogspot.com/feeds/3346724688794953514/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://edisonkwtsui.blogspot.com/2009/10/cs3241-lab9-implementing-bezier-curve.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3346724688794953514?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6122259044467289153/posts/default/3346724688794953514?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hNdSi/~3/M5TQsjN_XM8/cs3241-lab9-implementing-bezier-curve.html" title="CS3241 - Lab9 Implementing Bézier curve" /><author><name>Edison</name><uri>http://www.blogger.com/profile/14173600112313258919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://4.bp.blogspot.com/_e_B4nzLpfd8/SsB0_58SrsI/AAAAAAAAACc/LpRqPhD5irc/S220/CIMG0406.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_e_B4nzLpfd8/SttOsVjbpSI/AAAAAAAAAEw/jvktiz2HEow/s72-c/bezierUI.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://edisonkwtsui.blogspot.com/2009/10/cs3241-lab9-implementing-bezier-curve.html</feedburner:origLink></entry></feed>

