排序
Windows下iOS常用管理工具及命令
SSH工具 OpenSSH :https://www.mls-software.com/opensshd.html PuTTY:http://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html 文件管理工具 WinSCP : https://winscp.net/eng/downl...
python 安装升级包的方法
安装包[code]pip install 包名[/code]例如安装frida[code]pip install frida[/code] 更新pip[code]python -m pip install -U pip[/code] 更新其他包[code]pip install -U 包名[/code] 安装whl包...
python 安装扩展包
如果你的python版本高于2.7.9或者3.4 首先升级pip和setuptools win下[code]python -m pip install -U pip setuptools[/code] Linux或者OS X下[code]pip install -U pip setuptools[/code] 或者...
Python 编码错误解决方法
Python默认为Ascii编码在代码或者注释中出现中文会报如下错误 SyntaxError: Non-ASCII character '\xe4' in file test.py on line x, but no encoding declared; see http://www.python.org/pep...
Arm汇编指令
这两天在看Arm汇编记录一下参考资料 [url href=http://infocenter.arm.com/help/basic/help.jsp?topic=/com.arm.doc.dui0204ic/Cjafgdih.html]指令汇总[/url] [url href=http://infocenter.arm...
下载Google Play 上的某个APK
打开:https://apps.evozi.com/apk-downloader/ 输入要下载的链接:https://play.google.com/store/apps/details?id=com.xxx 点击“ Generate Download Link”
µTorrent通用去广告方法
µTorrent是一个短小精悍的BT客户端如果你有迅雷VIP就可以忽略了,如果迅雷下不动的可以试试这个 Win版下载地址:http://www.utorrent.com/intl/en/downloads/complete/track/stable/os/windows ...
时间同步服务器(NTP时间服务器)
阿里提供的几个国内可用的时间同步服务器,系统默认的那几个总是很慢或者同步失败 ntp1.aliyun.comntp2.aliyun.comntp3.aliyun.comntp4.aliyun.comntp5.aliyun.comntp6.aliyun.comntp7.aliyun.c...
iPhone 系统空间清理瘦身
文字输入相关 /system/library/textinput/ 保留:textinput-en.bundle、textinput-zh.bundle 其余全部删除!(这个大概可以出来30M) 删除无用网标 /System/Library/Carrier Bundles/iPhone/ 中...
Ubuntu ssh root远程登陆配置方法
一、安装SSH [code]sudo apt-get update[/code]更新源列表 [code]sudo apt-get install openssh-server[/code]安装SSH 二、配置SSH [code] sudo nano /etc/ssh/sshd_config[/code]打开配置文件 ...