sudo gedit /etc/default/grub 找到#GRUB_GFXMODE=800x600这行,把800x600改成你想要的分辨率,比如1920x1080,并去掉这一行前面的#,改后变为GRUB_GFXMODE=1920x1080 ,然后保存 打开终端用命令更新grub:sudo up ...
分类:
其他好文 时间:
2020-08-03 23:30:36
阅读次数:
97
题意描述 同样没有链接...。 Problem 2: Lock Her Up [Jan Kuipers, 2003] Bessie has been bad again and Farmer John must punish her by locking her up for a while. On ...
分类:
其他好文 时间:
2020-08-02 23:35:51
阅读次数:
104
yum是Linux系统的安装必备神器,简直不要太方便。但是新系统一般是不自带yum工具的,所以需要手动安装一下。 环境:centos7 1. 新建一个目录用来保存yum安装包 mkdir install 2. 进入文件夹并输入命令 wget http://yum.baseurl.org/downlo ...
分类:
系统相关 时间:
2020-07-31 14:04:18
阅读次数:
98
学习内容总结来自B站UP主"遇见狂神说"的Docker教学视频: https://www.bilibili.com/video/BV1og4y1q7M4 DockerFile dockerfile是用来构建docker镜像的文件, 是一个命令参数脚本 构建步骤: 编写dockerfile文件 doc ...
分类:
其他好文 时间:
2020-07-30 18:28:07
阅读次数:
88
1、VScode常用快捷键: 1 Ctrl + Enter //在光标下一行插入新行 2 Shift + Alt + Up //复制当前行至光标上一行 3 Shift + Alt + Down //复制当前行至光标下一行 4 不选中任何内容:Ctrl + C //复制当前行 5 Ctrl + V / ...
分类:
其他好文 时间:
2020-07-29 09:57:20
阅读次数:
84
#include <iostream> #include <map> using namespace std; typedef struct alertInfo { double alertUp; double alertDown; alertInfo(double up, double down) ...
分类:
其他好文 时间:
2020-07-28 22:25:22
阅读次数:
75
学习内容总结来自B站UP主"遇见狂神说"的Docker教学视频: https://www.bilibili.com/video/BV1og4y1q7M4 容器数据卷 作用: 能够实现容器的数据持久化以及数据共享同步(包括容器间和容器与主机间) 效果: 同步后, 能够直接在本机修改容器的配置文件等, ...
分类:
其他好文 时间:
2020-07-28 14:30:53
阅读次数:
66
round_up.cpp内容如下: #include <iostream> using namespace std; const int kAlign = 8; // kAlign show be powers of 2, say 2, 4 ,8, 16, 32, ... const int kAl ...
分类:
其他好文 时间:
2020-07-28 13:51:52
阅读次数:
100
#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e5+5;/ ...
分类:
其他好文 时间:
2020-07-27 09:31:11
阅读次数:
66
tap def tap(self: T, positions: List[Tuple[int, int]], duration: Optional[int] = None) -> T: """Taps on an particular place with up to five fingers, h ...
分类:
移动开发 时间:
2020-07-27 09:24:25
阅读次数:
114