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
ふわ玉トマト炒め,http://cookpad.com/recipe/3909974 | |
超簡単!カルボナーラ風釜玉うどん,http://cookpad.com/recipe/3912667 | |
新定番★土用スタミナ!シャキッとふわ玉丼,http://cookpad.com/recipe/3912763 | |
ウイスキーメロン,https://twitter.com/nikka_jp/status/762951581553655808?s=09%EF%BC%89%E3%82%92%E3%83%81%E3%82%A7%E3%83%83%E3%82%AF | |
オニオンスープ,https://twitter.com/lizhi3/status/763808031645675520?s=09%EF%BC%89%E3%82%92%E3%83%81%E3%82%A7%E3%83%83%E3%82%AF |
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
#!/bin/bash -eu | |
sudo echo "" | |
echo "Is server? [y/N]: " | |
read IS_SERVER | |
echo "have systrade? [y/N]: " | |
read HAVE_SYSTRAGE | |
echo "have chinachu? [y/N]: " | |
read HAVE_CHINACHU | |
echo "Is for work? [y/N]: " | |
read IS_FOR_WORK |
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
Title : Fooooo | |
Author : You | |
Affiliation : Research institute | |
Email : [email protected] | |
Colorizer : javascript | |
Bib style : plainnat | |
Bibliography : example | |
Logo : True |
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 vim_auto_window_split(){ | |
COMMAND="windo execute 'argument '. winnr()" | |
case "$#" in | |
"1" ) vim $@ ;; | |
"2" | "3" ) vim -o $@ ;; | |
"4" ) vim -o2 $@ -c:{vsp,wincmd\ j,vsp} -c $COMMAND ;; | |
"5" ) vim -o3 $@ -c:{vsp,wincmd\ j,vsp} -c $COMMAND ;; | |
"6" ) vim -o3 $@ -c:{vsp,wincmd\ j,vsp,wincmd\ j,vsp} -c $COMMAND ;; | |
"7" ) vim -o3 $@ -c:{vsp,vsp,wincmd\ j,vsp,wincmd\ j,vsp} -c $COMMAND ;; | |
"8" ) vim -o4 $@ -c:{vsp,wincmd\ j,vsp,wincmd\ j,vsp,wincmd\ j,vsp} -c $COMMAND ;; |