前面代码: https://files.cnblogs.com/files/zach0812/zcb202007121246.zip 颜色: 资料:https://learnopengl-cn.github.io/02%20Lighting/01%20Colors/ ...
分类:
其他好文 时间:
2020-07-12 13:56:07
阅读次数:
33
不得不说,mysql client的安装及改初始密码步骤多,繁琐,坑也不少,下面就总结下安装流程及遇到的那些坑(Windows): 1.安装 安装地址:https://dev.mysql.com/downloads/mysql/ 下载完后,我们将 zip 包解压到相应的目录,这里我将解压后的文件夹放 ...
分类:
数据库 时间:
2020-07-12 01:09:34
阅读次数:
104
3 函数语法 def function_name(parameterlist): ['''comments'''] [functionbody] function_name:函数名称 parameterlist:可选参数,用于指定向函数中传递的参数 comments:可选,表示为函数指定注释,如果指... ...
分类:
编程语言 时间:
2020-07-11 23:08:56
阅读次数:
76
一、准备 1. Oracle11g安装包: p13390677_112040_Linux-x86-64_1of7.zip p13390677_112040_Linux-x86-64_2of7.zip 2. 虚拟机配置参考: 虚拟机安装CentOS7具体过程参见:https://blog.51cto. ...
分类:
数据库 时间:
2020-07-11 22:31:24
阅读次数:
74
Description Name: dpwwn: 2 Date release: 8 Aug 2019 DHCP service: Disabled Static IP address: 10.10.10.10/24 Goal: Get the root shell i.e.(root@dpwwn- ...
分类:
其他好文 时间:
2020-07-11 17:44:46
阅读次数:
69
Linux的压缩/解压缩命令详解及实例 压缩服务器上当前目录的内容为xxx.zip文件 zip -r xxx.zip ./* 解压zip文件到当前目录 unzip filename.zip 另:有些服务器没有安装zip包执行不了zip命令,但基本上都可以用tar命令的,实例如下: tar -zcvf ...
分类:
系统相关 时间:
2020-07-11 12:38:54
阅读次数:
58
import zipfile with zipfile.ZipFile(r'E:/Python爬虫精进.zip','r') as f: for 文件名 in f.namelist(): 信息=f.getinfo(文件名) 文件名=文件名.encode('cp437').decode('gbk') p ...
分类:
其他好文 时间:
2020-07-11 12:28:20
阅读次数:
76
下载zip包 https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.29-winx64.zip 解压安装包 D:\mysql-5.7.29-winx64\mysql-5.7.29-winx64 在根路径创建my.ini [mysql] # 设置mysq ...
分类:
数据库 时间:
2020-07-10 20:58:50
阅读次数:
153
通过索引进行优化: MySQL中的order by使用的时候是全排序,全排序比较低,可以使用索引,提升排序的效率; https://visualgo.net/zh https://geeksforgeeks.org1.索引的匹配方式: mysql官网下载saklia相关zip; 登录mysql执行 ...
分类:
数据库 时间:
2020-07-10 19:09:37
阅读次数:
54