Quantcast
Channel: けんさんのIT知識 »プログラミング
Browsing latest articles
Browse All 7 View Live

プログラムのステップ数を数える

ステップ数を数えるツールは、Windows版だといろいろありますが、 サーバ上のソースをいちいちもってきてチェックするのが面倒です。 で、いろいろ探しているとEclipseのPluginとして提供されている Stepcounterというのがありました。 http://amateras.sourceforge.jp/cgi-bin/fswiki/wiki.cgi?page=StepCounter...

View Article


CentOS6にnode.jsをインストールする

サーバサイドJavascriptであるnode.jsをCentOS6.3にインストールしてみました。 参考URLは https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager wget...

View Article


Rails3ではlink_to_remoteがなくなっている

Rails3ではlink_to_remoteがなくなって、link_to :remote => true を使うようだ。

View Article

Gemのバージョンを変更する方法

Gemのバージョンを変更する方法 # gem update --system 1.6.2

View Article

CentOS5 で PHP5.3をインストールする方法

CentOSでyumで phpを指定してインストールすると 5.1が入ります。 # yum install php php53 と指定することで 5.3がインストールされます。 # yum install php53 ちょっとした覚書です。

View Article


ファイルの暗号化の方法(OpenSSL利用)

簡単。 http://builder.japan.zdnet.com/etc/20374272/ $ openssl enc -aes-256-cbc -salt -in foo.txt -out foo.enc -pass pass:xxxx $ openssl enc -d -aes-256-cbc -in foo.enc -pass pass:xxxx

View Article

RedmineのAPIでチケットを操作してみた。

RedmineのREST APIをつかってRedmineに対してチケットを登録してみました。 RESTClientとしては、お手軽に使える rest-client のUI版( http://code.google.com/p/rest-client/ ) を使用します。 あらかじめ、認証に必要なAPIキー(apikey)を個人設定画面から取得しておきます。 チケットの登録...

View Article
Browsing latest articles
Browse All 7 View Live