上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 127 下一页

UVA572

摘要: ****@ *@@*@ *@**@ @@@*@ @@**@ 标记后图像: 00001 02201 02001 22201 22001 阅读全文
posted @ 2021-07-21 16:45 katago 阅读(71) 评论(0) 推荐(0) 编辑

福州小升初摇号程序

摘要: #include<cstdio> #include<cstring>#include<iostream>#include<string>#include<algorithm>using namespace std;#if 0//2021 台江华伦int canyu=1979;int jihua=32 阅读全文
posted @ 2021-07-16 13:37 katago 阅读(105) 评论(0) 推荐(0) 编辑

onlinejudge 修改定制

摘要: https://www.longkui.site/onlinejudge/ 反向代理。我们可以先试想一下下面的情景:我有3个域名(一个主域名,两个二级域名),都指向一个IP,也就是物理服务器,A域名是博客,B域名是OJ,C域名是你自己搭建的一个项目。我们想通过不同的域名访问到不同的项目 https: 阅读全文
posted @ 2021-07-05 11:27 katago 阅读(44) 评论(0) 推荐(0) 编辑

QingdaoU/OnlineJudge 安装

摘要: 根据下面链接,用dock安装 https://github.com/QingdaoU/OnlineJudgeDeploy 前端修改: 根据文档 https://opensource.qduoj.com/#/onlinejudge/guide/update_fe 下载编译步骤如下: git clone 阅读全文
posted @ 2021-07-05 10:29 katago 阅读(207) 评论(0) 推荐(0) 编辑

linux 中字符映射错误,#、\、|、“ 不能输入

摘要: https://blog.csdn.net/qq_28648861/article/details/93364861 阅读全文
posted @ 2021-06-28 14:32 katago 阅读(1337) 评论(0) 推荐(0) 编辑

Qt::Key_Return Qt::Key_Enter 区别

摘要: void Widget::keyPressEvent(QKeyEvent *event) { qDebug() << event->key() << "\t" << Qt::Key_Enter << "\t" << Qt::Key_Return; if( event->key() == Qt::Ke 阅读全文
posted @ 2021-06-11 17:05 katago 阅读(397) 评论(0) 推荐(0) 编辑

如何监控系统用户实时执行的Linux命令

摘要: 在监控系统中,监控某个命令的动态常常使用的命令是watch。今天介绍的命令是linux上的小工具sysdig。 您是Linux系统管理员,想要监控系统用户执行的所有Linux命令的活动,通过终端或者 要了解系统中用户正在做什么,可以使用w命令,如下所示。 # w 如果你的系统有bash ,那么最常用 阅读全文
posted @ 2021-05-19 16:26 katago 阅读(667) 评论(0) 推荐(0) 编辑

a3考卷转2张a4

摘要: sudo apt-get install pdfposter pdfposter path/to/input.pdf path/to/output_splitted.pdf -m a4 -p 2x1a4 阅读全文
posted @ 2021-05-14 17:58 katago 阅读(92) 评论(0) 推荐(0) 编辑

kali

摘要: 分析网站内容和技术 whatweb -v -a 3 34.82.112.5 暴力枚举路径,子域名等 sudo apt install gobuster gobuster dir -e -u http://34.82.112.5/ -w /usr/share/wordlists/dirb/common 阅读全文
posted @ 2021-05-14 17:25 katago 阅读(199) 评论(0) 推荐(0) 编辑

字典序最小问题(贪心)

摘要: 挑战程序竞赛2.3.3 #include <iostream> #include <cstdio> using namespace std; const int MAX_N=2000; int N; char S[MAX_N+1]; void solve() { bool left=true; in 阅读全文
posted @ 2021-05-12 10:06 katago 阅读(45) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 127 下一页