摘要:
Windows:Authentication failed解决方案1 git clone http://username:password@projectUrl Windows:Authentication failed解决方案2 在自己的home文件夹创建一个 _netrc 的文件,linux 就 阅读全文
摘要:
为什么Windows 7的32位版不能支持4GB以上内存呢? 32位系统的最大寻址空间为2的32次方bytes,计算后即4,294,967,296bytes,也就是我们常说的4096MB,32位系统的寻址空间封顶即为4GB。但是,虽然系统能够识别4096MB,我们还是不能完全使用它,这是因为还有内存 阅读全文
摘要:
0.配置GO语言环境设置环境变量 环境变量path中添加go安装bin目录 cmd输入go version看是否安装成功 1.下载最新的vscode2.安装插件 3.设置GO模块代理(goproxy.io)因为go的大部分模块来源在国外,大多访问超时或者被墙,为了后续安装需要设置代理访问。 Powe 阅读全文
摘要:
编辑文件 内容 网络设置生效 阅读全文
摘要:
一个基于 Selenium 3.14.0的脚本执行工具,支持自动化解决方案。Github https://github.com/freeol/XmlAutoGo Document https://xmlautogo-docs.readthedocs.io/en/latest/ 阅读全文
摘要:
pyinstaller -F -w --key=keys --clean --icon=imgs/xxx.ico xxx.py 阅读全文
摘要:
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.2.0-Windows-x86.execonda --version#conda upgrade --all#pip 8->9conda upgrade pip #pi 阅读全文
摘要:
①Activity和View负责与用户交互 ②Service通常位于后台,拥有独立的生命周期,为其他组件提供后台服务和监控其他组件运行状态 ③BroadcastReceiver广播消息接收器,类似事件编程中的监听器(与普通事件监听器监听程序对象不同,监听其他组件) ④ContentProvider应 阅读全文
摘要:
1 ''' 2 Created on 2016/12/26 3 Created by freeol.cn 4 一些排序算法的Python实现 5 @author: 拽拽绅士 6 ''' 7 8 import sys 9 from _ast import While 10 from celery.bin.celery import result 11 ... 阅读全文
摘要:
1 ''' 2 Created on 2016/12/16 3 Created by freeol.cn 4 一些排序算法的Python实现 5 @author: 拽拽绅士 6 ''' 7 8 '''值交换''' 9 def swap(m, n): 10 c = m; m = n; n = c; 11 return m, n 12 ... 阅读全文