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
#!/usr/bin/env sh | |
# s-jis to utf-8 & CRLF to LF | |
# requirements: nkf, dos2unix | |
TARGET_DIR=$1 | |
EXPORT_DIR=$2 | |
# prepare export dir | |
for dir in `find $TARGET_DIR -type d` |
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
#!/usr/bin/env sh | |
# get this script's path | |
SCRIPT_DIR=$(cd $(dirname $0); pwd) | |
cd $SCRIPT_DIR | |
# generate key & crt | |
openssl req -batch -new -x509 -newkey rsa:4096 -days 3650 -sha256 -nodes \ | |
-subj /CN=example.com \ | |
-addext "subjectAltName=DNS:example.com,DNS:www.example.com" \ |
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
logs/* | |
config/* | |
data/* |
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
name: nvim_backend | |
channels: | |
- conda-forge | |
dependencies: | |
- python | |
- pynvim | |
- nodejs | |
- pygments | |
- ctags | |
- sqlparse |
(WIP)
ToDo: