看看這回能不能搜尋。
Posted by yungyuc
at
12:11,
0 comment,
0 trackback.
宗像詩帆家裡就是楯祐一說的特價神社,因為有人要在神社結婚,所以就找了舞衣、巧海和命來幫忙。可以看到巫女服了。
"witch suite":img:http://img103.exs.cx/img103/1704/witch.th.jpg ("full size":http://img103.exs.cx/img103/1704/witch.jpg)
杉浦碧小姐,你的正職是 HiME 還是熱血教師呢 @_@ 眼神看起來真像熱血版的水月。
次回 第七話 迷子の仔猫たち @11/11。哈哈,老師說她是十七歲的話,那就是十七歲,哈哈哈
"official site":http://www.sunrise-inc.co.jp/my-hime/web/index.html
"episode intro":http://www.sunrise-inc.co.jp/my-hime/web/pv/06.html
"webnt info":http://pc.webnt.jp/anime/disc_base.php?oid=402796
Posted by yungyuc
at
08:17,
0 comment,
0 trackback.
一夏和舞夏一起去參加夏天晚上的煙火大會。又到了由比ヶ浜海邊。
這次一夏藉著火之精靈的 Jinn 所看到的並不是可以解決的問題,並不像光子探測器一樣,看到了就能移動的。事物的好壞是相對的,人所能觀察到的面向也並不完整。要如何用更廣闊的眼光來面對人生中所遇到的問題、人、事、物,理解它們,實行決斷,是一夏要學習的主題。
十二個精靈的 Jinn 也許是不同角度的隱諭,要一夏透過這樣的經驗完成些什麼吧。
基本上,還是猜不出來。
次回 第六話 濡肌(ぬれはだ)の微熱 @11/07。
"official site":http://www.uta-kata.com/
"webnt info":http://pc.webnt.jp/anime/disc_base.php?oid=402708
第四個出場的 Rozen Maiden,翠星石,是個膽小鬼,也是個喜歡です的娃娃。
這次旅行到ジュン的夢裡去,給小朋友的樹苗澆點水。
次回 第五話 階段 @11/04 (Thu.)
"official site":http://www.tbs.co.jp/rozen-maiden/
"webnt info":http://pc.webnt.jp/anime/disc_base.php?oid=402814
在 Windows gVIM 6.3 下使用,允許
1 自動轉換 big5, gb, sjis, UTF-8 編碼到 cp950 模式下編輯。
2 使用 elflord color。
3 介面設為英文。
4 不使用 backup 和 writebackup。
5 indentation 設為 2 char。
以下是 listing::
" set the UI language to English.
language en
set fileencodings=utf-8,big5,gbk,sjis,euc-jp,euc-kr,utf-bom,iso8859-1
set encoding=big5
set termencoding=big5
" under MS Windows.
behave mswin
source $VIMRUNTIME/mswin.vim
" set GUI options.
set guifont=細明體:h15:cCHINESEBIG5
set guioptions=gmrLt
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
colors elflord
syntax on
set hlsearch
endif
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
if &sh =~ '\ silent execute '!""C:\Program Files\Vim\vim63\diff" '
. opt . arg1 . ' ' . arg2 . ' > ' . arg3 . '"'
else
silent execute '!C:\Program" Files\Vim\vim63\diff" '
. opt . arg1 . ' ' . arg2 . ' > ' . arg3
endif
endfunction
" no backups.
set nobackup
set nowritebackup
" indenting.
set cin
set shiftwidth=2
Posted by yungyuc
at
10:37,
0 comment,
0 trackback.
根據 "What's new in Python 2.4":http://www.python.org/2.4/highlights.html . The CJKCodecs collection of East Asian codecs, maintained by Hye-Shik Chang, was integrated into 2.4.
Python 2.4 的發行時間大約會在今年之前,現在已經在 beta2 了。
有趣的測驗 ("link":http://www.bbspot.com/News/2004/10/extension_quiz.php)。我是
".exe":img:http://www.bbspot.com/Images/News_Features/2004/10/file_extensions/exe.jpg
You are .exe When given proper orders, you execute them flawlessly. You're familiar to most, and useful to all.
Posted by yungyuc
at
20:51,
0 comment,
0 trackback.
用一個簡單的 numpy 小程式,和一個 C 小程式,執行基本的陣列運算,來測試 numpy 和 C 的執行速度。
#! /usr/bin/env python
# -*- coding: UTF-8 -*-
import sys
import time
import codecs
from Numeric import *
if __name__ == '__main__':
loopnum = 10000000
sys.stdout.write(
"Constructing numpy double array (length %d)...\n" %
loopnum )
now = time.time()
a = arange(loopnum).astype(Float64)
sys.stdout.write( " for %f secs.\n" % (time.time() - now) )
sys.stdout.write( "python double array calculating...\n" )
now = time.time()
b = a + a
sys.stdout.write( " for %f secs.\n" % (time.time() - now) )
- C 程式 (請使用 gcc -c test test.c -lrt,進行編譯,以確保 clock_gettime() 會被連結進可執行檔)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(){
int i;
int loopnum = 10000000;
double j;
double *a;
struct timespec *now;
now = (struct timespec *)malloc(2*sizeof(struct timespec));
printf("Constructing C double array (length %d)...\n", loopnum);
clock_gettime(CLOCK_REALTIME, now);
a = (double *)malloc(loopnum*sizeof(double));
for (i=0; i<loopnum; i++){
a[i] = 0.0;
}
clock_gettime(CLOCK_REALTIME, now+1);
printf( " for %f secs.\n",
( (now+1)->tv_sec - now->tv_sec ) +
( (now+1)->tv_nsec - now->tv_nsec ) * 1.e-9);
printf("C double array calculating...\n");
clock_gettime(CLOCK_REALTIME, now);
for (i=0; i<loopnum; i++){
j = a[i] + a[i];
}
clock_gettime(CLOCK_REALTIME, now+1);
printf(" for %f secs.\n",
( (now+1)->tv_sec - now->tv_sec ) +
( (now+1)->tv_nsec - now->tv_nsec ) * 1.e-9);
}
在 Xeon 550 上的執行結果是:
Constructing numpy double array (length 10000000)...
for 3.299104 secs.
python double array calculating... for 2.623237 secs.
Constructing C double array (length 10000000)...
for 0.576618 secs.
C double array calculating... for 0.741613 secs.
numpy 的計算速度比 C 慢了大約 3.5 倍;陣列的建立速度則慢了大約 5.7 倍。
根據這個結果,如果想用 Python 開發計算程式,實用上一定要為計算核心撰寫 C module,否則其速度將是不可接受的。
眾人來到了國際展示場,參加動漫展示會。
斑目在排隊的時候,還沒進場就把手給扭傷了。不過為了限量版,忍吧。汗如雨下呀,場外的雨都停了呢。
唉呀,碰一下就倒了。辛苦了,最後還是送出了男人的托付呀....
笹原露出了像猫一様的表情耶,哇塞。
幸好我不是同類。哈哈哈。
次回 第四話 扮装と仮装の異化による心理的障壁の昇華作用 @10/31 (Sun.),cosplay 女大野小姐出場了。喔喔!
"official site":http://www.genshiken.info/
"webnt info":http://pc.webnt.jp/anime/disc_base.php?oid=402741
Posted by yungyuc
at
23:14,
0 comment,
0 trackback.
Sponser Screen 的那個黑帽子的確蠻可愛的呢 ^_^
舞夏和一夏一起去參加了學校辦的夏令營。然後是水的精靈。
美男子二人組也是同類事件的經驗者,這到現在應該是已經確定了的,但他們是兩個人呢。舞夏,當十二顆珠子全部變色之後,會發生什麼事呢?
次回 第五話 落涙の蕾花(らいか) @10/31 (Sun.),又過了呀... ^^;
"official site":http://www.uta-kata.com/
"webnt info":http://pc.webnt.jp/anime/disc_base.php?oid=402708
Posted by yungyuc
at
22:32,
0 comment,
0 trackback.