1.下载CentOS7.9 下载CentOS可以到其官方下载,官方地址:https://www.centos.org/download/ 不过我进到这个网站最终也没找到下载链接。 可以到这个网站 https://freecplus.net/bc14e930a8644f558e46b7411b8ad8 ...
分类:
系统相关 时间:
2020-11-25 12:32:43
阅读次数:
11
ubuntu下更改mysql数据库datadir位置
分类:
数据库 时间:
2020-11-25 12:16:01
阅读次数:
8
在我们的工作中,经常会遇到系统或模块重构工作,今天就来聊一聊我曾经经历过的一次系统重构经历。 01 背景? 重构发生的背景是,原有的系统架构采用all-in-one的方式,随着业务的快速发展,用户访问量急剧上升,系统请求流量成倍增长,陆续出现了各种问题。当时的系统架构的示意图如下 02 痛点 当时遇 ...
分类:
其他好文 时间:
2020-11-25 12:11:05
阅读次数:
4
Js中Proxy对象 Proxy对象用于定义基本操作的自定义行为,例如属性查找、赋值、枚举、函数调用等。 语法 const proxy = new Proxy(target, handler); target: 要使用Proxy包装的目标对象,可以是任何类型的对象,包括原生数组,函数,甚至另一个代理 ...
分类:
Web程序 时间:
2020-11-24 12:04:00
阅读次数:
13
Transfer data from Hospital to Regional System Microsoft provides you the following solutions for emergency response: The Hospital Emergency Response ...
分类:
移动开发 时间:
2020-11-23 12:41:15
阅读次数:
24
SHA1 VS RSA: what's the difference between them? Fundamentally different. SHA1 is a hash algorithm, which is a one way function, turning an input of a ...
分类:
其他好文 时间:
2020-11-23 12:09:41
阅读次数:
4
// 直播时长处理 export const formateLiveTimeLength = (startTime, endTime) =>{ // 时间格式’YYYY-MM-DD HH:MM‘ // ios系统 需要把 YYYY-MM-DD 转化为 YYYY/MM/DD let start = [ ...
分类:
Web程序 时间:
2020-11-23 12:00:11
阅读次数:
10
import random import string import time usrinfo= #总字典 main_screen = """ ATM管理系统 1、登陆 2、注册 3、退出 """ login_screen = """ 1、取款 2、存款 3、转账 4、查询账户信息 5、冻结账户 6 ...
分类:
其他好文 时间:
2020-11-23 11:51:34
阅读次数:
24
Apriori算法 源码 具体原理先鸽了 下面是代码 view code #coding:utf-8 # generate data def genData(): return [['牛奶','啤酒','尿布'], ['牛奶','面包','黄油'], ['牛奶','尿布','饼干'], ['面包', ...
分类:
编程语言 时间:
2020-11-21 12:33:25
阅读次数:
20
#include <math.h> #include <stdio.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a, ...
分类:
其他好文 时间:
2020-11-21 12:31:36
阅读次数:
8