mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
296 lines
10 KiB
XML
296 lines
10 KiB
XML
<?xml version="1.0" encoding="Big5"?>
|
||
<!--
|
||
Source: http://blog.worren.net/wp-atom.php
|
||
Expect: Big5
|
||
-->
|
||
<feed version="0.3"
|
||
xmlns="http://purl.org/atom/ns#"
|
||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||
xml:lang="en">
|
||
<title>Worren's Blog</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net" />
|
||
<tagline>Worren's Blog</tagline>
|
||
<modified>2005-12-27T11:12:12Z</modified>
|
||
<copyright>Copyright 2005</copyright>
|
||
<generator url="http://wordpress.org/" version="1.2.1">WordPress</generator>
|
||
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>Keil C Compiler 中斷的寫法</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=80" />
|
||
<id>http://blog.worren.net?p=80</id>
|
||
<modified>2005-12-27T11:11:09Z</modified>
|
||
<issued>2005-12-27T11:09:50Z</issued>
|
||
|
||
<dc:subject>LCD/電子電路 手札</dc:subject>
|
||
<dc:subject>8051 Note</dc:subject> <summary type="text/html" mode="escaped">[轉載] http://ehome.hifly.to/showthread.php?threadid=1972
|
||
|
||
|
||
static void TF0_ISR(void) interrupt TF0_VECTOR using REG_BANK_1;
|
||
|
||
|
||
interrupt 後面接著一個number,這個number代表8051的一個中斷。
|
||
|
||
請查你的程式中 TF0_VECTOR 定義的number,然後查Keil C 的menu的interrupt number的表格,即知是那一個中斷。
|
||
|
||
8051的register有四個bank,using後面是指定interrupt routine 要用那一個 bank。一樣查REG_BANK_1的定義即知要使用那一個 bank。
|
||
|
||
從定義的名稱字義來看
|
||
TF0_VECTOR 應是timer 0
|
||
REG_BANK_1 應是 1 </summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>C 的基本位元操作符號 vs byte資料型態</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=79" />
|
||
<id>http://blog.worren.net?p=79</id>
|
||
<modified>2005-12-27T11:12:12Z</modified>
|
||
<issued>2005-12-27T11:07:56Z</issued>
|
||
|
||
<dc:subject>LCD/電子電路 手札</dc:subject>
|
||
<dc:subject>8051 Note</dc:subject> <summary type="text/html" mode="escaped">i=24 , 以二進位表示 0000000000011000
|
||
i=16, 以二進位表示 0000000000010000
|
||
|
||
|
||
(1) &#038; 且
|
||
0000000000011000
|
||
&#038; 0000000000010000
|
||
------------------------------
|
||
0000000000010000=16
|
||
|
||
(2) | 或
|
||
0000000000010000
|
||
| 0000000000011000
|
||
------------------------------
|
||
0000000000011000=24
|
||
|
||
(3) ~ 反
|
||
~ 0000000000010000
|
||
-------------------------------
|
||
0000000000011000
|
||
1111111111100111 =-25
|
||
|
||
item 3 ...</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>haha ~ .. 唱歌比賽</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=78" />
|
||
<id>http://blog.worren.net?p=78</id>
|
||
<modified>2005-12-13T10:57:20Z</modified>
|
||
<issued>2005-12-13T10:56:53Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Life</dc:subject> <summary type="text/html" mode="escaped">明天要進入決賽了! 其實當初說初賽取15名, 入圍應該不難 ! ... 是如預期般地入圍了 !
|
||
|
||
明天就要唱決賽了, 今天仍然忙著我手邊的工作 . 下班時間到了, 在跟EE 討論一電路的問題 , 此時處長老大從遠遠一端走到我跟前, 拍了一下我桌前的隔板說 : 嘿~ .. 明天你要去比賽啦~?有加油團嗎? 這是一定要的ㄛ~~
|
||
|
||
ha ~ ... 處長底下有百多人, 也日理萬機 , 還以為他不會知道我這個小咖 ~ .. 結果他說他前陣子在大陸看公佈欄有看到我的名子就想"嘿~?這不是我家的人嗎~~" .... ha ~ ..... 不曉得他怎會記得我這很少在他跟前發言的人! ... ^_^"
|
||
|
||
明天晚上部門有開課, 大概只有助理會過去陪我吧 ! ... :P .... 處長要我得一個最佳造型獎 .. ~"~ .... pls ~..我這種得性的人怎扮出最佳造型ㄚ~?大概得穿丁字褲才有機會吧! ... 可以得最該死造型獎! .... ...</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>棒球理論</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=77" />
|
||
<id>http://blog.worren.net?p=77</id>
|
||
<modified>2005-12-13T07:44:04Z</modified>
|
||
<issued>2005-12-13T07:44:04Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Heart</dc:subject> <summary type="text/html" mode="escaped">從朋友 FW 給我的 mail 看到的 ....
|
||
|
||
節錄 start .......
|
||
直到有一天看棒球,我忽然領悟了一個應答的理論:
|
||
|
||
如果我是個打擊手的話,總不該什麼球都打吧!
|
||
|
||
應該要選好球才打,如果她投出的是壞球,
|
||
|
||
那麼我幹嘛一直揮棒呢?
|
||
節錄 end ........
|
||
|
||
人和人之間的相處也是 ,
|
||
情侶和夫妻之間就像是餵球的教練和打擊手
|
||
職場間同事/跨部門就像是"敵隊"的投手和自己(打擊手) ...
|
||
若是對方說了 or 做了什麼令自己不舒服的話 or 事`..
|
||
其實... 沉默(不揮棒)或許可以讓許多不必要的問題避免掉!
|
||
|
||
就像是投出了壞球, 若硬是去揮可能是高飛球接殺, 也可能是
|
||
滾地球雙殺........
|
||
|
||
每個不同組合的伙伴都有其特定的相處模式, 有時候我會不經意
|
||
投出壞球, 若對方懂得忍下 ~... 那就不會有爭執! 相對地若對方
|
||
也是投出壞球了 ~ .... 我也要適度地忍下, ..... 懂的欣賞彼此的
|
||
優點, 忍讓對方無傷大雅的缺點(or喜歡對方的缺點!) .... 一切都
|
||
會很好 go .... :)
|
||
</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>女大18變?</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=75" />
|
||
<id>http://blog.worren.net?p=75</id>
|
||
<modified>2005-11-26T16:24:33Z</modified>
|
||
<issued>2005-11-26T16:13:36Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Heart</dc:subject> <summary type="text/html" mode="escaped">ha ~ .. 剛剛找了孫淑媚新專輯的 VCD ,
|
||
(還以為是KTV勒 ~...:P) ...
|
||
|
||
|
||
看了她的新造型, 多了一股成熟的女人味,
|
||
也把之前的牙套拿掉了 ! .... 加上她的歌聲 ~..
|
||
呵, 女大真是18變ㄚ! ... 變美了, 曲風也比較
|
||
輕快一點(but 還是有很多悲哀的!...@@a)
|
||
|
||
和王識賢合唱的"你是我的溫泉" 還真是跳脫之
|
||
前的風格! ....MV中的造型覺得超級美的 ~ .. :P
|
||
|
||
|
||
今天去高中的校友會...-"- ...被同學拉去的! ..
|
||
之前老師打電話給我我都想辦法推掉了 ~... 結果
|
||
還是被同學拉去了 ! ... :P ...btw, 是合唱團
|
||
裡唯一同屆的~... 她, 以前還真是不怎起眼, 就
|
||
很單純的一個女生! 現在 ~...哇塞, 幾年不見, 唸
|
||
了大學, 出了社會.... 她都沒變老, 但是穿著上卻
|
||
多了好一分女人味~...她也是和我妹一樣呆銀行的!
|
||
but 就不太知道是啥部門, 只知道她很忙~ ..always
|
||
on line ! .. @@a ...大概是唯一同屆的, ...</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>惡作劇之吻</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=74" />
|
||
<id>http://blog.worren.net?p=74</id>
|
||
<modified>2005-11-26T16:12:45Z</modified>
|
||
<issued>2005-11-26T16:12:45Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Life</dc:subject> <summary type="text/html" mode="escaped">現在又在播惡作劇之吻台灣版 ....
|
||
林依晨好可愛 ~....呵呵 ~.....
|
||
無論是穿網球裝, 休閒裝, 淑女裝,....連睡衣都好可愛 !.. :P
|
||
|
||
|
||
若我有個馬子像她那麼可愛就好了 ! ..... XD
|
||
劇中男主角對她真兇 ! ....
|
||
|
||
可是,...... 我自己也很兇 ~...
|
||
可愛女孩應該會被我嚇跑吧 ! ....
|
||
ha ~ ... 先修一下自己的屁氣吧 !
|
||
|
||
呵 ~...有人說, 沒想到我是一個會去看偶像劇的人 !
|
||
but 我也不是每部都看~...偶像劇嘛~...當然就是裡面
|
||
的人可愛的話就看啦 ! .... :P </summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>小孩子緣</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=73" />
|
||
<id>http://blog.worren.net?p=73</id>
|
||
<modified>2005-11-26T16:12:04Z</modified>
|
||
<issued>2005-11-26T16:11:43Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Life</dc:subject> <summary type="text/html" mode="escaped">曾幾何時 ~ .. 我都不知道我那麼有小孩子緣 !
|
||
|
||
|
||
|
||
都已經忘記是什麼時候了, 應該是我高中之前(含)吧 ~?
|
||
小孩子, 特別是5歲以下的小朋友 ~.. 對我有種恐懼感 ~...
|
||
鄰居的小孩到我家玩, 看到我, 通常上第一件事就是悶著!
|
||
然後我上前的話, 就是坐到地上&#038;大哭!
|
||
|
||
今天去學姊家和姊夫喝一杯(事實上是因為我幫她們弄一台新電腦
|
||
今天去安裝!)... 喝到11點多, 我見狀2個小孩子都開始愛睏了~~...
|
||
就提出要離開了 ~....即使酒還沒喝完勒 ~.......
|
||
|
||
結果 ~... ha ` ... 我在門口聽到老大(哥哥)在跟媽媽吵 ~....
|
||
原來是想要我給他抱抱 ~...:P ..... 當然我就向前把他抱起來
|
||
給他說了一些好話 ~..什麼"哥哥最乖了, 都會幫媽媽照顧妹妹...."
|
||
"睡前要刷牙~.." ....
|
||
|
||
他才肯放我走 ~... ha ~ ...
|
||
|
||
|
||
不曉得是什麼時候 ~..我開始有小孩子緣 ~.... 應該是因為去了餉潭
|
||
國小吧 ~ ...從那時候面對小朋友的氣不再是一陳不變, 不像是對大
|
||
人一般, 在餉潭, 幼稚園的小朋友見我, 還會爬到我身上勒 ~..也會要我抱
|
||
他/她們 ~ ....ha ~...真是難以想像! ... 今天到餉潭&#038;學姊家 ~大概我的
|
||
暴戾之氣少了很多(問前XX ...</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>最愛的人不見得最後就是會在一起 …</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=72" />
|
||
<id>http://blog.worren.net?p=72</id>
|
||
<modified>2005-11-23T16:29:18Z</modified>
|
||
<issued>2005-11-23T16:29:18Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Heart</dc:subject> <summary type="text/html" mode="escaped">
|
||
有感而發
|
||
|
||
世間事就是這樣!
|
||
最愛的人不見得就是最後在一起的那個人!
|
||
或許是生命伴侶中曾經扮演著再平常也不過的角色的那位~
|
||
|
||
失去後才感覺到, 再不起眼的小砂子, 份量原來是那麼地重! </summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>老師, 對不起 …</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=71" />
|
||
<id>http://blog.worren.net?p=71</id>
|
||
<modified>2005-11-22T02:15:42Z</modified>
|
||
<issued>2005-11-22T02:15:42Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Life</dc:subject> <summary type="text/html" mode="escaped">話說昨天 .... 午休時間 ... 瑪莉兄弟的鈴聲響起 ! .. 哇勒, 誰在這種時候打電話來勒!?
|
||
看號碼? ... 沒看過! 接起來聽?... 聲音很熟悉! but 不知道是誰!
|
||
|
||
|
||
對方: 你在睡覺嗎?
|
||
我: 對ㄚ!
|
||
對方: 你昨天輪班ㄚ?
|
||
我: 沒啦 , 現在是午休時間! 妳等一下再打給我啦!
|
||
對方: ㄛ~~ ... 沒關係, 你聽就好了~... 校長說..........
|
||
我: ... ||| ...... 妳... 是老師! 對不起, 我沒聽出來... ㄜ~... 關於那件事, 我要看我的 schedule .......
|
||
老師: 對啦, 我是老師啦! 好啦, 那你要給我回應ㄛ! ... 不要忘記嘿!
|
||
|
||
..........怪了, 不都是學弟在聯絡的嘛 ~ ... 大概時間比較緊迫, ...</summary>
|
||
</entry>
|
||
<entry>
|
||
<author>
|
||
<name>Worren</name>
|
||
</author>
|
||
<title>過了這個村,就沒這個店了?</title>
|
||
<link rel="alternate" type="text/html" href="http://blog.worren.net/index.php?p=70" />
|
||
<id>http://blog.worren.net?p=70</id>
|
||
<modified>2005-11-22T04:27:24Z</modified>
|
||
<issued>2005-11-20T16:13:02Z</issued>
|
||
|
||
<dc:subject>一般</dc:subject>
|
||
<dc:subject>Life</dc:subject> <summary type="text/html" mode="escaped">最近跟一個朋友聊起這句話! 應該是說我在跟他說這句話!
|
||
|
||
不過, 我想, 應該也得對我自己說說這句話! 機會一但溜走了, 就不會是你的了! 還是快想想別的事吧 ! </summary>
|
||
</entry>
|
||
</feed> |