memo.xight.org

2008-02 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
最近 7 日分 / 今月の一覧

2008-02-20 Wed

FireGestures - 拡張可能なマウスジェスチャーFirefoxアドオン

- Reference
FireGestures :: Firefox Add-ons
https://addons.mozilla.org/ja/firefox/addon/6366

FIREGESTURES :: Get Scripts
http://www.xuldev.org/firegestures/getscripts.php?lang=ja

- via
Firefoxマウスジェスチャーの新定番「FireGestures」 :教えて君.net
http://www.oshiete-kun.net/archives/2008/02/firefoxfiregestures.html

カテゴリ: [Firefox]

BlazeDS - Adobeによるオープンソースのメッセージングサーバ

- Summary
Adobe LiveCycle Data Servicesの一部機能をオープンソース化.
ライセンスはLGPL.
Tomcat6上で動作.

- Reference
Adobe Labs - BlazeDS
http://labs.adobe.com/technologies/blazeds/

- via
@IT - Adobe、オープンソースプロジェクト「BlazeDS」を公開
http://www.atmarkit.co.jp/news/200712/13/adobe.html

masuidrive on rails - 2008-02-13 - [予告編 30分]AIRとBlazeDSとRubyでメッセンジャーを作る[129ページ]
http://blog.masuidrive.jp/index.php/2008/02/13/air_blazeds_ruby/

カテゴリ: [Develop]

Microsoft Office Binary (doc, xls, ppt) File Formats

- Summary
Microsoft Officeのファイルフォーマット仕様が公開.

- Reference
Microsoft Office Binary (doc, xls, ppt) File Formats
http://www.microsoft.com/interop/docs/officebinaryformats.mspx

カテゴリ: [Microsoft Office]

2008-02-12 Tue

Computer Vision for Artists and Designers

- Reference
Computer Vision for Artists and Designers: Pedagogic Tools and Techniques for Novice Programmers - Flong
http://www.flong.com/texts/essays/essay_cvad/

カテゴリ: [Proc55ing]

Google Social Graph API - 公開情報から人のつながりを推測

- Demo
Social Graph API Demo - My Connections
http://socialgraph-resources.googlecode.com/svn/trunk/samples/findcontacts.html

- Reference
socialgraph-resources - Google Code
http://code.google.com/p/socialgraph-resources/

- via
秋元@サイボウズラボ・プログラマー・ブログ: Google Social Graph API登場 - 公開情報から人のつながりを探せるように
http://labs.cybozu.co.jp/blog/akky/archives/2008/02/google-social-graph-api.html

マイコミジャーナル - Googleついに友達を検索するAPIを公開 - Social Graph API
http://journal.mycom.co.jp/news/2008/02/04/032/index.html

カテゴリ: [Google][WebService]

MobilePictogramConverter - PHPの絵文字変換ライブラリ

- Reference
MobilePictogramConverter 絵文字変換ライブラリ
http://php-develop.org/MobilePictogramConverter/

PHPとか (開発者のblog)
http://d.hatena.ne.jp/ryster/

カテゴリ: [PHP][Mobile]

YAPC::Asia 2008

- Reference
Welcome: YAPC::Asia 2008 - May 15-16th in Tokyo, JAPAN
http://conferences.yapcasia.org/ya2008/

カテゴリ: [Perl]

2008-01-23 Wed

壊れたHDDからデータを取出す方法

- 準備
umount して作業する.
起動しない,または umount できなければ,別PCに接続して作業する.

- ddコマンドの実行
/dev/hdb3 を hdb3.imgにイメージファイルとして保存する.

# dd if=/dev/hdb3 of=hdb3.img bs=512 conv=noerror,sync


- イメージファイルにfsck

$ fsck hdb3.img


- エラー修復後のイメージファイルをマウントする

# mount -o


- Reference
ぴょぴょぴょ? - 壊れたHDDからデータを取出す方法
http://d.hatena.ne.jp/pyopyopyo/20061118/p1

カテゴリ: [Linux]

Battlefield Heroes - フリーのFPS

- Reference
Battlefield Heroes
http://www.battlefield-heroes.com/

- via
4Gamer.net - EA DICE,Battlefieldシリーズ新作の無料FPS「Battlefield Heroes」を発表(Battlefield Heroes)
http://www.4gamer.net/games/046/G004622/20080122004/

カテゴリ: [Game]

Warsow - GPLのFPS

- Reference
Warsow - A Fast Paced First Person Shooter Game
http://www.warsow.net/

Warsow Japanese Wiki
http://wassou.net/warsowiki/

- via
スラッシュドット ジャパン | フリーソフトウェアFPS、Warsow 0.4 リリース
http://slashdot.jp/article.pl?sid=08/01/22/0959201

カテゴリ: [Game]

mysqlでテーブル名やカラム名を補完する方法

- Summary
mysqlコマンドを--auto-rehashオプションをつけて起動する

% mysql --auto-rehash


my.cnfの[mysql]セクションにauto-rehashと書いておく

[mysql]
auto-rehash



- Reference
mysqlコマンドで、テーブル名とかカラム名の補完(completion)をする方法 - (ひ)メモ
http://d.hatena.ne.jp/hirose31/20080122/1200974354

カテゴリ: [MySQL]

Linuxでネットワークスループットを改善する

- /etc/sysctl.conf

net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_syncookies = 1
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 4096 87380 16777216
net.ipv4.tcp_wmem = 4096 65536 16777216



- sysctlのすべての項目と値を表示

# sysctl -a


- sysctlの項目を指定して表示

# sysctl -q net.ipv4.tcp_window_scaling


- rebootしないで有効化

# sysctl -p /etc/sysctl.conf


- 項目を指定して有効化 (rebootで元に戻る)

# sysctl -w net.ipv4.tcp_window_scaling=1


- Reference
builder by ZDNet Japan - Linuxのネットワークスループット改善法教えます
http://builder.japan.zdnet.com/news/story/0,3800079086,20365515,00.htm

カテゴリ: [Linux]

2007-11-28 Wed

ChangeLogメモ 5周年

- 記録

Line 80902 (行)
Entry 5575 (エントリ)
File size 2731895 (byte)

- 備考
ChangeLog開始日は[2002-11-28-1]
ChangeLog開始1周年は[2003-11-28-1]
ChangeLog開始2周年は[2004-11-28-1]
ChangeLog開始3周年は[2005-11-28-1]
ChangeLog開始4周年は[2006-11-28-11]

10000行達成は[2003-10-04-1]
20000行達成は[2004-05-06-23]
30000行達成は[2004-09-10-12]
40000行達成は[2004-12-26-1]
50000行達成は[2005-07-19-25]
60000行達成は[2006-01-30-5]
70000行達成は[2006-07-26-8]
80000行達成は[2007-02-15-4]

カテゴリ: [ChangeLogメモ]

2007-11-06 Tue

vsftpd で接続ユーザ制限

- /etc/vsftpd/vsftpd.conf

# /etc/vsftpd.user_listを使用しない
# /etc/vsftpd.ftpusersで指定したユーザを拒否する
userlist_enable=NO

# /etc/vsftpd.user_listで指定したユーザのみログインを許可する
# /etc/vsftpd.ftpusers で指定したユーザは,認証でエラーとなる
userlist_enable=YES
userlist_deny=NO

# /etc/vsftpd.user_listで指定したユーザのみログインを拒否する.
# /etc/vsftpd.user_listで指定されていないユーザはログインを許可する.
# /etc/vsftpd.ftpusers で指定した場合,パスワードの入力は求められるが,接続は拒否する
userlist_enable=YES
userlist_deny=YES



- Reference
vsftpd(RedHat9)
http://www.aritia.org/hizumi/dsl/page_23.htm

カテゴリ: [Linux]

お腹がHELLぜ! - 暴君ハバネロの旨スープ キャンペーンRPG

- Summary
サントリーと東ハトのコラボレーションによる旨辛いスープ,
「暴君ハバネロの旨スープ」のキャンペーン用RPG.

- Reference
Suntory - お腹がHELLぜ!
http://boukunsoup.jp/

Suntory News Release No.9941
http://www.suntory.co.jp/news/2007/9941.html

Wikipedia - スコヴィル値

カテゴリ: [Game]

2007-11-01 Thu

GVimでフォントの設定

- vimrc

if has("gui_win32")
    set guifont=MS_ゴシック:h9:cSHIFTJIS
    set printfont=MS_ゴシック:h10:cSHIFTJIS
    autocmd GUIEnter * winpos 200 100
    autocmd GUIEnter * winsize 100 50
endif


- Reference
gVim覚書
http://www002.upp.so-net.ne.jp/janus/vim.html

カテゴリ: [vim]

GVim Portable - 持ち運べるGVim

- Reference
GVim Portable Home Page
http://portablegvim.sourceforge.net/

SourceForge.net: Portable GVim
http://sourceforge.net/projects/portablegvim/

カテゴリ: [vim]
2008-02 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

Color Reference

ChangeLogを検索
携帯電話からアクセス!

カテゴリ

最近の話題

リンク

過去ログ

Google

QR Code

Since
2002-11-28
Update
2008-02-20 21:23
Copyright © 2005 xight.org All Rights Reserved.