访问WR703N在OpenWrt的[Wiki页][wr703n-openwrt],然后在Flashing一节中找到下载链接:[squashfs-factory.bin][flash.bin],下载后别忘了[比对md5][md5sum]。[1]
进入路由器管理界面,出厂配置为http://192.168.1.1,用户名和密码均为admin,然后进入固件更新,选择下载的文件,然后更新。
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| var $buttons = $('button.star-button') | |
| var index = 0 | |
| var timer = window.setInterval(function(){ | |
| if(index >= $buttons.length){ | |
| window.clearInterval(timer); | |
| }else{ | |
| $buttons[index++].click(); | |
| } | |
| }, 1000) |
###0x00 在github上初始化repo 在github上开启一个代码库(repository), 具体方式参考github的帮助手册(help) 如下图所示, 现在整个项目了一个中心repo. 所有的项目成员将共用这一个repo.
| # 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 ( | |
| "log" | |
| "net/http" | |
| "os" | |
| "strconv" | |
| ) | |
| func main() { |