//全局安装 asar npm install asar -g //解包 asar e app.asar 文件夹 ...
分类:
其他好文 时间:
2021-02-27 13:30:05
阅读次数:
0
参考: https://www.cnblogs.com/CesareZhang/p/11140520.html https://www.cnblogs.com/CesareZhang/p/10744722.html 框架结构: Business:业务相关公共模块,如登录Common:业务无关公共模块 ...
分类:
其他好文 时间:
2021-02-26 13:33:35
阅读次数:
0
###概述 如上图所示,通过stm32f4xx技术参考手册,可知stm32f407有6个串口,4个USART,2个UART。其中各个模式表示的解释如下: 1.异步模式: ...
分类:
其他好文 时间:
2021-02-23 14:25:21
阅读次数:
0
#include<cstdio> #include<iostream> #include<set> #include<algorithm> using namespace std; set<int> s; int main(void) { int R, n; while (cin >> R >> n ...
分类:
其他好文 时间:
2021-02-08 12:52:08
阅读次数:
0
Two strings are considered close if you can attain one from the other using the following operations: Operation 1: Swap any two existing characters. F ...
分类:
其他好文 时间:
2021-01-25 11:07:52
阅读次数:
0
前言 ? 操作系统以及Mysql数据库的实时性能状态数据尤为重要,特别是在有性能抖动的时候,这些实时的性能数据可以快速帮助你定位系统或Mysql数据库的性能瓶颈,镜像你在Linux系统上使用top、iostat等命令工具一样,可以立刻定位OS的性能瓶颈是在I/O还是CPU上,所以手机和展示这些性能数 ...
分类:
数据库 时间:
2021-01-12 11:16:42
阅读次数:
0
前言 栈(Stack)是一种后进先出的数据结构,仅允许在栈顶插入、删除、读取。队列(Queue)是一种先进先出的数据结构,队头读取、删除,队尾插入。 使用数组实现栈 使用到的MyArrayList和MyLinkedList详情请查看 java实现一个自己的ArrayList和LinkedList p ...
分类:
编程语言 时间:
2021-01-01 12:59:10
阅读次数:
0
一、iostat # iostat Linux 3.10.0-957.el7.x86_64 (localhost.localdomain) 2020年10月10日 _x86_64_ (3 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 0 ...
分类:
移动开发 时间:
2020-12-29 10:58:43
阅读次数:
0
Shell 监控CPU/内存/负载高时的进程 1、编写脚本 vim cpu-warning.sh #!/bin/bash #监控系统cpu的情况脚本程序 #取当前空闲cpu百份比值(只取整数部分) [ ! -f /bin/sar ] && yum install sysstat -y &>/dev/ ...
分类:
系统相关 时间:
2020-12-24 11:58:34
阅读次数:
0
如果一个命令只有一次输出,但想持续观察输出变化,使用watch-d-n1‘df-h‘可行,df-h输出一次硬盘使用情况,用上面指令可以持续观察。-d表示相邻输出如果有差异要高亮标记,-n1表示每隔一秒执行一次df-h指令。观察网络接口流量sar-nDEV1200,DEV1表示监控第一个网卡,200表示输出200次监控结果。日志文件很大,只想处理最后的十万行,tail-n100000
分类:
系统相关 时间:
2020-12-22 11:48:26
阅读次数:
0