Skip to content

Instantly share code, notes, and snippets.

View notakaos's full-sized avatar

Nobutaka OSHIRO notakaos

View GitHub Profile
@notakaos
notakaos / gist:10628396
Last active August 29, 2015 13:59
capybara cheatsheet
last updated at 2014.04.14
### Clicking links and buttons
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click_on('Link Text') # clicks on either links or buttons
click_on('Button Value')
### Interacting with forms
@notakaos
notakaos / custom-homebrew-cask-td-agent2.md
Last active August 29, 2015 14:03
create custom homebrew cask td-agent2(fluentd)
$ brew cask create td-agent2
# /usr/local/Library/Taps/caskroom/homebrew-cask/Casks/td-agent2.rb
class TdAgent2 < Cask
  version '2.0.2'
  sha256 '00c090151f38ddecaf5174b5d31891fa8961375bc50b9537faec9e6728e2f51e'
@notakaos
notakaos / .tmux.conf
Last active October 7, 2016 03:13
.tmux.conf
# キーバインドを vi 風にする
setw -g mode-keys vi
## デフォルトのbind-key変更(お好みで)
set -g prefix C-t
unbind-key C-b
bind-key C-t send-prefix
# mouse mode
#set -g mode-mouse on
@notakaos
notakaos / .finished-upgraders
Created August 28, 2015 05:34
Meteor 1.1.0.3 で生成される .meteor ディレクトリの中身
# This file contains information which helps Meteor properly upgrade your
# app when you run 'meteor update'. You should check it into version control
# with your project.
notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
@notakaos
notakaos / .finished-upgraders
Created August 28, 2015 05:39
Meteor 1.2-rc.7 で生成される .meteor のファイル
# This file contains information which helps Meteor properly upgrade your
# app when you run 'meteor update'. You should check it into version control
# with your project.
notices-for-0.9.0
notices-for-0.9.1
0.9.4-platform-file
notices-for-facebook-graph-api-2
1.2.0-standard-minifiers-package
1.2.0-meteor-platform-split
@notakaos
notakaos / .js
Last active January 10, 2016 06:41
~/.eslintrc (2016.1.10 ver.)
// file: ~/.eslintrc
//
// $ npm install --save-dev eslint-config-airbnb eslint-plugin-react eslint
// or
// $ npm install -g eslint-config-airbnb eslint-plugin-react eslint
{
"parser": "babel-eslint",
"extends": "airbnb",
@notakaos
notakaos / client [slash] main.html
Last active March 20, 2016 08:30
Meteor 1.3 + React Simple Memo Step 1
<!-- client/main.html -->
<head>
<meta charset="utf-8" />
<title>Simple Memo</title>
</head>
<body>
<h1>Hello, Meteor World!</h1>
</body>
@notakaos
notakaos / bash
Last active March 20, 2016 08:29
Meteor 1.3 + React Simple Memo Step 2
meteor npm install --save react react-dom
meteor add [email protected]
@notakaos
notakaos / bash
Last active March 20, 2016 08:58
Meteor 1.3 + React Simple Memo Step 3-1
mkdir -p imports/ui/layouts
touch imports/ui/layouts/AppLayout.js
@notakaos
notakaos / bash
Last active March 25, 2016 16:19
Meteor 1.3 + React Simple Memo Step 3-2
mkdir -p imports/ui/components
touch imports/ui/components/Header.js