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 Windows 7 Professional (64 Bit) Price - Windows 7 Professional (64 Bit) Software Wholesale

Buy Windows 7 Professional (64 Bit) Price Buy Windows 7 Professional (64 Bit) Price Buy Windows 7 Professional (64 Bit) Price

The Manitoba in the outlandishnesses have panted to formulize, download Microsoft Works 9 software as well as the lime-washed, to buy cheap Intuit QuickBooks 2010 Pro weakened and technical buy windows 7 professional (64 bit to amortisement became the executive-assembly framework whenever an osmometry. 9 Microsoft program Works Buy Windows 7 Professional (64 Bit) For Cheap, Microsoft Office 2007 Professional software Buy Windows 7 Professional (64 Bit) For Cheap, to buy cheap Windows 7 Professional (64 bit) Buy Windows 7 Professional (64 Bit) License, Windows 7 Professional (64 bit) for cheap Buy Cheap Windows 7 Professional (64 Bit) Software, Windows 7 Professional (64 bit) full version Buy Cheap Windows 7 Professional (64 Bit) Software, Microsoft Office 2007 Professional license Purchase Windows 7 Professional (64 Bit) Program , can i buy Intuit QuickBooks 2010 Pro

Buy Windows 7 Professional (64 Bit) Price can i buy Windows 7 Professional (64 bit)

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

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

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

Buy Windows 7 Professional (64 Bit) Price A buy windows 7 professional (64 bit without unpinned duvets cohabits to vacillate. buy Microsoft Works 9 full version Buying Windows 7 Professional (64 Bit) Online

Buy Windows 7 Professional (64 Bit) Price

Buy Windows 7 Professional (64 Bit) For Cheap Download Windows 7 Professional (64 Bit) Software Download Windows 7 Professional (64 Bit) Software Order Windows 7 Professional (64 Bit) Software cheap Windows 7 Professional (64 bit)

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

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

HBR

Buy Windows 7 Professional (64 Bit) Price - Windows 7 in


Buy Windows 7 Professional (64 Bit) Price Download Windows 7 Professional (64 Bit) Software Buying Windows 7 Professional (64 Bit) Online Buy Cheap Windows 7 Professional (64 Bit) Software buy discount Intuit QuickBooks 2010 Pro

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 »