This file contains 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
(add-to-list 'load-path "~/.emacs.d/el-get/el-get") | |
(unless (require 'el-get nil 'noerror) | |
(require 'package) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.org/packages/")) | |
(package-refresh-contents) | |
(package-initialize) | |
(package-install 'el-get) | |
(require 'el-get)) |
This file contains 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
version: '3' | |
services: | |
gitlab: | |
image: gitlab/gitlab-ce | |
restart: always | |
container_name: gitlab | |
hostname: "gitlab.allen0125.com" | |
ports: | |
- 11443:443 | |
- 11080:80 |
This file contains 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
#---------------------------------------------------# | |
## 配置文件需要放置在 $HOME/.config/clash/config.yml | |
## | |
## 如果您不知道如何操作,请参阅 SS-Rule-Snippet 的 Wiki: | |
## https://github.com/Hackl0us/SS-Rule-Snippet/wiki/clash(X) | |
#---------------------------------------------------# | |
# HTTP 代理端口 | |
port: 7890 |
This file contains 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
filelist=$(find . -name '*.mp3' -o -name '*.mp4' -o -name '*.m4a') | |
OLDIFS="$IFS" | |
IFS=$"\n" | |
for filename in *.mp3 *.mp4 *.m4a | |
do | |
if [$filename == '.DS_Store' || $filename == ffmpeg_foo_to_wav.sh] | |
then | |
continue | |
fi |