-- 查看表结构desc 表名; -- 查看表中字段的结构信息select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name ...
分类:
数据库 时间:
2021-03-10 12:59:11
阅读次数:
0
在搭建k8s集群时需要初始化命令"kubeadm init",报错误,然后根据提示执行:"kubeadm config images pull",还报错,此处一万匹马在大草原奔腾~~~~~~~ 然后凭借自我感觉以及查询资料得出:是因为要下载k8s.gcr.io的docker镜像,但是国内连不上htt ...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'consoleConfig': Injection of autowired dependencies failed; ne ...
分类:
其他好文 时间:
2021-03-09 13:43:34
阅读次数:
0
Tinyply 源码阅读 ply格式介绍见:http://paulbourke.net/dataformats/ply/ tinyply项目路径为:https://github.com/ddiakopoulos/tinyply/ 这里先放一个ply的示例: ply format ascii 1.0 ...
分类:
其他好文 时间:
2021-03-09 13:21:52
阅读次数:
0
https://blog.csdn.net/holdlg/article/details/62436537 time.time() 得到浮点型的时间戳 time.localtime() 都得到 struct_time time.strftime() 可以这么理解 “string format tim ...
分类:
其他好文 时间:
2021-03-06 14:58:28
阅读次数:
0
前面字体设的是 Ubuntu Mono,没有的可以去Ubuntu里拷一份,字体放大了点。剩下的是一些基本的操作,可按需取用。 开启自动全屏仅适用于Windows系统。 1 (custom-set-variables 2 ;; custom-set-variables was added by Cus ...
分类:
系统相关 时间:
2021-03-06 14:43:24
阅读次数:
0
from __future__ import print_function import numpy as np import cv2 as cv def main(): def decode_fourcc(v): v = int(v) return "".join([chr((v >> 8 * i ...
分类:
其他好文 时间:
2021-03-06 14:32:36
阅读次数:
0
配置防火墙问题 最近在服务器上部署项目时遇到了用ip访问不了的问题, 在一个纯洁的unbantu环境中 需要先安装防火墙 sudo apt install firewalld 然后启动防火墙 systemctl restart firewalld 我出现了防火墙被锁定的提示 Failed to re ...
分类:
其他好文 时间:
2021-03-06 14:21:48
阅读次数:
0
导致这个错误的原因主要是因为jdk版本问题,此处有两个原因,一个是编译版本不匹配,一个是当前项目jdk版本不支持。(主要分为:项目JDK版本、工程JDK版本、编译JDK版本) 参考: https://blog.csdn.net/wo541075754/article/details/82119860 ...
分类:
编程语言 时间:
2021-03-06 14:20:32
阅读次数:
0
记一个代理获取方法 语言:Python 库:requests、lxml、time、random 代理网站:https://www.kuaidaili.com/free/ 思路:通过访问链接来获取代理并且进行代理测试有效后写入txt保存 步骤: 1.查看页面的翻页地址发现相同规律后可做翻页请求 2.每 ...
分类:
其他好文 时间:
2021-03-05 13:02:42
阅读次数:
0