参考: 内存管理: https://www.jianshu.com/p/49cbaccd38c5 crc校验 https://www.cnblogs.com/zzdbullet/p/9580502.html 内容: https://github.com/TouwaErioH/subjects/tre ...
分类:
系统相关 时间:
2020-01-12 19:57:14
阅读次数:
96
前端开发调试工具记录 开发工具 vs Code与Web Storm docker(docker compose;docker hub) nvm(nodejs版本管理) 调试工具 Chrome + Android /Safari + IOS(界面类) 1. Safari偏好设置 高级 显示开发菜单=》 ...
分类:
其他好文 时间:
2020-01-12 15:25:50
阅读次数:
117
- 配置远程数据库- 配置远程解释器- 配置远程文件代理- https://blog.csdn.net/github_38111866/article/details/77995158- https://blog.csdn.net/wearge/article/details/79710553- [... ...
分类:
其他好文 时间:
2020-01-12 13:40:59
阅读次数:
85
新特效编程语言-taichi太极 只用99行代码,你也可以像《冰雪奇缘》里的艾莎公主一样拥有冰雪魔法。(http://finance.sina.com.cn/wm/2020-01-06/doc-iihnzahk2279095.shtml) 胡渊鸣知乎原文: https://zhuanlan.zhih ...
分类:
编程语言 时间:
2020-01-12 13:17:06
阅读次数:
407
克隆远程代码到本地: git clone 网址 pull代码到本地: 提交到本地仓库:git commit -m "提示信息" 提交本地代码到托管仓库:git push origin master 提交本地代码到分支:git push origin 分支 添加用户名:git config --glo ...
分类:
其他好文 时间:
2020-01-12 09:25:30
阅读次数:
68
如果你在2019年8月之前将Flutter添加到现有iOS项目,本文值得你一看。 在2019年7月30日,合并合并请求flutter / flutter#36793之前Flutter 1.8.4-pre.21, 将Flutter添加到现有的iOS应用程序需要更改Podfile, 并在现有Xcode项 ...
分类:
移动开发 时间:
2020-01-11 21:58:18
阅读次数:
213
""" base 07 写函数,计算传入字符串中【数字】、【字母】、【空格] 以及 【其他】的个数 """ def demo(s): d = 0 a = 0 s = 0 e = 0 st = input('输入字符串') for i in st: if i.isdigit() is True: d ...
分类:
其他好文 时间:
2020-01-11 15:21:28
阅读次数:
73
一、官网下载安装 获取ThinkPHP的方式很多,官方网站(http://thinkphp.cn)提供了稳定版本或者带扩展完整版本的下载 二、ThinkPHP5支持使用Composer安装,如果还没有安装 Composer,你可以按 Composer安装 中的方法安装。在 Linux 和 Mac O ...
分类:
Web程序 时间:
2020-01-11 10:08:09
阅读次数:
110
论文 "Decoupled Weight Decay Regularization" 中提到,Adam 在使用时,L2 regularization 与 weight decay 并不等价,并提出了 AdamW,在神经网络需要正则项时,用 AdamW 替换 Adam+L2 会得到更好的性能。 Ten ...
分类:
其他好文 时间:
2020-01-11 09:35:28
阅读次数:
177
首次上传本地项目: 1. git init //初始化仓库 2. git add .(文件name) //添加文件到本地仓库 3. git commit -m “first commit” //添加文件描述信息 4. git remote add origin + 远程仓库地址 //链接远程仓库,创 ...
分类:
Web程序 时间:
2020-01-10 18:47:59
阅读次数:
97