首页 |  个人站点 |  博客园 |  管理 |  返回
摘要: Windows:Authentication failed解决方案1 git clone http://username:password@projectUrl Windows:Authentication failed解决方案2 在自己的home文件夹创建一个 _netrc 的文件,linux 就 阅读全文
posted @ 2022-03-05 10:45 拽拽绅士 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 为什么Windows 7的32位版不能支持4GB以上内存呢? 32位系统的最大寻址空间为2的32次方bytes,计算后即4,294,967,296bytes,也就是我们常说的4096MB,32位系统的寻址空间封顶即为4GB。但是,虽然系统能够识别4096MB,我们还是不能完全使用它,这是因为还有内存 阅读全文
posted @ 2022-02-16 15:20 拽拽绅士 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 0.配置GO语言环境设置环境变量 环境变量path中添加go安装bin目录 cmd输入go version看是否安装成功 1.下载最新的vscode2.安装插件 3.设置GO模块代理(goproxy.io)因为go的大部分模块来源在国外,大多访问超时或者被墙,为了后续安装需要设置代理访问。 Powe 阅读全文
posted @ 2020-10-27 22:04 拽拽绅士 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 编辑文件 内容 网络设置生效 阅读全文
posted @ 2019-09-03 10:49 拽拽绅士 阅读(2473) 评论(0) 推荐(0) 编辑
摘要: 一个基于 Selenium 3.14.0的脚本执行工具,支持自动化解决方案。Github https://github.com/freeol/XmlAutoGo Document https://xmlautogo-docs.readthedocs.io/en/latest/ 阅读全文
posted @ 2018-10-24 14:19 拽拽绅士 阅读(207) 评论(0) 推荐(0) 编辑
摘要: pyinstaller -F -w --key=keys --clean --icon=imgs/xxx.ico xxx.py 阅读全文
posted @ 2018-09-07 10:24 拽拽绅士 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2018-09-07 10:04 拽拽绅士 阅读(236) 评论(0) 推荐(0) 编辑
摘要: ①Activity和View负责与用户交互 ②Service通常位于后台,拥有独立的生命周期,为其他组件提供后台服务和监控其他组件运行状态 ③BroadcastReceiver广播消息接收器,类似事件编程中的监听器(与普通事件监听器监听程序对象不同,监听其他组件) ④ContentProvider应 阅读全文
posted @ 2017-09-01 10:27 拽拽绅士 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 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 ... 阅读全文
posted @ 2016-12-26 13:46 拽拽绅士 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 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 ... 阅读全文
posted @ 2016-12-21 09:26 拽拽绅士 阅读(246) 评论(0) 推荐(0) 编辑

Java | Golang | Python | php