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