This file contains 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
// ==UserScript== | |
// @name fontawesome copy icon name | |
// @namespace https://gist.github.com/kelly-apollo/1173743d2884dce0b8b1dd4b60125f23 | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author Kelly Apollo | |
// @match http://fontawesome.io/icons/ | |
// @grant GM_setClipboard | |
// ==/UserScript== |
This file contains 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 bash | |
# script: watch | |
# author: Mike Smullin <[email protected]> | |
# license: GPLv3 | |
# description: | |
# watches the given path for changes | |
# and executes a given command when changes occur | |
# usage: | |
# watch <path> <cmd...> | |
# |
This file contains 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
// ==UserScript== | |
// @name redmine-issue-text | |
// @namespace https://gist.github.com/kelly-apollo/3943a049fd9cebb2ad5abaa6327a9245 | |
// @version 0.2.2 | |
// @description try to take over the world! | |
// @author Kelly Apollo | |
// @match *://redmine.gizwits.com/* | |
// @match *://redmine.xtremeprog.com/* | |
// ==/UserScript== | |
/* jshint -W097 */ |
This file contains 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
system_profiler SPPowerDataType | grep Cycle | grep -oE '[0-9]+' | |
This file contains 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
// ==UserScript== | |
// @name redmine-issue-link | |
// @namespace https://gist.github.com/kelly-apollo/faf2e52d1f1d965e55eb | |
// @version 0.2.2 | |
// @description try to take over the world! | |
// @author Kelly Apollo | |
// @match https://gitlab.gizwits.com/* | |
// ==/UserScript== | |
/* jshint -W097 */ |
This file contains 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
let s:prevtabnum=tabpagenr('$') | |
augroup TabClosed | |
autocmd! TabEnter * :if tabpagenr('$')<s:prevtabnum && tabpagenr()>1 | |
\ | tabprevious | |
\ |endif | |
\ |let s:prevtabnum=tabpagenr('$') | |
augroup END |
This file contains 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
# 建议:官方文档对每个规则有简单易懂的例子说明,有时间的同学可以查阅一遍。 | |
# 官方文档 http://eslint.org/docs/rules/ | |
extends: 'eslint:recommended' | |
# 规则按照首字母在字母表升序排序 | |
rules: | |
# 单行代码块大括号后需要一个空格 | |
block-spacing: 2 |
This file contains 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
# 建议:官方文档对每个规则有简单易懂的例子说明,有时间的同学可以查阅一遍。 | |
# 官方文档 https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/README.md | |
# 默认配置 https://github.com/brigade/scss-lint/blob/master/config/default.yml | |
# 版本:0.41.0 | |
# 以下是个人偏好配置 | |
scss_files: "**/*.scss" | |
plugin_directories: ['release'] |
This file contains 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
# coding=utf8 | |
""" | |
# 功能 | |
列出指定时区从1970年01月01日至今,时区历史改动日期,以及夏令开始和结束日期。 | |
# 时区改动 |
This file contains 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
/** | |
* Open external links in new tab/window | |
*/ | |
// All http:// links should open in new tab/window. Internal links are relative. | |
var anchors = document.getElementsByTagName('a'); | |
for (var i = 0; i < anchors.length; i++) { | |
anchor = anchors[i]; | |
NewerOlder