«前の日(01-18) 最新 次の日(01-20)» 追記

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|

2005.01.19 / Wednesday

* [computer/update] ATI Catalyst ver.5.1

ATI Radeon 用公式ドライバ for Windows。

会社の dual Xeon 環境の XP に入れたらエラーかましてくれましたよ。 ;(

* [computer/update] GNU Common Lisp ver.2.6.6

GNU の Common Lisp 環境。 約 5 ヶ月ぶりの version up。

* [myself] 来月の予定

有給休暇が 16 日余っているので 2/3 (Thu) が最終出勤日になりそう。 いちおう 2/28 (Mon) に今の会社に少し顔を出すけど、かなりゆったりとした時間を過ごせること間違いなし。 :)

この機会にダラダラと国内旅行するつもりです。 まだ北陸地方は未経験なので、ぜひ行ってみたいと思ってます。

* [myself] 最近のお仕事

先週と似た様な感じ。 某プロジェクトにおけるドキュメント作成、 引き継ぎ作業に UI チェックのためのやりとり。

退職願を提出した翌日、退職理由に関する面談があった。 今回は前回と違って話して意味のある人物が相手だったので、 僕の思ったことや感じたこと、そして呆れて辞めることを伝えた。

ドキュメント書き、こういった形のものは初めてなので戸惑ってる。 集中して作業できる時間がとり切れてないのもあって、進み具合はもう一つ。


2008.01.19 / Saturday

* [computer/update] Cyberduck ver.2.8.3 Build 3437

Mac OS X 上で動く FTP, SFTP クライアント。 約 1 週間ぶりの version up。

* [computer/update] EB Library ver.4.3.1

EB/EPWING 形式の CD-ROM 書籍を扱うためのライブラリ。

* [computer/update] Winamp ver.5.52

skin により見た目を変えられる多機能なメディア・プレーヤ for Windows。

* [computer/update] QuickTime Alternative ver.2.3.0

QuickTime 形式のメディア・ファイルを再生するライブラリなどの詰合せ for Windows。

* [computer] オーム社開発部での開発体制

Geek なページの記事。 後で読むためにメモ。

* [computer] GNU which 2.19 を Mac OS X 10.4 にインストールする

CFLAGS はお好みで。

$ wget -c http://ftp.gnu.org/gnu/which/which-2.19.tar.gz
$ zcat which-2.19.tar.gz | tar xvf -
$ cd which-2.19/
$ ./configure
$ make
$ sudo make install

* [computer] LZMA Utils

gzip, bzip2 と互換性のある LZMA 圧縮ユーティリティ。

  • Average compression ratio of LZMA is about 30% better than that of gzip, and 15% better than that of bzip2.
  • Decompression speed is only little slower than that of gzip, being two to five times faster than bzip2.
  • In fast mode, compresses faster than bzip2 with a comparable compression ratio.
  • Achieving the best compression ratios takes four to even twelve times longer than with bzip2. However. this doesn't affect decompressing speed.
  • Very similar command line interface than what gzip and bzip2 have.
  • The patch for GNU tar integrates LZMA compression with the tar command in the same way as with gzip and bzip2.
  • Free software licensed under the GNU GPL (actually most parts are under the GNU LGPL).

* [computer] LZMA Utils 4.32.4 を Mac OS X 10.4 にインストールする

CFLAGS はお好みで。

$ wget -c http://tukaani.org/lzma/lzma-4.32.4.tar.gz
$ zcat lzma-4.32.4.tar.gz | tar xvf -
$ cd lzma-4.32.4/
$ ./configure
$ make && make check
$ sudo make install

* [computer/update] FreeBSD 6.3

UNIX 系 OS の有力な選択肢の一つ。 約 12 ヶ月ぶりの version up。


2009.01.19 / Monday

* [computer/update] Libxml2 ver.2.7.3

動作実績の非常に豊富な C 向け XML パーサ。

* [computer/update] GnuPG 2.0.10

PGP を置き換える完全かつフリーなソフトウェア。

* [computer] 内部設計を一新した Roland の「UA-25EX」を試す (Impress AV Watch)

メモ。 現用の UA-4FX の調子が悪くなってきたので、買い替え候補の情報収集。

このオーディオ・インターフェイスが USB 2.0 だったら、 もう迷うことなく買っちゃうんだけど…。


2010.01.19 / Tuesday

* [computer] Re: GNU bash 4.1 を Mac OS X 10.6 にインストールする

パッチが出たので組み立て直し。

事前に readline, gettext, iconv (と必要であれば ncurses) を入れておくと良い。

$ wget -c http://ftp.gnu.org/gnu/bash/bash-4.1.tar.gz
$ gzip -cd bash-4.1.tar.gz | tar xvf -
$ mkdir bash-4.1/patches
$ cd bash-4.1/patches/
$ wget -c 'ftp://ftp.gnu.org/gnu/bash/bash-4.1-patches/bash41-*'
$ rm *.sig
$ cd ../
$ foreach f ( ./patches/bash41-* )
foreach? patch -p0 < $f
foreach? end
$ ./configure --enable-alias --enable-brace-expansion --enable-extended-glob --enable-history --enable-job-control --enable-multibyte --enable-progcomp --enable-select --without-bash-malloc --with-installed-readline CFLAGS_FOR_BUILD="$CFLAGS"
$ make && make test
$ sudo make install

CFLAGS などはお好みで。

* [computer] Re: GNU Readline Library 6.1 を Mac OS X 10.6 にインストールする

パッチが出たので組み立て直し。

事前に ncurses を入れておくと良い。

$ wget -c ftp://ftp.gnu.org/gnu/readline/readline-6.1.tar.gz
$ gzip -cd readline-6.1.tar.gz | tar xvf -
$ mkdir readline-6.1/patches
$ cd readline-6.1/patches/
$ wget -c 'ftp://ftp.gnu.org/gnu/readline/readline-6.1-patches/readline61-*'
$ rm *.sig
$ cd ../
$ foreach f ( patches/readline61-* )
foreach? patch -p0 < $f
foreach? end
$ ./configure --enable-multibyte
$ make
$ sudo make install

CFLAGS などはお好みで。

* [computer/update] Audacity ver.1.3.11

マルチプラットホームなフリーのオーディオ編集ソフト。 開発版。


2013.01.19 / Saturday

* [computer] opal 2013-01-12 を Mac OS X 10.6 にインストールする

$ curl -L --retry 8 -O http://www.tkl.iis.u-tokyo.ac.jp/~ynaga/opal/opal-2013-01-12.tar.xz
$ xz -cd opal-2013-01-12.tar.xz | tar xvf -
$ cd opal-2013-01-12
$ bash configure
$ make
$ sudo make install

* [computer] libpaper 1.1.24+nmu2 を Mac OS X 10.6 にインストールする

CFLAGS などはお好みで。

$ curl -L --retry 8 -O http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.24+nmu2.tar.gz
$ gzip -cd libpaper_1.1.24+nmu2.tar.gz | tar xvf -
$ cd libpaper-1.1.24+nmu2/
$ bash configure
$ make
$ sudo make install

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