2013-02-01から1ヶ月間の記事一覧

ファゴット協奏曲一覧

英語のWikipediaにファゴット協奏曲の一覧が乗っていた。Bassoon concerto - Wikipedia, the free encyclopedia http://en.wikipedia.org/wiki/Bassoon_concerto ついでにソナタも。 Bassoon sonata - Wikipedia, the free encyclopedia http://en.wikipedia…

Windows8でCreateProcess系の関数

1: 779b3848 @!"ntdll!RtlCreateProcessParametersEx" 2: 77985c74 @!"ntdll!NtCreateProcessEx" 3: 77985c88 @!"ntdll!NtCreateProcess" 4: 779a151c @!"ntdll!RtlpCreateProcessRegistryInfo" 3: 77985c88 @!"ntdll!ZwCreateProcess" 2: 77985c74 @!"ntdll…

Windows:PEヘッダからたどって、DLLのエクスポート関数を列挙する

Windows7の32bitアプリ、Visual Studio2008で動作確認。 #include <stdio.h> #include <windows.h> #define RVAtoVA(type, base, offset) ((type)(PVOID)(((PCHAR)(base))+(offset))) int main() { DWORD dwModuleBaseAddr; PIMAGE_DOS_HEADER pDosHeader; PIMAGE_NT_HEADERS32 p</windows.h></stdio.h>…

Windowsでの関数呼び出し規約

Windowsでの関数の呼び出し規約は int (*func)(int); // -> int (__cdecl *)(int) int (WINAPI *func)(int); // -> int (__stdcall *)(int)[参考] Hello, world の解説 〜 WINAPI とは何か? __stdcall の説明 - Web-DB プログラミング徹底解説 http://keico…

X86のアセンブラを勉強

0から作るOS開発 ブートローダその6 セグメント http://softwaretechnique.web.fc2.com/OS_Development/bootloader6.html

qemuでVNCを使う時の設定

sudo ./x86_64-softmmu/qemu-system-x86_64 -vnc :0VNCクライアントはWindows7からUltraVNCを利用。接続先は「192.168.11.60::5900」と指定。 -vnc localhost:0ではうまく行かなかった。 -vnc localhost:0でやった時→接続できない [ksuzuki@kensv pVM]$ nets…

大江戸線でスマホの電波が入るようになってる!

地下鉄の大江戸線で、走行中にWebが見れる! すごく便利ー!!

自宅サーバにgitoliteを導入してみる

基本的には、下記サイト(というかREADME)そのまま。 ただ、最後の git clone git@host:gitolite-admin が出来ずにしばらくハマった。 自分のサーバ(localhost)の、git管理用アカウント"git"とは別のユーザからgit cloneしようした&sshのポートは51234に変更…

virt-managerでroot以外の一般ユーザで実行できるようにする

CentOS 6.2 上のKVMをリモートのvirt-managerから操作する - 気ままにインフラエンジニア http://oopsops.hatenablog.com/entry/2012/02/29/220417