我每天使用 Git ,但是很多命令记不住。 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或 ...
分类:
其他好文 时间:
2020-06-12 10:45:26
阅读次数:
55
一. Manager 进程之间的共享数据(列表list 或者 字典dict等) from multiprocessing import Process,Manager,Lock def work(data,lock): # 1.正常写法 """ lock.acquire() # data["coun ...
分类:
编程语言 时间:
2020-06-12 00:40:45
阅读次数:
71
0、安装 python-pptx 库 pip install python-pptx 1、创建一张空幻灯片 # 加载库 import os from pptx import Presentation # 修改路径 work_path = r'E:\pyspace\tmp\pptx' os.chdir ...
分类:
编程语言 时间:
2020-06-11 19:40:46
阅读次数:
106
PowerShell构建 # 进入项目目录cd ./source # 安装依赖npm install --registry=https://registry.npm.taobao.org # 打包项目npm run build # 清空目录rm -r D:\vue\* # 复制文件cp -r D:\ ...
分类:
其他好文 时间:
2020-06-11 18:16:44
阅读次数:
129
1.安装包下载 注意安装包统一64位或32位 1)python-2.7.16.amd64.msi 2)robotframework-3.0.2.tar.gz 3)robotframework-ride-1.3.win-amd64.exe 4)wxPython2.8-win64-unicode-2.8 ...
package com.get; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.sp ...
分类:
编程语言 时间:
2020-06-11 16:12:38
阅读次数:
58
作为一款开源分布式图数据库,Nebula Graph 1.0 版本旨在提供一个安全、高可用、高性能、具有强表达能力的查询语言的图数据库。 ...
分类:
其他好文 时间:
2020-06-11 13:41:26
阅读次数:
41
The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t ...
分类:
其他好文 时间:
2020-06-11 09:15:58
阅读次数:
62
看完视频后,https://www.bilibili.com/video/BV167411v7bB?p=1 的总结。 this的指向: 1.默认绑定, 分别对应函数的四种调用: 独立调用 2.隐式绑定, 方法调用 3.显示绑定, 间接调用 4.new绑定, 构造函数调用 5.严格模式下this的指向 ...
分类:
其他好文 时间:
2020-06-10 21:20:41
阅读次数:
65
十四、PostgreSQL12.2企业级应用系列公开课:调优系列公开课(一)1、如何获得慢查询的SQL语句2、常见参数设置因子与应用案例2.1、shared_buffers2.2、wal_buffers2.3、work_mem2.4、maintenance_work_mem2.5、fsync2.6、synchronous_commit2.7、checkpoint_timeout,checkpoin
分类:
数据库 时间:
2020-06-10 17:22:55
阅读次数:
78