2005-10-01から1ヶ月間の記事一覧

現場でのweb2.0

梅田さんのエントリーで概念の話が書かれていました。 id:umedamochio:20051029:p1 3ヶ月前にシリコンバレーに来て、 こちらの風にふれて、 いままで気づく事ができなかったものを 吸収する事ができた3ヶ月でした。 その中の一つに「web2.0」と言うものに…

CPAN 10

プログラマが満足しながら働ける企業

id:naoya:20051027#1130365600さんのblogに、「hatenaが日本語版googleを目指す」という記事のことについて書いてありました。 そのカウンターとして実際に同業者で 3,000 人になっても現場プログラマが満足しながら働ける企業というのが世の中に前例として…

vimrcの設定

ref

set smartcase set noincsearchset tabstop=4 set shiftwidth=4 set showmatchsyntax onset laststatus=2set statusline=%nnoremap j gj nnoremap k gknmap n nzz nmap N Nzz nmap * *zz nmap # #zz nmap g* g*zz nmap g# g#zzmap :bp map :bwif &encoding !…

We Are the Web

We Are the Web(http://www.wired.com/wired/archive/13.08/tech.html) 要約 言葉 the day before the IPO, nothing about the Web; the day after, everything.every document in the world should be a footnote to some other document, and computers co…

Perlでオブジェクト思考プログラミングメモ

らくだ本の5章のメモ パッケージ package宣言 あるpackageに対するpackage宣言が2箇所以上あってもいい。 →package宣言はブロックの残りの部分でコンパイラがどのシンボルテーブルを利用するか指定するだけ。pakage宣言は必ず完全なパッケージ名を宣言しな…

Web2.0's Blog

First of all, Technoriti's [web2con] tag. http://www.technorati.com/tag/web2conSecond, paul's site. http://paulmiller.typepad.com/thinking_about_the_future/He said in his first post "Getting started at Web 2.0" that As promised, here is a …

gmail error page

web2.0カンファレンスが始まった。web2con started!!

とても行きたかったけど、残念ながら今は 会場から1時間くらいにある会社でネットを見ています。さすがにと思ったのはリアルタイムで みんながブログを更新しまくっていること。今何が起こっているのか、 日本にいてもわかるなーと思いつつ、仕事をしつつ。…

O'Reilly Radar 2004

やっぱり聞いていても、分からないのでひとまず要約してみます。 原文 http://www.itconversations.com/transcripts/168/transcript-print168-1.html 要約(おもしろいところだけ) p.6 So that�s really what this talk is about. It�s really summed up by t…

プラグイン使い方。

http://www.jonabad.com/livecalendar/

プログラミングって。

工業製品としてのプログラム。 芸術としてのプログラム。

Web2.0の意味って

「platformとしてのWEB」が、今私がもっているイメージです。いままでは、0からWEB上のコンテンツを制作していくと言う スタイルだったという気がします。それがこれからは、既存のWEBサイトやサービスを利用して さらに意味のあるものを作っていくって言う…

Blogspotting BusinessWeekに。

こんなページもBlogに感心をいだいているんですね。 http://www.businessweek.com/the_thread/blogspotting/

What is Web2.0? (O'Reilly Radar)

要約 Web 2.0 is about systems that harness collective intelligence. 原文 I took a stab at answering the question What is Web 2.0? in an essay I wrote for distribution at our Web 2.0 Conference. The essay will disappoint those who look for …

FileIOの仕方で処理速度改善

遅い方法 open IN XXXX; while ( ) { XXXX; }masa:~/work/access/bin sakuramasteo$ time ./logInitDB.sh logfile real 13m42.614s user 11m43.880s sys 0m26.760s 早い方法 open IN XXXX; chomp( my @list = ); foreach (@list) { XXXX; } masa:~/work/acce…

pmファイル置き場のpath指定。perl5

以下のpath指定をする事。 PERL5LIB="pmファイルを置く場所" 今回は.bash_profileに指定した。

The O'Reilly Radar

再チャレンジ。 元ねたはhttp://www.itconversations.com/shows/detail168.html 要約

プレジデント10月号 書く技術より

丹羽宇一郎さんの記事。 文章は真似ることから始まる なんでも、真似ることから始まる。だから本をいっぱい読んでねという話。 何でもいいから毎日、実際に文章を書く 常に文章を書くようにしておけば、いつでも肩張らずにかけるでしょ。 練習が大切という話…

配列をタブ区切りで出力する。

$"="?t" print "@list?n";失敗例) 1 最後にタブが入る foreach ( @list ) { $resultLogData = $resultLogData."$_?t"; } 2 $"='?t'はエラー。タブにならない。 ?=¥

環境設定

#vi .profile or .bashrc POSTGRES_HOME=/usr/local/pgsql PGBIN=$POSTGRES_HOME/bin PGLIB=$POSTGRES_HOME/lib PGDATA=$POSTGRES_HOME/data MANPATH="$MANPATH":$POSTGRES_HOME/man PATH=$PGBIN:"$PATH" export PATH POSTGRES_HOME PGLIB PGDATA MANPATH