at_yasu's blog

ロード的なことを

2009-06-01から1ヶ月間の記事一覧

ZFS on swap

Want to encrypt your swap and still use ZFS? Nothing more trivial: WARNING: Due the way ZFS is currently implemented (also in Solaris), this might not work in low memory conditions (i.e. at those times you really need the swap space). See …

method_exchangeImplementations

method_exchangeImplementationsをすると、メソッドをオーバーライトっぽい事をする。 #import <Cocoa/Cocoa.h> #import <objc/runtime.h> @interface test : NSObject {} @end @implementation test - (void) loadTest { NSLog(@"test::loadTest"); } - (void) loadTestNew { [self loadTes</objc/runtime.h></cocoa/cocoa.h>…

Python のencode

+------------------+ | あああ | | (SJIS Encoding) | +------------------+ | ^ SJIS | +--------+ +--------+ | Encode | | Decode | +--------+ +--------+ | SJIS v | +------------------+ | あああ | | (Unicode) | +------------------+

文字列変換

@ichRaise というBotを作りました。こやつはコマンド+文字列を投げると、コマンドに従って文字列を変換する品物です。例えば、「u てすと」と投げると、「@.. %E3%81%A6%E3%81%99%E3%81%A6%E3%81%99」と返してくれます。注意としては壊れた文字でも返してく…

httpd.confのPrefork

よく忘れる事なので、メモ書き。 Prefork 1プロセス1リクエストをする方法。1.3の頃のと似てる 設定 MaxClients 応答する事の出来る同時リクエスト数=子プロセスの最大数*1 ServerLimitの値(デフォルトでは256?)を超えると不安定になる。 参考:mpm_commo…