2014-04-01から1ヶ月間の記事一覧

Ubuntu14.04でThinkPadのキーボードを使うときの設定

/usr/share/X11/xorg.conf.d/20-thinkpad.confを作成して以下を記述 Section "InputClass" Identifier "Trackpoint Wheel Emulation" MatchProduct "TrackPoint" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "EmulateWheel" "true" Option "…

Drupalのタブを新しく追加する方法

↑こんな感じに追加する方法。 $item = array( 'link_path' => 'sandbox', 'link_title' => 'sandbox', // リンクのタイトル 'menu_name' => 'main-menu', // main-menuに追加 'module' => 'mymodule', 'router_path' => 'sandbox' ); menu_link_save($item);…

カスタムモジュールを定義する際の.infoファイル内のfiles[]

.infoファイルに files[] = test.inc と書いた場合にはクラスかインターフェースの宣言しか 読み込まれないらしい。 フツーのfunction読もうとしたら「そんな関数ねーから」って怒られた。 参考: https://drupal.org/node/542202#files

Windows8にknife-soloをインストールする。

win32-apiのくだりでハマって2時間ほど消費。 下のサイトがどストライクで役に立った。 マジでありがとうございます。 それにしても、Windowsでrubyってホントにつらい。 参考: http://ict.matchy.net/2014/04/windows-vagrant-knife-solo-20144.html 4/21追…