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
いじぇくと ⏏ 名詞 | |
えすけーぷ ⎋ 名詞 | |
えんたー ⏎ 名詞 | |
おぷしょん ⌥ 名詞 | |
おると ⌥ 名詞 | |
こまんど ⌘ 名詞 | |
こんとろーる ^ 名詞 | |
しふと ⇧ 名詞 | |
たぶ ⇥ 名詞 | |
でりーと ⌫ 名詞 |
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
// [247,277 ... ] は選ばれる可能性のあるユーザの id を配列で指定しておく | |
javascript:(function(){var a=[247,277,310,337,349];var b=a[new%20Date().getTime()%a.length];$('#issue_assigned_to_id').val(b).trigger('change')})(); |
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
// [62,87 ... ] は選ばれる可能性のあるユーザの id を配列で指定しておく | |
javascript:(function(){var a=[62,87,138,161,179];var b=a[new%20Date().getTime()%a.length];$('#merge_request_assignee_id').val(b).trigger('change')})(); |
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
--- | |
- name: yum erase perl-Git | |
yum: name=perl-Git state=absent | |
- name: yum install dependencies | |
yum: name={{item}} | |
with_items: | |
- curl-devel | |
- expat-devel | |
- gettext-devel | |
- openssl-devel |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charst='utf-8'> | |
<title>TEST</title> | |
<script src="//code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script> | |
<style> | |
.box { | |
background: #000000; | |
display: none; |
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 'https://rubygems.org' | |
# Rails | |
gem 'rails', '4.1.4' | |
# Date | |
gem 'holiday_japan' | |
# Assets | |
gem 'coffee-rails' |
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
git checkout <revision> <path> |
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
function myFunc(){ | |
alert('HELLO'); | |
} | |
myFunc(); | |
// ↓ 同じ動きをする | |
var myFunc = function(){ | |
alert('HELLO'); | |
} |
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
svn status | grep '^!' | cut -c 9- | xargs svn delete |
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 'https://rubygems.org' | |
# Rails | |
gem 'rails', '4.1.0' | |
# Views | |
gem 'haml-rails' | |
# Assets | |
gem 'sass-rails' |