Skip to content

Instantly share code, notes, and snippets.

@gilchris
gilchris / ncare_onnuri.js
Last active October 24, 2017 16:12
온누리교회 nCare 이용에 도움을 주는 TemperMonkey용 스크립트
// ==UserScript==
// @name Onnuri nCare Attendance
// @namespace http://icare.ionnuri.org/
// @version 0.3
// @description try to take over the world!
// @author gilchris
// @match http://*/*
// @grant none
// ==/UserScript==
@gilchris
gilchris / redmine_issue_highlighter.js
Last active October 13, 2016 08:56
Add to row background color on Redmine issues
(function() {
var colors = {
"1": "#aea", // 신규
"2": "#bfb", // 진행
"3": "#ccc", // 해결
"4": "#ff9", // 의견
"5": "#aaa", // 완료
"9": "#efa", // 보류
"10": "#ff9" // 의견
};
@gilchris
gilchris / start_stop_skeleton.sh
Last active July 28, 2016 01:14
ShellScript Skeleton for service start and stop
#/bin/sh
case "$1" in
start)
;;
stop)
;;
restart)
$0 stop
$0 start