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
// 中文 英文 数字 | |
var chinese_english_num_re = /[\u4e00-\u9fa5a-zA-Z0-9]+/; |
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 | |
sudo apt-get install -y xfonts-utils fontconfig | |
cd `dirname $0` | |
mkdir msyh | |
cd msyh | |
curl -O https://coding.net/u/vamdt/p/fonts/git/raw/master/msyh.ttf | |
curl -O https://coding.net/u/vamdt/p/fonts/git/raw/master/msyhbd.ttf | |
cd .. | |
sudo cp -r ./msyh /usr/share/fonts/truetype/ |
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 bash | |
# APP_ROOT/deploy/ci_php_lint.sh | |
cd $(dirname $0) | |
cd .. | |
exit_code=0 | |
for i in $(git ls-files --ignored --exclude='**/*.php') | |
do |
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 bash | |
# eg, check gd extensions | |
php -r 'phpinfo();' | grep -A 20 gd$ |
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 bash | |
usage() { | |
printf 'go-update.sh go$VERSION.$OS-$ARCH.tar.gz\n' | |
exit 1 | |
} | |
[ -z "$1" ] && usage | |
go_pkg_name="$1" |
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
e.=explorer . | |
gl=git log --oneline --all --graph --decorate $* | |
ls=ls --color --show-control-chars $* | |
pwd=cd | |
clear=cls | |
history=cat %CMDER_ROOT%\config\.history | |
unalias=alias /d $1 | |
g=git $* | |
gs=git status $* |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\*\shell] | |
[HKEY_CLASSES_ROOT\*\shell\openwemacs] | |
@="&Edit with Emacs" | |
[HKEY_CLASSES_ROOT\*\shell\openwemacs\command] | |
@="E:\\tools\\emacs\\bin\\runemacs.exe \"%1\"" | |
[HKEY_CLASSES_ROOT\Directory\shell\openwemacs] | |
@="Edit &with Emacs" | |
[HKEY_CLASSES_ROOT\Directory\shell\openwemacs\command] |
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 bash | |
JMETER_PATH=/path/to/jmeter | |
JMETER_PLAN_DIR=/path/to/jmx | |
set -xe | |
cd $(dirname $0) | |
pwd | |
for file in $(ls $JMETER_PLAN_DIR); do |
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
telnet mail.host 25 | |
ehlo mail.host #握手 | |
mail from:<[email protected]> #发送方 | |
rcpt to: <[email protected]> #收件方 | |
data #正文 | |
TO: [email protected] | |
FROM: [email protected] | |
SUBJECT: telnet test | |
test,aha |
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
import javax.mail.MessagingException; | |
import javax.mail.Session; | |
import javax.mail.Transport; | |
import javax.mail.internet.InternetAddress; | |
import javax.mail.internet.MimeBodyPart; | |
import javax.mail.internet.MimeMessage; | |
import javax.mail.internet.MimeMultipart; | |
import java.util.*; | |
public class SendMail { |