首页 > TAG信息列表 > cheatsheet
一大波开源小抄来袭
“小抄”一词大家应该不会陌生,它有个学名叫做“速查表”(cheatsheet)是用来快速找到你知识点和答案的表格,因为其有体积小、不易察觉等特点,频繁出现在考场和演讲中... 友情提示⚠️:考试作弊一时爽,抓到就是火葬场! 记得我大学时有一次考试,老师允许我们每个人带一张 A4 纸大小的“小抄”MongoDB - 语句Cheatsheet
CURD insert db.collection.insertOne() db.collection.insertMany() db.fruits.insertOne({name:"apple"}) db.fruits.insertMany([ {name:"apple"}, {name:"pear"} ]) find 单条件查询:db.movies.find({"year":1997}) 多条件与查询: db.moviePython技巧:正则表达式cheatsheet
line terminator:行终止符(/n) 中文cheatsheet来源:麦叔编程:https://mp.weixin.qq.com/s/vWY65LYf6ZALAUgpL2eYvQPython random 库 Cheatsheet
import random 1、seek() 种子,默认种子是系统时钟 2、random()函数,生成0到1的随机小数 3、uniform(a,b)生成a到b的随机小数 4、randint(a,b)生成一个a到b的随即整数 5、randrange(a,b,c) 生成一个a到b,以c递增的数 6、choice(<list>) 随机返回一个列表里面的元素 7、shuffle(<list>Matplotlib cheatsheet
很多同学做数学建模都用过matlab,相信都用过matlab的强大可视化功能,非常方便。其实如果采用python语言实现也能实现和matlab一样的可视化效果,而且是免费使用。其中一个有名的可视化库叫Matplotlib(当然还有很多可视化库), 它可与 NumPy 一起使用,提供了一种有效的 MatLab 开源替代方案python-cheatsheet - python标准库速查表!
python-cheatsheet - python标准库速查表 最近很火的python-cheatsheet不知大家是否都了解:NVIDIA-docker Cheatsheet
TensorFlow Docker requirements Install Docker on your local host machine. For GPU support on Linux, install nvidia-docker. Note: To run the docker command without sudo, create the docker group and add your user. For details, see the post-installatPytorch Cheatsheet
Pytorch Cheatsheet torch.no_grad() CLASS torch.autograd.no_grad[SOURCE] Context-manager that disabled gradient calculation. Disabling gradient calculation is useful for inference, when you are sure that you will not call Tensor.backward(). It will reducPython cheatsheet
Python cheatsheet pandas df = pd.read_csv('path') # read .csv df.to_csv('path') # write .csv df.to_csv('path',header=True,index=True),header是列名,index是数字行名,两者默认都是True,将header设为False,第一行会称为列名,将index设为True,会额外加上行数列作为列名 matOpenCV cheatsheet
OpenCV cheatsheet 构造 生成随机矩阵 Mat m(100,200,CV_8U); randu(m,0,255); // 用0~255中的随机数填充m 打开摄像头 请使用opencv > 3.3.1.11版本 while True: ret, frame = cap.read() cv2.imshow('frame', frame) # 一个窗口用以显示原视频Linux Cheatsheet
Linux笔记 tar tar -zcf 1.tar.gz dir/ # 打包压缩 tar -zxvf 1.tar.gz / # 解压 # 排除某个文件夹 tar zcvf fd.tar.gz * --exclude=file1 --exclude=dir1 注意: 1、–exclude=file1 而不是 --exclude file1 2、要排除一个目录是–exclude=dir1而不是–exclude=dir1/ 也可Manjaro cheatsheet
Manjaro cheatsheet 命令 功能 pacman -Syy 同步包数据库 pacman -Syu 同步软件库并更新系统到最新状态 pacman -S package_name1 package_name2 安装或升级 pacman -S extra/package_name 选择版本(比如extra和testing) pacman -S testing/package_name 选择Cheatsheet: 2018 11.01 ~ 2019 02.28
GolangFromXToGomicro - A microservice toolkitOtherEasy parsing of Excel spreadsheet format with Swift's Codable protocolsFront-End Performance Checklist 2019 [PDF, Apple Pages, MS Word]Questions for a new technologyMobileiOS Performance Tricks To Mak