链接:Miku 看起来蛮简单的,就是一道模拟 求出1-l到1-r,减一下 数据范围?longlong走起 kkkk #include<iostream> #include<cstdio> using namespace std; int k,m; long long l,r; long long s ...
分类:
其他好文 时间:
2020-07-18 22:43:02
阅读次数:
116
买的云服务器发现系统盘空间不足,但是买的时候是80GB,可用只有8GB 问了客服说硬盘没有挂载上 于是有了下面的操作 [root@localhost ~]# lsblk -fNAME FSTYPE LABEL UUID MOUNTPOINTfd0 sda ├─sda1 xfs 34f79a00-9e ...
分类:
系统相关 时间:
2020-07-18 22:31:18
阅读次数:
94
仅罗列了一些常用基础配置,更多配置请到官网查看 https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html elasticsearch.yml配置文件 # Cluster #es集群名称,es会自动发现在同一网 ...
分类:
其他好文 时间:
2020-07-18 22:02:02
阅读次数:
73
Click 命令行神器 在Python开发和测试过程中主要有两种模式可以选择:脚本模式、命令行模式。在代码的开发和调试过程中使用脚本模式还是很方便的,尤其接触pycharm、eclipse这类强大的IDE,或者配合vs code这种综合的文本编辑器。但是如果使用纯文本编辑器,或者是在做整个系统开发时 ...
分类:
其他好文 时间:
2020-07-18 20:01:23
阅读次数:
80
Linux下安装Artemis Artemis是下一代的ActiveMQ,也就是说目前的ActiveMQ是5.x,Artemis将是6.x 1. 下载 官网下载地址: https://activemq.apache.org/components/artemis/download/ wget http ...
分类:
其他好文 时间:
2020-07-18 19:47:13
阅读次数:
133
使用VS2017和Qt5.12.4。(Windows10) 点击生成到生成成功大概有这几个步骤: 源码 -> 预处理 -> 编译和优化 -> 生成目标文件 -> 链接 -> 生成可执行文件 1.源码(编辑器) 自己键盘敲出来的程序代码(或者ctrl + c)。 2.预处理(预处理器) 主要负责以下的 ...
分类:
编程语言 时间:
2020-07-18 15:41:22
阅读次数:
77
string text = @"var query = from info in infoList where info.AuditFlag == null || info.AuditFlag == false join emp in empList on info.SaleMan equals e ...
分类:
其他好文 时间:
2020-07-18 13:37:42
阅读次数:
73
前言 记录一下步骤 下载安装 github官网 切换源 ## 打开Terminal复制回车即可 cd /etc/apt/&& cp sources.list sources.list.bk&& echo deb https://mirrors.tuna.tsinghua.edu.cn/debian/ ...
分类:
其他好文 时间:
2020-07-18 11:17:24
阅读次数:
238
步骤一 webpack 配置中添加ProvidePlugin插件,congfig/webpack.config.js: module.exports = function (webpackEnv) { plugins: [ new webpack.ProvidePlugin({ $: 'jquery ...
分类:
Web程序 时间:
2020-07-18 00:58:22
阅读次数:
169
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int N=5e5+10; struct node{ int cnt; node * nxt[27]; node * fail; vector<node ...
分类:
其他好文 时间:
2020-07-18 00:44:51
阅读次数:
57