#-*-coding:utf-8-*- # @Time :2021/4/22 7:08 # @Author:shuaichao # @File :.py # @Software: PyCharm from bs4 import BeautifulSoup #网页解析,获悉数据.231 import ...
分类:
其他好文 时间:
2021-06-03 17:56:50
阅读次数:
0
相比Windows系统,Linux系统上安装MySQL比较简单,本文将详细介绍如何在Ubuntu系统安装MySQL。 PART 1 安装MySQL 1.更新软件源 sudo apt update 2.安装MySQL sudo apt-get install mysql-server sudo apt ...
分类:
数据库 时间:
2021-06-03 17:48:23
阅读次数:
0
kubectl是一个用于连接Service Mesh控制平面的工具,可以安装在办公电脑的Windows系统上,也可以安装在虚拟机的Linux系统上,只要网络能与控制平面的公网地址互通即可。下面分别介绍在Windows系统和Linux系统的安装方法。 1. Windows上安装kubectl1.1. ...
分类:
其他好文 时间:
2021-06-03 17:36:36
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:
其他好文 时间:
2021-06-02 20:39:46
阅读次数:
0
本文并不详细介绍Intel syntax、AT&T syntax、GAS、NASM的具体内容和具体区别,而是从概念辨析的角度说明这些专有名词的含义,以便为初学者扫清疑惑。 ...
分类:
其他好文 时间:
2021-06-02 20:34:02
阅读次数:
0
在c++新标准之前通常使用c的函数rand来生成随机数。 现在可以使用下面这种方式: #include <random> #include <ctime> //生成0到9之前的随机整数 static std::default_random_engine e(time(0));//time(0)返回特 ...
分类:
编程语言 时间:
2021-06-02 20:13:41
阅读次数:
0
1 #include <time.h> 2 #include <stdio.h> 3 #include <errno.h> 4 #include <string.h> 5 #include <stdlib.h> 6 7 #include <winsock2.h> 8 #include <iphlpa ...
1.Prometheus简介 Prometheus受启发于Google的Brogmon监控系统(相似的Kubernetes是从Google的Brog系统演变而来),从2012年开始由前Google工程师在Soundcloud以开源软件的形式进行研发,并且于2015年早期对外发布早期版本。2016年5 ...
分类:
其他好文 时间:
2021-06-02 19:52:46
阅读次数:
0
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:
编程语言 时间:
2021-06-02 19:50:48
阅读次数:
0
本文主要介绍Python中pip在Windows、Mac和Linux上安装方法。PIP是一个递归的缩写,代表“PIP Installs Packages”或“Preferred Installer Program”。它是一个命令行实用程序,允许您使用简单而直接的命令安装,重新安装或卸载PyPI包:p ...
分类:
编程语言 时间:
2021-06-02 19:50:31
阅读次数:
0