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
while true do | |
p "Hoooooooot" | |
end |
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
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 |
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 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 |
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
PLATEX = platex | |
DVIPDFMX = dvipdfmx | |
BIBTEX = bibtex | |
TARGET = research_plan | |
PDF_READER = open | |
all: $(TARGET).dvi | |
pdf: $(TARGET).pdf |
NewerOlder