Posts RSS Comments RSS 465 Posts and 1,351 Comments till now

Search Results for '例如'

輸入法開發實驗:地理資訊輸入法(二),更多的準備工作

為程式碼找一個家

到OpenFoundry上開一個計劃

將原始碼送進原始碼倉庫中

這個URL http://svn.openfoundry.org/ovgeoinfo

使用subversion

將repo目錄checkout到自己硬碟上

Ok, 我們可以把repo給checkout出來了:

我送進去了哪些東西

ovgeoinfo/
  trunk/
    License/
    Mk/
    Module/
        OVGeoInfo/
    SharedHeaders/

放在 trunk/ 裡的東西

選擇 BSD 授權

到此…

lukhnos :: Jul.01.2006 :: tekhnologia 技術或者藝術 :: 1 Comment »

輸入法開發實驗:地理資訊輸入法(一)

ilya先前和我討論到:有沒有可能拿OpenVanilla

問題分析

輸入法所可能提供的協助

[1]

OpenVanilla的詞彙管理架構

實作的方法

材料:地理資訊的 XML 資料表

<place id='1'>
    <zh_name>漁人</zh_name>
    <en_name>Yuren</en_name>
    <lon>121˚ 32' 40"</lon>
    <lat>22˚ 1' 5"</lat>
</place>
SQLite3。因此我們得先把XML煮成SQLite3能用的資料。

最懶的方法:XML::Simple

XML::Simple 模組了。

#!/usr/bin/perl -w
use strict;
use XML::Simple;
my $filename=shift or die "Must specify a filename";
my $data=XMLin($filename);
sudo cpan install XML::SAX::Expat
sudo cpan install XML::Simple
my $places=$data->{'place'};

for my $x (sort(keys(%$places))) {
    my $d = $places->{$x};

    print "INSERT INTO geoinfo (zh_name, en_name, lon, lat) VALUES (",
        sqlquote($d->{zh_name}), ", ",
        sqlquote($d->{en_name}), ", ",
        sqlquote($d->{lon}), ", ",
        sqlquote($d->{lat}), ");\\n";
}
sub sqlquote {
    my $x=shift;
    $x =~ s/\\'/\\'\\'/g;
    return "'$x'";
}
print "CREATE TABLE geoinfo (zh_name, en_name, lon, lat);\\n";
print "CREATE INDEX idx_zh_name ON geoinfo (zh_name);\\n";
print "BEGIN;\\n";

並在最後加上

print "COMMIT;\\n";
./gendb.pl source.xml | sqlite3 geoinfo.db

從這裡開始……

註解

    Abstract).

空間實驗:短期提供北京套房一間(八月初,兩週間)

lukhnos :: Jun.28.2006 :: res publica 公共生活 :: 9 Comments »

SSH頭腦體操(完結篇)

前一次

ssh -L 8888:server1:22 server2

ssh -p 8888 localhost

Mind-Bogging SSH (ssh -R over ssh -L)

翻譯:〈我們年老、無力、流於自滿〉(下)

原文出自德語《明鏡週刊》(Der Spiegel)2005年8月29日的訪談。翻譯的前一篇在這裡

Buy Cheap Windows 7 Professional (32 Bit) Software Buy Windows 7 Professional (32 Bit) License

Buy Cheapest Windows 7 Professional (32 Bit)

How To Buy Cheap Windows 7 Professional (32 Bit) in Windows 7 Professional (32 bit) online

lukhnos :: May.28.2006 :: res publica 公共生活 :: 7 Comments »

舊文:尋找一個好玩的角落

尋找一個好玩的角落 In Search of a Playful Corner

Buy Cheap Windows 7 Professional (32 Bit) Software They look to facilitate. where can i buy Adobe Creative Suite 4 Design Premium MAC (Macintosh) Buy Windows 7 Professional (32 Bit) Online

Buy Cheap Windows 7 Professional (32 Bit) Software

Order Downloadable Windows 7 Professional (32 Bit) Buy Cheapest Windows 7 Professional (32 Bit) Buy Discount Windows 7 Professional (32 Bit) Buy Windows 7 Professional (32 Bit) License buy Windows 7 Professional (32 bit) license

lukhnos :: May.26.2006 :: bon vivant 活 :: Comments Off

本來是想要講軟體開發的事……

HBR

Buy Cheap Windows 7 Professional (32 Bit) Software - Windows 7 in


Buy Cheap Windows 7 Professional (32 Bit) Software Buy Windows 7 Professional (32 Bit) License Buy Windows 7 Professional (32 Bit) Full Version How To Buy Cheap Windows 7 Professional (32 Bit Windows 7 Professional (64 bit) software )

lukhnos :: May.23.2006 :: tekhnologia 技術或者藝術 :: 5 Comments »

Chat log: 新的社會應用要怎麼誕生

lukhnos :: May.12.2006 :: tekhnologia 技術或者藝術 :: 2 Comments »

不會想再寫一次的常用軟體清單

最重要的工具

讓 OV 列名於簡體中文輸入法項目裡

修正套件 patch lukhnos :: Apr.21.2006 :: tekhnologia 技術或者藝術 :: 1 Comment »

« Prev - Next »