Skip to content

Instantly share code, notes, and snippets.

View blue-bird1's full-sized avatar
🏠
fish touching

青鸟 blue-bird1

🏠
fish touching
View GitHub Profile
@blue-bird1
blue-bird1 / optparse
Last active October 9, 2018 23:14
optparse #python
from optparse import OptionParser, OptionGroup, OptionError
try:
from setting import IS_WIN
except ImportError as e:
errmsg = e.message.split('named')[0]
print errmsg
exit()
@blue-bird1
blue-bird1 / char draw
Last active October 9, 2018 23:14
char draw #python
#! /usr/bin/env python
# coding:utf-8
# Author qingniao
import pyfiglet as pyfiglet
def banner(char):
"""char draw
:param char:
:return:char draw
@blue-bird1
blue-bird1 / golang http set header
Last active October 10, 2018 00:16
go http set header #golang
client := &http.Client{}
req, err := http.NewRequest("POST", "http://example.com",string.NewReader(postData))
req.Header.Add("User-Agent", "myClient")
resp, err := client.Do(req)
defer resp.Body.Close()
@blue-bird1
blue-bird1 / install_fish_debian.sh
Last active October 9, 2018 23:15 — forked from mamiu/install_fish_debian.sh
Install fish shell in Debian 8 (commands from the original fish shell website). #debian
#!/bin/bash
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_8.0/ /' >> /etc/apt/sources.list.d/fish.list
apt-get update
wget -qO - http://download.opensuse.org/repositories/shells:fish:release:2/Debian_8.0/Release.key | apt-key add -
apt-get update
apt-get install -y fish
@blue-bird1
blue-bird1 / golang.sh
Last active October 9, 2018 03:56 — forked from jacoelho/golang.sh
Install golang debian/ubuntu #debian
#!/bin/bash
export GOLANG_VERSION=1.10.2
export GOLANG_DOWNLOAD_URL=https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
export GOLANG_DOWNLOAD_SHA256=4b677d698c65370afa33757b6954ade60347aaca310ea92a63ed717d7cb0c2ff
apt-get update -qq
apt-get install -y --no-install-recommends \
g++ \
@blue-bird1
blue-bird1 / install.sh
Last active October 10, 2018 12:39
kubernetes install #debian
go get -d k8s.io/kubernetes
cd $GOPATH/src/k8s.io/kubernetes
apt-get install rsync
make
@blue-bird1
blue-bird1 / 来源 jasper-1024.github.io
Last active October 9, 2018 16:32 — forked from askdaddy/来源 jasper-1024.github.io
SSR 安装脚本 #debian
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=================================================================#
# System Required: CentOS 6,7, Debian, Ubuntu #
# Description: One click Install ShadowsocksR Server #
# Author: Teddysun <i@teddysun.com> #
# Thanks: @breakwa11 <https://twitter.com/breakwa11> #
# Intro: https://shadowsocks.be/9.html #
#=================================================================#
@blue-bird1
blue-bird1 / setup.sh
Last active October 10, 2018 00:16
ssh key setup #debian
ssh-keygen
cd ~/.ssh
cat id_rsa.pub >> authorized_keys
chmod 600 authorized_keys
chmod 700 ~/.ssh
service sshd restart
@blue-bird1
blue-bird1 / install-apktool.sh
Last active October 9, 2018 16:04 — forked from bmaupin/install-apktool.sh
Install apktool in Linux #debian
# Get latest version from https://bitbucket.org/iBotPeaches/apktool/downloads
export apktool_version=2.3.1
sudo -E sh -c 'wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_$apktool_version.jar -O /usr/local/bin/apktool.jar'
sudo chmod +r /usr/local/bin/apktool.jar
sudo sh -c 'wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool -O /usr/local/bin/apktool'
sudo chmod +x /usr/local/bin/apktool
# To use:
# apktool d TelephonyProvider.apk -o TelephonyProvider
@blue-bird1
blue-bird1 / vsftpd.sh
Last active October 9, 2018 03:57 — forked from yamishi13/vsftpd.sh
Vsftpd Installer #debian
#!/bin/bash
#actualiza repos e instala vsftpd
sudo apt-get update
sudo apt-get install vsftpd -y
#remplaza opcioes para activar/desactivar en el archivo de configuracion
sudo sed -i -e 's/anonymous_enable=YES/anonymous_enable=NO/g' /etc/vsftpd.conf
sudo sed -i -e 's/#local_enable=YES/local_enable=YES/g' /etc/vsftpd.conf
sudo sed -i -e 's/#write_enable=YES/write_enable=YES/g' /etc/vsftpd.conf