Skip to content

Instantly share code, notes, and snippets.

@itod
itod / split_keyboards.md
Last active May 24, 2024 23:05
Every "split" mechanical keyboard currently being sold that I know of

测试平台:DigitalOcean VPS ubuntu14.04 x64, strongswan5.2.2

运行以下命令请使用root权限

一:安装strongswan

由于ubuntu软件仓库中strongswan版本较低,因此从官网源码编译安装

apt-get install build-essential     #编译环境
aptitude install libgmp10 libgmp3-dev libssl-dev pkg-config libpcsclite-dev libpam0g-dev     #编译所需要的软件
@hwdsl2
hwdsl2 / .MOVED.md
Last active May 19, 2024 06:28
IPsec VPN Server Auto Setup Script for Ubuntu and Debian
@amxku
amxku / gist:5220044
Created March 22, 2013 09:34
checkIpNslookup
def checkIpName(arg):
cmd = 'nslookup %s' % arg.strip()
handle = Popen(cmd, stdout = PIPE, stderr = PIPE, shell = True).stdout
re_handle = handle.read()
handle.close()
# name 关键词
botkey = ['baidu','google','yahoo','msn']
if re.search('Name',re_handle):
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 28, 2024 14:54
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname