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
{ | |
/* | |
* UI関係 | |
*/ | |
// カラー&スキーマ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", // カラー | |
"theme": "Soda Dark.sublime-theme", // スキーマ | |
// カーソルのスタイル ("smooth", "phase", "blink", "wide", "solid") | |
"caret_style": "smooth", |
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
/** | |
* Compilation: | |
* | |
* 1. Without e2fslib: | |
* $ gcc -O2 -o due2fs due2fs.c | |
* | |
* 2. With e2fslib | |
* $ sudo apt-get install e2fslibs-dev | |
* $ gcc -DUSE_E2FSLIB -O2 -o due2fs due2fs.c -lext2fs | |
* |
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 | |
if [ $# -eq 2 ]; then | |
URL=$1 | |
MAILTO=$2 | |
else | |
echo "usage : $0 check_url alert_mail_address" | |
exit 1 | |
fi |