摘要: 首先打开Ubuntu的终端命令行 为使用bash命令 我们需要打开终端工具 我们可以使用alt+t 快捷键打开终端。也可以使用鼠标单击终端工具。如图所示 2 查看当前防火墙状态 在Ubuntu中 我们使用sudo ufw status命令查看当前防火墙状态;inactive状态是防火墙关闭状态 ac 阅读全文
posted @ 2022-01-12 16:28 suomiao 阅读(29472) 评论(0) 推荐(0) 编辑
摘要: ACCEL-PPP的安装 安装ACCEL-PPP。 安装编译器,cmake: 1 apt-get install build-essential cmake 取得ACCEL-PPP源码(编写本文时,SourceForge的ACCEL-PPP 1.11.2的源码扩展名虽为.tar.bz2,但实际上只由 阅读全文
posted @ 2022-01-11 16:00 suomiao 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 首先下载源tar包 可利用linux自带下载工具wget下载,如下所示: wget http://www.python.org/ftp/python/3.3.0/Python-3.3.0.tgz 下载完成后到下载目录下,解压 tar -xzvf Python-3.3.0.tgz 进入解压缩后的文件夹 阅读全文
posted @ 2021-12-29 13:19 suomiao 阅读(33) 评论(0) 推荐(0) 编辑
摘要: $(".div").toggle(); 阅读全文
posted @ 2021-03-26 10:50 suomiao 阅读(71) 评论(0) 推荐(0) 编辑
摘要: " 默认(pycharm已经安装;window10版本64位) 首先,通俗讲解一下三者关系: pycharm是用来提高代码高亮的(高亮就是关键字的颜色)以及格式化的 anaconda是提供python运行环境,还有一些常用的python计算库 tensorflow目前我了解到是深度学习的框架 首先 阅读全文
posted @ 2021-03-08 14:28 suomiao 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: import os import cv2 ##加载OpenCV模块 def video2frames(pathIn='', pathOut='', only_output_video_info=False, extract_time_points=None, initial_extract_time 阅读全文
posted @ 2021-03-01 14:26 suomiao 阅读(1537) 评论(0) 推荐(0) 编辑
摘要: //匹配时间格式:20190322T142523910(严格匹配) var DATE_REGEXP = new RegExp("^(\\d{4})(\\d{2})(\\d{2})([T\\s](\\d{2})(\\d{2})(\\d{2})(\\d{3}))$"); function toDate( 阅读全文
posted @ 2021-02-20 13:41 suomiao 阅读(232) 评论(0) 推荐(0) 编辑
摘要: * { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none 阅读全文
posted @ 2020-11-16 11:22 suomiao 阅读(4126) 评论(0) 推荐(0) 编辑
摘要: linear-gradient() 函数用于创建一个表示两种或多种颜色线性渐变的图片。 <linear-gradient> = linear-gradient( [ [ <angle> | to <side-or-corner> ] ,]? <color-stop>[, <color-stop>]+ 阅读全文
posted @ 2020-10-26 16:57 suomiao 阅读(601) 评论(0) 推荐(0) 编辑
摘要: box-shadow是给元素块添加周边阴影效果基本语法是: {box-shadow:[inset] x-offset y-offset blur-radius spread-radiuscolor} {box-shadow:方向 水平偏移 竖直偏移 模糊距离 阴影尺寸} "混合模式":Photosh 阅读全文
posted @ 2020-10-26 15:12 suomiao 阅读(128) 评论(0) 推荐(0) 编辑