Skip to content

Instantly share code, notes, and snippets.

View pgmot's full-sized avatar
🏠
Working from home

mot pgmot

🏠
Working from home
View GitHub Profile
# Description:
# syussya
#
# Dependencies:
# "request"
# "cheerio"
#
# Configuration:
# None
#
# Description:
# taisya
#
# Dependencies:
# "request"
# "cheerio"
#
# Configuration:
# None
#
[alias]
graph = log --graph --branches --date=short --decorate=short --pretty=format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
st = status
gr = log --graph --branches --date=short --decorate=short --pretty=format:'%Cgreen%h %Creset%cd %Cblue%cn %Cred%d %Creset%s'
cm = commit
co = checkout
br = branch
remote-br = branch -r
delete-merged-branches = !git branch --merged | grep -v \\* | xargs -I % git branch -d %
gl = log --pretty='medium-reverse' --graph --name-status
@pgmot
pgmot / Makefile.latex
Last active December 13, 2015 23:49
なんかpdf作るために使ったり
PLATEX = platex
DVIPDFMX = dvipdfmx
BIBTEX = bibtex
TARGET = research_plan
PDF_READER = open
all: $(TARGET).dvi
pdf: $(TARGET).pdf
@pgmot
pgmot / gist:f77908bc04e6b55f7ad2
Created December 15, 2015 02:40
メールタイトルエンコードデコード
# エンコード
echo '件名' | nkf -jM
# デコード
echo '=?ISO-2022-JP?B?GyRCN29MPhsoQg==?=' | nkf -w -
@pgmot
pgmot / init-loader-func.sh
Created March 24, 2013 05:13
init-loaderでelをオンオフするやつ
function el-on {
for SCRIPT in $@
do
if [ ! -e ~/.emacs.d/inits-available/$SCRIPT.el ]; then
echo "$SCRIPT.el is not found";
else
rm -rf ~/.emacs.d/inits-enable/$SCRIPT.el ~/.emacs.d/inits-enable/$SCRIPT.elc
ln -s ~/.emacs.d/inits-available/$SCRIPT.el ~/.emacs.d/inits-enable/$SCRIPT.el
fi
done
@pgmot
pgmot / jquery.query-parameter.js
Created December 21, 2015 18:34 — forked from Nully/jquery.query-parameter.js
URLの?以降(GET値)を取得する
// jQuery版に書き換えた
(function($){
var queries = (function(){
var s = location.search.replace("?", ""),
query = {},
queries = search.split("&"),
i = 0;
if(!s) return null;
@pgmot
pgmot / gist:7543587
Created November 19, 2013 10:46
IRCからJenkinsおじさん叩き起こすよう
require "sinatra"
require "cinch"
require "yaml"
require "json"
config_file = ARGV.shift || "config.yml"
if not File.exist? config_file
puts "error: Can't find config file #{config_file}"
exit
end
@pgmot
pgmot / heater.rb
Created December 11, 2013 12:39
PCで暖かくするスクリプト
while true do
p "Hoooooooot"
end
@pgmot
pgmot / anonymous_code.rb
Last active February 6, 2016 14:44
Anonymous;Code
# Anonymous;Code
# http://anonymouscode.jp/
%w(49 6E 74 68 69 73 70 6C 61 63 65 69 6E 79 6F 75 72 6C 69 66 65 2C 6E 6F 65 71 75 61 6C 74 6F 74 68 65 6D 69 72 61 63 6C 65 74 68 61 74 77 61 73 61 72 72 69 76 65 64 61 74 74 68 69 73 73 61 76 65 70 6F 69 6E 74 2C 61 6E 64 49 61 6D 64 65 6C 69 67 68 74 65 64 6D 6F 72 65 74 68 61 6E 61 6E 79 74 68 69 6E 67 65 6C 73 65 2E 47 6F 74 68 72 6F 75 67 68 74 68 65 63 75 72 74 61 69 6E 6F 66 74 68 65 73 74 61 67 65 2C 61 6E 64 68 65 70 65 65 6C 65 64 6F 66 66 74 68 65 6D 61 73 6B 6F 66 73 74 72 69 6E 67 79 77 69 74 63 68 2E 57 6F 72 6C 64 6C 61 79 65 72 63 6C 6F 73 65 74 68 65 6C 6F 6F 70 2E 52 65 67 61 72 64 6C 65 73 73 68 61 63 6B 69 6E 67 47 6F 64 2E).each { |c| print c.to_i(16).chr + " " }