码迷,mamicode.com
首页 >  
搜索关键字:comm    ( 8606个结果
常用命令
ffmpeg相关操作参考点这儿 视频截取gif 参考这儿 ffmpeg -ss 00:00:20 -i sample.mp4 -to 10 -r 10 -vf scale=200:-1 cutekid_cry.gif ss : indicates the starting point of GIF ...
分类:其他好文   时间:2021-07-28 21:17:46    阅读次数:0
nginx + http + svn
安装certbot 安装 certbot 为免费证书做准备 yum install certbot python2-certbot-nginx 安装 svn 安装svn yum install svn 创建svn库 # 创建库 svnadmin create /var/svn/data # 授权ap ...
分类:Web程序   时间:2021-07-27 17:31:33    阅读次数:0
SQLAlchemy 多对多
参考官网: https://www.pythoncentral.io/sqlalchemy-orm-examples/ 员工部门两个表,中间为多对多关系,这种一般需要创建一个中间表。多对多转换成一对多 from sqlalchemy import Integer, Column, String, F ...
分类:数据库   时间:2021-07-26 16:48:08    阅读次数:0
Pset_AlarmTypeCommon
Pset_AlarmTypeCommon 报警类型公共:报警类型公共属性。历史:在IFC4中添加。 NameTypeDescription Reference P_SINGLEVALUE / IfcIdentifier Reference Reference ID for this specifie ...
分类:其他好文   时间:2021-07-21 17:42:30    阅读次数:0
Linux云计算-04_Linux用户及权限管理
Linux是一个多用户的操作系统,引入用户,可以更加方便管理Linux服务器,系统默认需要以一个用户的身份登录,而且在系统上启动进程也需要以一个用户身份器运行,用户可以限制某些进程对特定资源的权限控制。 本章介绍Linux系统如何管理创建、删除、修改用户角色、用户权限配置、组权限配置及特殊权限深入剖 ...
分类:系统相关   时间:2021-07-09 17:54:35    阅读次数:0
docker file,docker网络和容器数据卷
容器数据卷 docker的理念是应用和环境包打包城镜像. 那么如果数据在容器中,容器被删除跑路,就嗝屁了,所以数据可以持久化的存储在容器外部 容器数据卷就可以让容器之间有一个数据共享技术.把docker容器产生的数据同步到本地. 注意这个本地是的是操作系统linux不是docker.这是个目录挂载技 ...
分类:其他好文   时间:2021-07-02 15:55:09    阅读次数:0
Learning: a Lifelong Career
PASSAGE 2: Learning: a Lifelong Career As food is to the body, so is learning to the mind. Our bodies grow and muscles develop with the intake of food ...
分类:其他好文   时间:2021-07-01 17:15:13    阅读次数:0
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数:0
python进行文件分类
python将数据快速分成训练集和测试集 参考博客: python将一个文件夹下图片按比例分在两个文件夹下_qq_32039433的博客-CSDN博客 代码如下: 神经网络模型训练时得到的数据并没有分成测试集和训练集,所以需要自己按比例进行分割,如下是进行的按照3:7进行数据分割python代码。 ...
分类:编程语言   时间:2021-06-29 15:29:56    阅读次数:0
centos 7 yum 安装mysql 5.6或 5.7
环境为最小化安装初始化环境 yum install -y vim net-tools wget tree lrzsz关闭防火墙systemctl stop firewalld.servicesystemctl disable firewalld.service关闭selinuxsed -i 's/S ...
分类:数据库   时间:2021-06-29 15:18:17    阅读次数:0
8606条   1 2 3 4 ... 861 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!