This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) ウェブエンジニア | |
【必須スキル】 | |
・Ruby on Railsを用いた開発経験 | |
・Linuxサーバの基本的知識、CUI操作 | |
・GitHubの利用経験 | |
【歓迎スキル】 | |
・大規模サービス運用経験、負荷試験の実施経験 | |
・HTML5、CSS3、JavaScriptを用いたUIの実装経験 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: | |
page_on: https://github.com/.* | |
selector: a | |
style: | |
border: solid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# `${SOURCE_BRANCH}` and `${DESTINATION_BRANCH}` are available in `link_to` on pull-request page. | |
# | |
Emoji: | |
page_on: https://github.com | |
link_text: ♥ Emoji | |
link_to: http://www.emoji-cheat-sheet.com/ | |
google-pull-request-branch-name: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# protocol (http or ws) | |
# protocol: ws # web WebSocket | |
protocol: http # use HTTP | |
# port (default 51234) | |
port: 51234 | |
# editor path | |
# editor: "gvim" # gvim (not tested) | |
# editor: "/Applications/MacVim.app/Contents/MacOS/mvim" # macvim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'webrick' | |
require 'tempfile' | |
Process.daemon | |
$EDITOR = "/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl" | |
$OPTIONS = ['-w'] | |
$PORT = 9292 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env ruby | |
# | |
# 特定のイベントに参加している人(の中でtwitterアカウントで登録している人)を一括でフォローする | |
# | |
# usage: | |
# ruby zusaar_event_follow.rb [event_id] | |
# | |
require 'zusaar' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# format is yaml. | |
# | |
# url regex: "link selector(jquery)" | |
# | |
# 2chのクッションページを飛ばす | |
http://ime.nu/.+: "a:first" | |
# pixivのクッションページを飛ばす |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# format (yaml) | |
# | |
# target_url_regex: redirect_to_url | |
# | |
# twitter を 開いたら google へ | |
# //twitter.com: https://google.com | |
# はてなブログのモバイル版ページをPCページへ | |
(http://d.hatena.ne.jp/.+/)touch/(.+): ${1}${2} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dev: | |
targets: | |
- http://www.iana.org/domains/example/foo | |
dev2: | |
label: ※画面は開発中のものです | |
targets: | |
- http://www.iana.org/domains/example/bar | |
ignores: | |
- http://www.iana.org/domains/example/barbaz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: | |
# みつをる(縦書ジェネレータ) - http://mitsuwo.net/ | |
# | |
# Commands: | |
# hubot mitsuwo [body],[author] | |
# hubot mitsuwo 寿司が<br>食べたいのです,名無し | |
request = require('request') # add `"request": "2.14.x"` to package.json | |
module.exports = (robot) -> |