1.下载mysqlhttps://dev.mysql.com/downloads/mysql/操作系统选RedHat依次下载四个安装包mysql-community-common-5.7.33-1.el7.x86_64.rpmmysql-community-libs-5.7.33-1.el7.x86 ...
分类:
数据库 时间:
2021-02-06 11:41:02
阅读次数:
0
先安装 npm install babel-polyfill --save-dev npm install es6-promise --save-dev npm install --save axios main.js引入 import 'babel-polyfill' import promise ...
分类:
其他好文 时间:
2021-02-06 11:39:39
阅读次数:
0
转自公众号“程序员黑叔” 1. css 一行文本超出... overflow: hidden; text-overflow:ellipsis; white-space: nowrap; 2.多行文本超出显示... display: -webkit-box; -webkit-box-orient: v ...
分类:
其他好文 时间:
2021-02-05 10:58:59
阅读次数:
0
//八皇后#include<bits/stdc++.h>using namespace std;int a[9];bool b[9],c[17],d[17];int num;int print(){ num++; for(int i=1;i<=8;i++) cout<<"("<<i<<","<<a[ ...
分类:
其他好文 时间:
2021-02-05 10:58:33
阅读次数:
0
MaixPy3 模块设计 围绕 Linux 进行设计,主要涵盖以下通用外设。 I2C > /dev/i2c-X > pylibi2c https://github.com/amaork/libi2c SPI > /dev/spidev1.0 > pyspidev https://github.com ...
分类:
系统相关 时间:
2021-02-05 10:39:12
阅读次数:
0
原题目: 这个题目其实很简单,但是有两个主要的坑: 1.题目给出的n可能是大于26的。比如我向后移动1位和移动27位实际上的效果是一样的,所以需要我们先对n模26得到实际移动的位数。 2.小写英文字母的ASCII码最大为'z'等于122,而char类型的最大值为127。使用字符数组时若直接加n可能会 ...
分类:
其他好文 时间:
2021-02-05 10:38:15
阅读次数:
0
P3052 [USACO12MAR]Cows in a Skyscraper G 预处理出每种状态的体积和,然后枚举子集转移。 时间复杂度 \(O\left(3^n\right)\)。 code: #include<bits/stdc++.h> using namespace std; #defin ...
分类:
其他好文 时间:
2021-02-05 10:29:05
阅读次数:
0
注:代码已托管在GitHub上,地址是:https://github.com/Damaer/Mybatis-Learning ,项目是mybatis-14-oneself-many2one,需要自取,需要配置maven环境以及mysql环境(sql语句在resource下的test.sql中),觉得 ...
分类:
其他好文 时间:
2021-02-04 12:15:49
阅读次数:
0
1.安装依赖的库 sudo apt build-dep global sudo apt install libncurses5-dev libncursesw5-dev 2.去GNU GLOBAL 官方下载最新的global包并解压 wget https://ftp.gnu.org/pub/gnu/ ...
分类:
系统相关 时间:
2021-02-04 12:12:54
阅读次数:
0
最近运行了一下之前用easyswoole写的一个爬虫的demo,却发现启动直接报错。swServer_start_check: onTask event callback must be set at,大致的意思是没有设置onTask事件。因为easyswoole是个框架,遇到这种问题真不好排查。 ...
分类:
其他好文 时间:
2021-02-04 12:06:26
阅读次数:
0