HTML(三)图像标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ImageDirectoryStudy</title> </head> <body> <img src="../resourse/ima ...
分类:
Web程序 时间:
2021-04-06 14:05:55
阅读次数:
0
(1) 电脑没有Hyper-V pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do d ...
#### 打开cmd的方式 1.开始+系统+命令提示符 2.win键+R 输入cmd 打开控制台 (推荐使用) 3.资源管理器的地址栏前面加上 cmd #### 管理员身份运行:以管理员方式运行 ### 常用的Dos命令 ```bash1. #盘符切换 E: #该盘下的所有文件 dir #切换目录 ...
分类:
其他好文 时间:
2021-04-02 13:37:03
阅读次数:
0
# 需要修改oracle的配置数据库 import cx_Oracle from Common.dir_config import caps_dir import yaml class DoSql: def do_orcal(self,query_sql,state='all'): # 1打开yam ...
分类:
数据库 时间:
2021-04-01 13:48:10
阅读次数:
0
#include <linux/module.h> // module_init module_exit #include <linux/init.h> // __init __exit #include <linux/cdev.h> #include <linux/fs.h> #define MY ...
分类:
其他好文 时间:
2021-04-01 13:34:35
阅读次数:
0
1 MySQL 1.1 安装 在root用户权限下 # 创建mysql用户和用户组,同时禁止登陆 shell> groupadd mysql shell> useradd -r -g mysql -s /bin/false mysql # tar解压mysql压缩包,同时把他移到你向安装的位置 sh ...
分类:
数据库 时间:
2021-04-01 13:30:26
阅读次数:
0
打开CMD 开始+系统+命令提示符 win键+R 输入CMD 在任意文件夹下面,按住shift+鼠标右键 在此处打开命令窗口 管理员方式运行 常用Dos命令 盘符切换 c: 查看当前目录所有文件 dir 切换目录 cd /d c:\文件名 回上一级 cd.. 清理屏幕 cls 推出终端 exit 查 ...
分类:
其他好文 时间:
2021-03-30 13:59:01
阅读次数:
0
const { resolve } = require("path") const HtmlWebpackPlugin = require('html-webpack-plugin') module.exports = { entry: './src/index.js', output: { fil ...
分类:
Web程序 时间:
2021-03-29 12:08:56
阅读次数:
0
迭代器和生成器 一、迭代器 什么是可迭代对象:可以被for循环的便是可迭代对象 可以通过下面方法来证明(也可以用该方法判断变量的数据类型) li=[11,2,3,4,5] dic={'key1':'a','key2':'b'} print(isinstance(li,list))#True prin ...
分类:
其他好文 时间:
2021-03-29 11:55:10
阅读次数:
0
#!/bin/bash mkdir /etc/yum.repos.d/repo mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.ali ...
分类:
其他好文 时间:
2021-03-18 14:42:38
阅读次数:
0