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
# Execution part {{{ | |
_s_is_exec=1 | |
_sf_check_args_first () { # {{{ | |
while [ $# -gt 0 ];do | |
case $1 in | |
"-h"|"-N"|"-m"|"-p"|"-F"|"-v" ) _s_is_exec=2;shift;; | |
"-n" ) _s_is_exec=0;shift;; | |
"-c" ) _SENTAKU_CHILD=1;shift;; | |
* )break;; | |
esac |
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
diff --git a/.themes/octogray b/.themes/octogray | |
index 69e224c..a519ddb 160000 | |
--- a/.themes/octogray | |
+++ b/.themes/octogray | |
@@ -1 +1 @@ | |
-Subproject commit 69e224c5def49917f7fe5527532f8cb50614e81f | |
+Subproject commit a519ddbdb6a3b40e48ef7713c3be5d15f853b880 |
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
#include <iostream> | |
for(int i=0;i<10;i++){ | |
std::cout << "codeblock" << std::endl; | |
} |
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
## -- Misc Configs -- ## | |
stash_dir = "_stash" # directory to stash posts for speedy generation | |
full_stash_dir = "#{source_dir}/#{stash_dir}" # full path for stash dir | |
stash_root_dir = "_stash_root" # directory to stash pages (in /source/) | |
full_stash_root_dir = "#{source_dir}/#{stash_root_dir}" # full path for stash_root dir | |
root_stashes = ['Your-Page'] # directories to be stashed in /source/ | |
# usage rake isolate[my-post] | |
desc "Move all other posts than the one currently being worked on to a temporary stash location (stash) so regenerating the site happens much more quickly." |
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
... | |
<head> | |
... | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
... | |
<script src="/javascripts/utils.js"></script> | |
</head> | |
... |
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
" This is old settings, new one is following url: | |
" https://gist.github.com/rcmdnk/6f9c3c0f8043391317e1a9cc3e0cafcb | |
"Settings | |
"set nohud | |
"set autohidecursor | |
"set noinsertmappings | |
set smoothscroll | |
set autoupdategist |
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
(*_*) $ ./read_test.sh | |
parent start | |
tty=/dev/ttys000, PPID=54841, PID=82861, BASHPID=82861 | |
sub start | |
tty=/dev/ttys000, PPID=54841, PID=82861, BASHPID=82861 | |
============================= | |
read in sub: | |
sub input:a |
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
# ssty echo: | |
## if trap is defined in all: | |
stty echo is disabled at pipe, pipe|$() | |
## No traps | |
stty echo is disabled at pipe and pipe|$() |
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
# if C-c is called in the function: | |
## Direct call | |
C-c is given only to function, and return. | |
In the parent function/shell, process is proceeded as usual. | |
## Subshell $() | |
C-c is given to function, and also exit. |
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
,P |