iPhone 使用 MAC 上的 Socks 代理
Step 1. Make sure the SOCKS tunnel on your work computer allows LAN connections so your iPhone/iPod Touch can connect to it. $ ssh -N -g -D 1080 user@domain.com Step 2. Create a text file and in...
Step 1. Make sure the SOCKS tunnel on your work computer allows LAN connections so your iPhone/iPod Touch can connect to it. $ ssh -N -g -D 1080 user@domain.com Step 2. Create a text file and in...
获取目录中的所有文件 io/ioutil ioutil.ReadDir // ReadDir reads the directory named by dirname and returns // a list of directory entries sorted by filename. func ReadDir(dirname string) ([]os.FileInfo, er...
在 Go http 包的 Server 中,每一个请求在都有一个对应的goroutine去处理。请求处理函数通常会启动额外的goroutine用来访问后端服务,比如数据库和 RPC 服务。用来处理一个请求的goroutine通常需要访问一些与请求特定的数据,比如终端用户的身份认证信息、验证相关的 token、请求的截止时间。当一个请求被取消或超时时,所有用来处理该请求的goroutine都应...
Docker domestic images … 是这么写的吗? Docker 官方针对中国区推出了镜像加速服务。通过 Docker 官方镜像加速,国内用户能够以更快的下载速度和更强的稳定性访问最流行的 Docker 镜像。 如何使用 Docker 中国官方镜像加速可通过 registry.docker-cn.com 访问。目前该镜像库只包含流行的公有镜像,而私有镜像仍需要从美...
记录如何在开发 Spring Boot 程序时,从配置文件中读取自定义配置信息。 1. 使用 Value annotation @Value("${username}") String userName; 如果不加上 ${},注入的就是原始值。 2. 使用 Environment EnvironmentDemo.java: package luxe.chaos.demo.c...
记录如何使用 Vim 快速开发 Golang 的步骤 安装 Vundle.vim 插件 安装 https://github.com/VundleVim/Vundle.vim mkdir -p ~/.vim/bundle cd ~/.vim/bundle/ git clone git@github.com:VundleVim/Vundle.vim.git 配置 编辑 ~/.v...
有些命令我总是记不住,所以就写在这里了。 CentOS 7 安装 dig: $ sudo yum -y install bind-utils 安装 netcat: $ sudo yum -y install nmap-ncat. docker 启动 Redis: #!/usr/bin/env bash # start a redis docker with passw...
这是一个描述 go 语言中如何操作 MySQL 数据库的初级教程。适合刚刚接触 go 语言的开发者。 库 sql.Register 这个存在于 database/sql 的函数时用来注册数据库驱动的,当第三方开发者开发数据库驱动的时候,都会实现 init 函数,在 init 里面会调用这个 Register(name string, driver driver.Driver) 完成...
Golang 支持交叉编译,在一个平台上生成另一个平台的可执行程序。 Golang支持的平台和版本 $ go tool dist list 其实 Golang 的交叉编译非常简单,只需要在编译前指定系统和 CPU 架构,基本不会有任何问题,编译出来讲文件拷贝到对应平台就能跑。 Mac 下编译 Linux 和 Windows 64位可执行程序 $ CGO_ENABLED=0 G...
Greatness. It’s just something we made made up.Somehow we’ve come to believe that greatness is a gift, reserved for a chosen few – for prodigies, for superstars – and the rest of us can only stand ...