Skip to content

Instantly share code, notes, and snippets.

View nullne's full-sized avatar
🚎
go bootstrap

Le Yu nullne

🚎
go bootstrap
View GitHub Profile
@nullne
nullne / vpn.sh
Created October 9, 2015 03:29
自动选择最佳vpn线路并连接
#!/bin/bash
PROG_NAME=$0
ACTION=$1
usage() {
echo "Usage: $PROG_NAME {list|ping|optimal|conn|close|status}"
exit 1
}
@nullne
nullne / centos_python_env_setup
Created December 8, 2015 07:12 — forked from floer32/centos_python_env_setup
CentOS 6: Install Python 2.7.4, pip, virtualenv, and virtualenvwrapper on CentOS (plus some bonus items at the end if you want). You should probably run with `sudo`.
#!/bin/bash
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/
# Install stuff #
#################
# Install development tools and some misc. necessary packages
yum -y groupinstall "Development tools"
yum -y install zlib-devel # gen'l reqs
@nullne
nullne / go_scp.go
Last active October 11, 2017 21:59 — forked from jedy/go_scp.go
an example of scp in golang
// https://blogs.oracle.com/janp/entry/how_the_scp_protocol_works
package main
import (
"fmt"
"golang.org/x/crypto/ssh"
)
const privateKey = `content of id_rsa`

###Centos下编译安装python

####准备 主要是一些开发工具和其他的依赖包

yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

####注意事项

Unicode
@nullne
nullne / magic.sh
Created December 20, 2016 08:55
Some useful cmd
|awk -FJSON '{print $2}'
|gawk 'match($0, /users\/([0-9]*)\/relationships\/([0-9]*).*AppVersion":"([0-9\.]*)"/, a) {print a[1],a[2],a[3]}'
@nullne
nullne / install-latest-vim.sh
Last active January 24, 2019 04:00
install latest vim with many features enabled from source
yum install gcc -y
yum install make -y
yum install ncurses-devel -y
yum install lua lua-devel -y
yum install ruby ruby-devel -y
yum install python python-devel -y
yum install perl perl-devel -y
git clone https://github.com/vim/vim.git
cd vim
CREATE OR REPLACE FUNCTION update_user_status_with_old_status_checked(user_id_ integer, status_old_ status, status_new_ status, check_old_status_ boolean)
RETURNS SETOF lon_lat_user AS
$$
DECLARE
BEGIN
RETURN QUERY
SELECT (user_to_lon_lat_user(users_full.*, 0)).*
FROM users u
JOIN users_full ON users_full.id = u.id
WHERE u.id = user_id_
@nullne
nullne / tmux.conf
Last active December 13, 2020 09:49 — forked from spicycode/tmux.conf
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
package main
import (
"bytes"
"context"
"crypto/md5"
"errors"
"flag"
"fmt"
"io"
@nullne
nullne / tmux_local_install.sh
Created February 27, 2019 03:15
install tux 2.5 without root privilege
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.8