Skip to content

Instantly share code, notes, and snippets.

View m-nori's full-sized avatar

Miyakawa Norihisa m-nori

View GitHub Profile
@m-nori
m-nori / README.md
Created January 16, 2013 16:00
さくらVPSにJenkins入れてGithubのnode.jsをビルドする。

Jenkins上でnode.jsプロジェクトをテスト

さくらVPS上でGithubに入れたnode.jsプロジェクトをJenkins経由でテストする


Javaのインストール

入ってなければ入れる。

@m-nori
m-nori / README.md
Created February 5, 2013 06:13
Redsiインストール手順
@m-nori
m-nori / node.sh
Created February 15, 2013 11:18
node.jsのサービス登録用サンプル
#!/bin/sh
#
# node.js
#
# chkconfig: - 80 20
# description: node application server
# processname: node
# Source function library.
. /etc/rc.d/init.d/functions
@m-nori
m-nori / vmstatの時間表示付き
Created March 7, 2013 10:09
vmstatの時間表示付き
vmstat 1 | awk '{print strftime("%H:%M:%S"), $0}{fflush()}'
@m-nori
m-nori / keymap-default.json
Created April 22, 2013 01:40
Sublim Text2の設定
[
{ "keys": ["ctrl+shift+n"], "command": "new_window" },
{ "keys": ["ctrl+shift+w"], "command": "close_window" },
{ "keys": ["ctrl+o"], "command": "prompt_open_file" },
{ "keys": ["ctrl+shift+t"], "command": "reopen_last_file" },
{ "keys": ["alt+o"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]} },
{ "keys": ["ctrl+n"], "command": "new_file" },
{ "keys": ["ctrl+s"], "command": "save" },
{ "keys": ["ctrl+shift+s"], "command": "prompt_save_as" },
{ "keys": ["ctrl+f4"], "command": "close_file" },