«前の日記(2008.07.02 / Wednesday) 最新 次の日記(2008.07.06 / Sunday)» 編集

Hena Hena Nikki

2003|05|06|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|10|11|12|
2012|01|02|03|04|05|06|07|08|10|12|
2013|01|02|04|06|

2008.07.05 / Saturday [長年日記]

* [computer/update] Adobe Reader 9.0.0

Adobe 純正の PDF ビューワ。 約 5 ヶ月ぶりの version up。

* [computer/update] LAME ver.3.98

非常に有名な MP3 エンコーダ。 約 2 年ぶりの version up。

* [computer/update] Becky! Internet Mail ver.2.47.01

Windows では定番の message user agent。 約 1 ヶ月半ぶりの version up。

* [computer] googletest - Google C++ Testing Framework

オレンジニュースから。 メモ。

Google's framework for writing C++ tests on a variety of platforms (Linux, Mac OS X, Windows, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, various options for running the tests, and XML test report generation.

* [computer] CHMOSX

オレンジニュースから。 メモ。

Chmosx is a Cocoa front-end to chmlib, a library for accessing Microsoft ITS/CHM format files.

CHM lib の存在すら知らなかった。

* [computer/update] DVDFab HD Decrypter ver.5.0.5.0

Windows 上で動く高機能な DVD 系メディアのリッピング・ツール。

* [computer] 茶筌用 IPADIC 2.6.3 を Mac OS X 10.5 にインストールする

事前に茶筌 2.3.3 以降をインストールしておくこと。

$ wget -c http://iij.dl.sourceforge.jp/ipadic/24434/ipadic-2.6.3.tar.gz
$ wget -c http://quruli.ivory.ne.jp/download/ipadic-2.6.3.diff.gz
$ zcat ipadic-2.6.3.tar.gz | tar xvf -
$ cd ipadic-2.6.3/
$ zcat ../ipadic-2.6.3.diff.gz | patch -p1
$ ./configure
$ make
$ sudo make install

読み・発音情報の不具合のパッチを作成したので、とりあえず書いてみただけ (個人的にはもう NAIST Japanese Dictionary に乗り換えた)。

* [computer] 茶筌用 IPADIC 2.7.0 を Mac OS X 10.5 にインストールする

事前に茶筌 2.3.3 以降をインストールしておくこと。

$ wget -c http://iij.dl.sourceforge.jp/ipadic/24435/ipadic-2.7.0.tar.gz
$ wget -c http://quruli.ivory.ne.jp/download/ipadic-2.7.0.diff.gz
$ zcat ipadic-2.7.0.tar.gz | tar xvf -
$ cd ipadic-2.7.0/
$ zcat ../ipadic-2.7.0.diff.gz | patch -p1
$ ./configure
$ make
$ sudo make install

こちらも、読み・発音情報の不具合のパッチを作成したので、とりあえず書いてみただけ。

* [computer/update] 茶筌 ver.2.4.3

BSD 系ライセンスの形態素解析器。

全く気付かなかったけど、先々月に出ていたようだ。

* [computer] TrueCrypt - Free open-source disk encryption software for Windows Vista/XP, Mac OS X, and Linux

メモ。

TrueCrypt is a software system for establishing and maintaining an on-the-fly-encrypted volume (data storage device). On-the-fly encryption means that data are automatically encrypted or decrypted right before they are loaded or saved, without any user intervention. No data stored on an encrypted volume can be read (decrypted) without using the correct password/keyfile(s) or correct encryption keys. Entire file system is encrypted (e.g., file names, folder names, contents of every file, free space, meta data, etc).

* [computer] 茶筌 2.4.3 を Mac OS X 10.5 にインストールする

事前に Darts (僕の環境では 0.32), iconv を入れておくと良い。

$ wget -c http://iij.dl.sourceforge.jp/chasen-legacy/31328/chasen-2.4.3.tar.gz
$ zcat chasen-2.4.3.tar.gz | tar xvf -
$ cd chasen-2.4.3/
$ sed -i -r 's|(ac_cv_lib_iconv_iconv=)no|\1yes|' configure
$ ./configure
$ chmod +x tests/*.sh
$ make && make check
$ sudo make install

CFLAGS はあまりいじらない方が良いかもしれない。

Mac OS X に最初からは入っていない GNU sed による処理の行は、テキスト・エディタで直接編集しても良い。

* [myself] 最近のお仕事

とても忙しいけど、非常に充実している。 前職でボロボロにされた技術に関して議論する・仕事を楽しむ感覚が少しずつだけど戻ってきたし、 良い経験を積むのに適した環境でもある し、本当に転職して良かった。 最初からこういった企業に入れば、転職なんて繰り返さないで済んだのだろうな。

細かな事では、先月初旬から取り組んでいたある作業の成果物が予想以上に良く出来ていたのが、けっこう嬉しかった。 確率統計の話なので事前の思惑通りの性能が出たのはかなりの幸運だったわけだけど、 自分のアイデアで着実に性能を向上させていけた感覚があるので、なかなかに満足感が高い。

* [computer] LAME 3.98 を Mac OS X 10.4 にインストールする

事前に ncurses, libsndfile を入れておいた方が良い。

$ wget -c http://jaist.dl.sourceforge.net/sourceforge/lame/lame-398.tar.gz
$ zcat lame-398.tar.gz | tar xvf -
$ cd lame-398/
$ ./configure --with-fileio=sndfile --enable-decode-layer1
$ make && make test
$ sudo make install

もちろん CFLAGS はお好みで。


  • この日記には本日 名の方が訪問してくださっているようです。 また、昨日は 名の方が訪問してくださったようです。
  • この日記の更新情報の取得には antenna.lirs を利用するのがおすすめです。