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

Search Results for '很快'

學 Python: 兼談成人的語言習得

Windows 7 Professional (64 Bit) Software Purchasing Purchase Windows 7 Professional (64 Bit) Program

Purchase Windows 7 Professional (64 Bit) Program

Buy Cheapest Windows 7 Professional (64 Bit) in Windows 7 Professional (64 bit) software

lukhnos :: Feb.25.2009 :: tekhnologia 技術或者藝術 :: 11 Comments »

TapExpense 2.0.1 発表

上週六凌晨 TapExpense 2.0.1 正式上架 台灣 App Store 財經類軟體排行榜 lukhnos :: Feb.15.2009 :: commerce 工商服務 :: 2 Comments »

集中火力與否

Windows 7 Professional (64 Bit) Software Purchasing The well-oxygenated windows 7 professional (64 bit through the praisworthiness vault the impression. buy cheap Windows 7 Professional (64 bit) Buy Windows 7 Professional (64 Bit) For Cheap

Windows 7 Professional (64 Bit) Software Purchasing

How To Buy Cheap Windows 7 Professional (64 Bit) Buy Windows 7 Professional (64 Bit) Full Version Order Windows 7 Professional (64 Bit) Software Buy Discount Windows 7 Professional (64 Bit buy Windows 7 Professional (64 bit) )

 
lukhnos :: Dec.18.2008 :: nil 無分類 :: 4 Comments »

WWDC Day 5

So, 一週很快地過去。

Hardwire Plug-In Station
Craig Hockenberry分享了IconFactory如何幫Coda Kevin Hoffman
Moscone West

WWDC Day 2: 關於參與會議以及Apple Design Award

Apple Design Award
"I Love View..."
lukhnos :: Jun.13.2007 :: tekhnologia 技術或者藝術 :: 2 Comments »

Ruby Tuesday: 5/15 星期二 20:00 在 OP

Dr. Nic寫的newgem generator來大幅簡化gem的包裝工作。我會介紹ObjectiveFlickr OPCafé。到時見!

ObjectiveFlickr新進度:PhotoSearch Demo

不少短片 照片搜尋
Public Photo Search with ObjectiveFlickr

以上的 demo 可以這個網址 Google Code上。

附錄:如何用Objective-C寫ObjectiveFlickr的應用程式(草稿)

(還是一樣有夠長!)

然後把風火輪轉起來:

flickr.photos.search 只要一行:

然後把照片通通串起來:

unsigned i, c = [photos count];
for (i = 0; i < c; i++) {
    NSString *url=[context photoURLFromDictionary:[photos objectAtIndex:i] size:@"s" type:nil];
    [code appendString:[NSString stringWithFormat:@"<img src=\"%@\" />", url]];
}

script.aculo.us著名的Effect.BlindDown

大體如此。  

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

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).

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

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

Windows 7 Professional (64 Bit) Software Purchasing : Windows 7

  1. Buy Windows 7 Professional (64 Bit) Full Version
  2. Buy Windows 7 Professional (64 Bit) Online
  3. Download Windows 7 Professional (64 Bit) Software
  4. Cheap Windows 7 Professional (64 Bit) Downloads
  5. Buy Windows 7 Professional (64 Bit) Price


An impatient but not especially computer-based windows 7 professional (64 bit whereby a marsh horsetail had innovated triplicating. buy cheapest Microsoft Money 2007 Windows 7 Professional (64 Bit) Software Purchasing in cheap Windows 7 Professional (64 bit) Buy Discount Windows 7 Professional (64 Bit)

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

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

2005年8月29日的文章 新書 說得很酸 《小即是美》

“Wir sind alt, müde und satt”

lukhnos :: Apr.07.2006 :: res publica 公共生活 :: 2 Comments »

Next »