2005-10-11

情人碼頭看煙火~*

DSC00877
DSC00877. Originally uploaded by JIESIN.

下午兩點去探路,跑到碼頭附近漁塭深處,發現有好幾台休旅車XD 大概跟我一樣是要去拍照。
事後發現在情人碼頭看就好了,人沒有想像的多,而且我也不想再走到漁塭了...
煙火還不錯啦!不過跟我想像的有落差,高度不夠。還好沒跑到偏僻的漁塭拍...因為稍微遠了一點點,可能就看不到了= =
以上都是廢話,點進去看照片吧。

2005-10-10

整張網頁抓圖

因為很多網頁比我螢幕高...想要抓下來介紹。用我本來用的Hello,就只能抓其中一部分。

所以去找了一下,發現這個HyperSnap可以自動滾動網頁來抓圖。

設定方法是到HyperSnap的Capture選單裡的Capture Settings裡的Capture標籤裡,把Auto-scroll window during Window Capture這個核取方塊打勾。

抓圖只要把HyperSnap開起來,按下Ctrl+Shift+w,滑鼠移到要抓圖的視窗,到空白的地方會出現一個向下的箭頭,點擊滑鼠左鍵就會開始自動滾動抓圖。

<拿我的Blog做一下示範>

不過HyperSnap好像不是免費軟體...等試用期過了再看看。再去找一下有沒有免費的好了...

2005-10-08

情人碼頭周圍地圖

施放點周圍地圖
施放點周圍地圖. Originally uploaded by JIESIN.

不想到情人碼頭人擠人的
我可以陪你到圖中所示無人地點看煙火~~XD

2005-10-07

今天的英文課

總算放完影片;想不到還有笑點...而且笑點都是我!?...orz 明明就是溫馨感人小短劇阿~_~
由此可見要讓人發笑不一定要嘻皮笑臉講笑話,認真的演戲也是可以,嗯嗯。

之後老師說我有憂鬱的氣息~~我就知道我果然是憂鬱的人阿~~呵呵
旁邊的人一直說屁啦是怎樣= =
明明就是事實XD
我是憂鬱氣息電機男 ;)

-- 影片...流出去的話我大概會被...還是先放在硬碟裡吧= =a

Computer Organization HW1

MIPS assembly code: (copied from textbook)
( n corresponds to the argument register $a0 )
 
fact: addi $sp,$sp,-8 # adjust stack for 2 items
sw $ra,4($sp) # save the return address
sw $a0,0($sp) # save the argument n
slti $t0,$a0,1 # test for n < 1
beq $t0,$zero,L1 # if n >= 1, go to L1.
 
addi $v0,$zero,1 # return 1
addi $sp,$sp,8 # delete 0 and address
jr $ra # return to after jal of L1
 
L1: addi $a0,$a0,-1 # n >= 1: argument gets (n - 1)
jal fact # call fact with (n - 1)
 
lw $a0,0($sp) # return from jal:restore argument n
lw $ra,4($sp) # restore the return address
addi $sp,$sp,8 # adjust stack pointer to pop 2 items
mul $v0,$a0,$v0 # return n * fact(n-1)
jr $ra # return to the caller
 
trace: n = 3
 
fact: addi $sp,$sp,-8 # adjust stack for 2 items
sw $ra,4($sp) # save the return address in stack
sw $a0,0($sp) # save the argument n = 3 in stack
slti $t0,$a0,1 # test if n < 1
beq $t0,$zero,L1 # if n >= 1, go to L1. Now n = 3, so go to L1
 
L1: addi $a0,$a0,-1 # n = 3 - 1 = 2
jal fact # call fact with n = 2
 
fact: addi $sp,$sp,-8 # adjust stack for 2 items
sw $ra,4($sp) # save the return address in stack
sw $a0,0($sp) # save the argument n = 2 in stack
slti $t0,$a0,1 # test if n < 1
beq $t0,$zero,L1 # if n >= 1, go to L1. Now n = 2, so go to L1
 
L1: addi $a0,$a0,-1 # n = 2 - 1 = 1
jal fact # call fact with n = 1
 
fact: addi $sp,$sp,-8 # adjust stack for 2 items
sw $ra,4($sp) # save the return address in stack
sw $a0,0($sp) # save the argument n = 1 in stack
slti $t0,$a0,1 # test if n < 1
beq $t0,$zero,L1 # if n >= 1, go to L1. Now n = 1, so go to L1
 
L1: addi $a0,$a0,-1 # n = 1 - 1 = 0
jal fact # call fact with n = 0
 
fact: addi $sp,$sp,-8 # adjust stack for 2 items
sw $ra,4($sp) # save the return address in stack
sw $a0,0($sp) # save the argument n = 0 in stack
slti $t0,$a0,1 # test if n < 1
beq $t0,$zero,L1 # if n >= 1, goto L1. n = 0,so goto next line
 
addi $v0,$zero,1 # return 1
addi $sp,$sp,8 # pop 2 items(0 and return address) of stack
jr $ra # return to the instruction after jal
 
lw $a0,0($sp) # returned from jal. restore argument 1
lw $ra,4($sp) # restore the return address
addi $sp,$sp,8 # pop 2 items(1 and return address) of stack
mul $v0,$a0,$v0 # return n*fact(n-1) = 1*fact(0) = 1 * 1 = 1
jr $ra # return to the instruction after jal
     
lw $a0,0($sp) # returned from jal. restore argument 2
lw $ra,4($sp) # restore the return address
addi $sp,$sp,8 # pop 2 items(2 and return address) of stack
mul $v0,$a0,$v0 # return n*fact(n-1) = 2*fact(1) = 2 * 1 = 2
jr $ra # return to the instruction after jal
     
lw $a0,0($sp) # returned from jal. restore argument 3
lw $ra,4($sp) # restore the return address
addi $sp,$sp,8 # pop 2 items(3 and return address) of stack
mul $v0,$a0,$v0 # return n*fact(n-1) = 3*fact(2) = 3 * 2 = 6
jr $ra # return to the caller

2005-10-01

沙漠玫瑰

DSC00414
DSC00414. Originally uploaded by JIESIN.

我家的沙漠玫瑰開花了!! :D

2005-09-22

css Zen Garden

昨天去圖書部看免錢書,看到一本介紹這個網站css Zen Garden的書,選了其中幾個Design來做CSS教學,看了很有慾望想買,但我忍下來了。

css Zen Garden是一個讓人見識CSS威力的網站。同樣的HTML,套用不同的CSS,看起來可以完全不一樣。進去看看才知道!

其實這個網站已經很久了...我怎麼現在才知道= =

2005-09-17

我家陽臺

DSC02715
DSC02715. Originally uploaded by JIESIN.

前天我爸把陽台整理的很漂亮哈哈^^

2005-09-06

送飲料記


鐵馬把手with草地. Originally uploaded by jieNew.

在成大還是要騎腳踏車才對阿~~騎機車就虛掉嚕~~
今天去送飲料給班上當迎新隊輔的同學們,順便逛了校園n圈,因為太早去了......= =

我還拍了幾張照片~~這次有把天空的藍色也拍進去喔!!另外也拍了吃冰 送飲料 吃飯的照片:P 沒辦法...flickr pro空間趨近無限大,不多拍一點太浪費了XD

飲料幸好抓到四個人幫忙出錢,不然就爆了..囧
還有下次要我幫忙搬家記得留多一點東西給我搬...= = 不然真的很無聊說。看在有幫忙請飲料的份上,這次就算了︿( ̄︶ ̄)︿