- 模拟人工操作删除微博(按条),需登陆自己的微博主页使用。
- 每页大楖25条,删完微博会刷新,等加载完继续删。
- 用户可随时手动关闭微博页面或禁用脚本,以便停止删除操作。
- 即使弹框“服务繁忙”,也不影响删除操作。
- 运行时占CPU较高,待优化。
在Chrome+Tampermonkey环境下测试通过
| # use: | |
| # .bash_profile - only gets executed for login bash shells | |
| # .bashrc - only gets executed for NON-login bash shells for only NON-login shells | |
| # .profile - gets executed for ANY login shell | |
| # .bash_logout - only gets executed for bash shells after logout | |
| # Sets the prompt: | |
| #PS1='\h:\w \u\$ ' | |
| #PS2='> ' |
在Chrome+Tampermonkey环境下测试通过
| var states = ["Alabama", | |
| "Alaska", | |
| "Arizona", | |
| "Arkansas", | |
| "California", | |
| "Colorado", | |
| "Connecticut", | |
| "Delaware", | |
| "Florida", | |
| "Georgia", |
| var readline = require('readline'), | |
| fs = require('fs'); | |
| var LinkMap = function(filePath) { | |
| this.files = [] | |
| this.filePath = filePath | |
| } | |
| LinkMap.prototype = { | |
| start: function(cb) { |
| UITableView convenience classes for resizing header and footer with autolayout. |
| #!/bin/sh | |
| echo Install all AppStore Apps at first! | |
| # no solution to automate AppStore installs | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Install and Set San Francisco as System Font | |
| ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
| echo Install Homebrew, Postgres, wget and cask | |
| ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |