〜2006年2月下旬〜
さてインストールと思ったら、 トラブってるようで svn coがタイムアウトしてしまう。後日試そう。
だんだん悪い方向へ。のどがさらに痛い。
hamなのにいつのまにか勝手にspamとして学習されてしまうという問題に対処するために、SpamAssassinの自動学習をオフにすることにした。 ~/.spamassassin/user_prefsにbayes_auto_learn 0を追加。 これでヘッダのX-Spam-Statusフィールドのautolearnはdisabledになる。
今日はあっさりsvn coもできた。 でも P4問題 にぶちあたった。 というわけでP4の人は注意。 あちこちこういうのがあるというので修正されしだい直にコミットされるでしょう。
まだmakeできただけだが。
- About:
- cutmp3 is a small command line MP3 editor. It lets you select sections of an MP3 interactively or via a timetable and save them to separate files without quality loss. Silence and ID3 tag searching are also possible. For playback it uses mpg123. The program works with VBR files and files bigger than 2GB. There is also a simple frontend for it, called xcutmp3.
mp3じゃなくてogg/vorbis用が欲しかったりして。
- Changes:
- An extraneous call to logger_getLevel from logger_addAppender was removed. A serious bugfix from 1.3.3pre was backported: when log4sh is configured from a properties file, there are problems when declaring more than one appender when there are no spaces after the commas in the rootLogger declaration.
- About:
- nedmalloc is an alternative malloc implementation for multiple threads without lock contention based on dlmalloc 2.8.3. It is more or less a newer implementation of ptmalloc2, the standard allocator in Linux (which is based on dlmalloc 2.7.0) but also contains a per-thread cache for maximum CPU scalability.
Updating: compat-db i386 4.2.52-2.FC4 updates-released 839 k fftw i386 3.1-3.fc4 extras 864 k gawk i386 3.1.4-5.4 updates-released 1.7 M gnupg i386 1.4.2.1-3 updates-released 1.8 M gnupg2 i386 1.9.20-2.fc4 extras 895 k hpijs i386 1:0.9.8-3.2 updates-released 192 k kdebase i386 6:3.5.1-0.3.fc4 updates-released 28 M kdebase-devel i386 6:3.5.1-0.3.fc4 updates-released 108 k kdemultimedia i386 6:3.5.1-0.2.fc4 updates-released 6.6 M libsane-hpaio i386 0.9.8-3.2 updates-released 111 k module-init-tools i386 3.2-0.pre9.0.FC4.4 updates-released 385 k udev i386 071-0.FC4.3 updates-released 1.5 M xterm i386 208-1.FC4 updates-released 190 k Transaction Summary ============================================================================= Install 0 Package(s) Update 13 Package(s) Remove 0 Package(s) Total download size: 43 M
昨日からMy Feedsのアイコンが微妙に違うなと思っていたらそういうことだったのか。 試しているうちにURLが変更になってるサイトを発見したり。 たまに見直さないとだめだね。
意外と知られてないrequireの挙動。
require 'engine.rbx'
と書いた場合、たとえengine.rbxというファイルがライブラリパスにあってもロードされない。 なぜならRubyはengine.rbx.rbやengine.rbx.soを探すから。 だから設定ファイルをrequireで済まそうとして
require File.expand_path('~/.foorc')
としても~/.foorc.rb(.so)が対象となる。こういうときはloadを使うしかない。
いつのまにかhttps:に対応していた。 Fromにカーソルを持ってくと無駄にポップアップしていたあの邪魔な挙動もなくなってる。
やっと来た。分厚い。持って歩くには無理があるな。
rcov is a tool for simple code coverage analysis in Ruby. It improves on the better known coverage[1] in a number of ways:
- 20-300 times faster: typically, the program being inspect runs only ~3 times slower than without rcov (i.e. not 200 times slower as with some other tools)
- more convenient interface
- prettier output (since 0.2.0)
- more accurate coverage information through code linkage inference using simple heuristics
- additional features like bogo-profile mode, colorblind-friendliness...
なんかすごく速くなってる。