Hello
Nice to meet you.
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
{ | |
"policy": { | |
"system": { | |
"statsInboundUplink": true, | |
"statsInboundDownlink": true | |
} | |
}, | |
"log": { | |
"access": "", | |
"error": "", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import datetime | |
import os | |
import time | |
import RPi.GPIO as GPIO | |
# GPIO14 08号引脚 | |
GPIO_OUT = 14 | |
# 日志位置 |
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
function off(){ | |
unset http_proxy | |
unset https_proxy | |
echo -e "*** off ***" | |
} | |
function on(){ | |
export http_proxy="http://127.0.0.1:1087" | |
export https_proxy=$http_proxy | |
echo -e "*** on ***" |
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
export GOPROXY=https://goproxy.cn,https://mirrors.aliyun.com/goproxy,direct | |
export PATH=/usr/local/opt/openssl/bin:$PATH | |
export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles | |
export PATH=/usr/local/opt/[email protected]/bin:$PATH | |
export GOPATH=/usr/local/var/go | |
alias ll='ls -alF' | |
export PATH=/usr/local/sbin:/usr/local/bin:$PATH | |
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
export PATH="/usr/local/opt/[email protected]/sbin:$PATH" | |
export PATH="/usr/local/var/go/bin:$PATH" |
- HTTP 形式:
git clone https://github.com/owner/git.git
- SSH 形式:
git clone [email protected]:owner/git.git
yum -y install easy-rsa
mkdir /etc/openvpn
mkdir /etc/openvpn/easy-rsa
拷贝easy-rsa的文件到/etc/openvpn下
cp -r /usr/share/easy-rsa/3.0.6 /etc/openvpn/easy-rsa
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
<?php | |
class SensitiveController extends Controller | |
{ | |
private $dict; | |
public function __construct($words) { | |
$this->dict = array(); | |
// 构建敏感词树 | |
foreach ($words as $_word) { | |
$uWord = $this->unicodeSplit($_word); |
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
package idcardocr | |
import ( | |
"bytes" | |
"crypto/cipher" | |
"crypto/des" | |
) | |
// 3DES加密 |
OlderNewer