使用tcptraceroute跟踪TCP路由端口

12月 4, 2015

tcptraceroute 命令可以用TCP协议跟踪指定端口的路由,可以用于检测TCP端口阻断。 # 安装 t […]

Read the full article →

使用TCP协议的Ping测试

12月 3, 2015

PING是一种计算机网络工具,用来测试数据包能否透过IP协议到达特定主机。ping的运作原理是向目标主机传出一 […]

Read the full article →

ATOM 设置HTTP代理

12月 1, 2015

atom 使用package install安装相关依赖比较慢,有时候需要翻墙才能安装。 atom支持代理模式 […]

Read the full article →

Ubuntu14.04设置开机启动脚本

12月 1, 2015

什么是rc.local脚本 rc.local脚本是一个ubuntu开机后会自动执行的脚本,我们可以在该脚本内添 […]

Read the full article →

Atom快捷键(Windows版本)

11月 6, 2015

文件切换 ctrl-shift-s 保存所有打开的文件 cmd-shift-o 打开目录 cmd- 显示或隐藏 […]

Read the full article →

nodejs请求HTTPS报错的解决方法

10月 3, 2015

在用Nodejs发送https请求时候,出现\”Error: UNABLE_TO_VERIFY_L […]

Read the full article →

React和React Native的ES5 ES6的语法对照参考

9月 18, 2015

模块引用 在ES5里,如果使用CommonJS标准,引入React包基本通过require进行,代码类似这样: […]

Read the full article →

Webpack简明教程

8月 30, 2015

Webpack是什么 一、安装 全局安装: npm install webpack -g 安装完成之后,查看w […]

Read the full article →

TERM参数影响Git使用

8月 22, 2015

在docker里执行git log, 报错: WARNING: terminal is not fully f […]

Read the full article →

Docker清除容器镜像命令

7月 29, 2015

杀死所有running状态的容器 docker kill $(docker ps -q) 删除所有已经停止的容 […]

Read the full article →