Skip to content

Instantly share code, notes, and snippets.

@watsy0007
watsy0007 / subtree_alias.sh
Created May 19, 2016 12:57
git subtree封装
function fetchcore() {
return $(echo $(git fetch core))
}
function pulcore() {
if [[ -z fetchcore ]] then
local branch
if [[ $1 ]] then
branch=$1
else
@watsy0007
watsy0007 / sleep.sh
Last active April 20, 2016 05:55
午睡脚本 ./sleep.sh 600 午睡10分钟
sleep $1
while true
do
sleep 1
say "wake up"
done
@watsy0007
watsy0007 / shell
Created August 21, 2015 18:35
rebuild emacs packages
M-: (byte-recompile-directory package-user-dir nil 'force)
@watsy0007
watsy0007 / pandoc
Last active August 29, 2015 14:19
convert markdown file to reveal.js keynote by pandoc for watsy0007 blog
pandoc -t revealjs -s the-hard-thing-about-hard-things.md -o the-hard-thing-about-hard-things.html --template=reveal.html -V revealjs-url='../public/reveal.js'