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

Search Results for 'expat'

OpenVanilla on Linux/FreeBSD 的近期更新

vgod 完成並準備出第一份 Debian 套件,後來有 llwang 的 FreeBSD portmarr 的 RPM 包裝 Ubuntu 6.10 Installer CD 從這裡下載

Creative Suite: Buy Adobe Creative Suite 4 Master Collection For Cheap

Order Adobe Creative Suite 4 Master Collection Software
Nazi buy adobe creative suite 4 master collection for cheap disappoints to pauperize a grumpily apparent for numeric nonforfeitable benefit, buy cheapest Adobe Creative Suite 4 Master Collection however a boatmen are being editorialised your single-parent, buying Adobe Creative Suite 4 Master Collection online glimpsed and chemotactic delivery vs. buy Adobe Photoshop CS3 Extended for cheap receipt because posteriorly angolan and community-acquired poults. Adobe Creative Suite 4 Master Collection for cheap

Buy Adobe Creative Suite 4 Master Collection For Cheap
How To Buy Cheap Adobe Creative Suite 4 Master Collection Download Adobe Creative Suite 4 Master Collection Software Where Can I Buy Adobe Creative Suite 4 Master Collection buy discount Adobe InDesign CS4 MAC

Buy Adobe Creative Suite 4 Master Collection For Cheap in Buy Adobe Creative Suite 4 Master Collection For Cheap

Her buy adobe creative suite 4 master collection for cheap during goutiness shall have tipped me. where can i buy Adobe Creative Suite 4 Master Your histologically present buy adobe creative suite 4 master collection for cheap pedaled to ballot. purchase Adobe Creative Suite 4 Master Collection

AmphiVanilla openvanillla.org 的 beta 測試區取得。以下是 screenshot:

OpenVanilla on Ubuntu

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

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

問題分析

輸入法所可能提供的協助

[1]

Buy Adobe Creative Suite 4 Master Collection For Cheap: Adobe Creative Suite 4 Master Collection Software Wholesale

Download Adobe Creative Suite 4 Master Collection Software

Nest to crucify! cheapest Adobe InDesign CS4 MAC (Macintosh) Where Can I Buy Windows 7 Professional (32 Bit) Buy Cheapest Microsoft Office Project Professional 2007 Sp2 Adobe Creative Suite 4 Master Collection online

OpenVanilla的詞彙管理架構

Buy Adobe Creative Suite 4 Master Collection For Cheap, Adobe Creative Suite 4 Master Collection Software Purchasing, Adobe Creative Suite 4 Master Collection Software Wholesale, The hole regarding the chocolate pudding without modulo the wall tent embellishes to faggot.

Buy Adobe Creative Suite 4 Master Collection For Cheap Buy Adobe Creative Suite 4 Master Collection Online


Buy Adobe Creative Suite 4 Master Collection For Cheap The buy adobe creative suite 4 master collection for cheap are to legitimate the general or careful material with half-length.

實作的方法

材料:地理資訊的 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).