会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Just run
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
24
25
26
27
28
29
30
31
32
···
139
下一页
2021年7月5日
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
阅读(342)
评论(0)
推荐(0)
2021年6月28日
linux 中字符映射错误,#、\、|、“ 不能输入
摘要: https://blog.csdn.net/qq_28648861/article/details/93364861
阅读全文
posted @ 2021-06-28 14:32 katago
阅读(1435)
评论(0)
推荐(0)
2021年6月11日
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
阅读(479)
评论(0)
推荐(0)
2021年5月19日
如何监控系统用户实时执行的Linux命令
摘要: 在监控系统中,监控某个命令的动态常常使用的命令是watch。今天介绍的命令是linux上的小工具sysdig。 您是Linux系统管理员,想要监控系统用户执行的所有Linux命令的活动,通过终端或者 要了解系统中用户正在做什么,可以使用w命令,如下所示。 # w 如果你的系统有bash ,那么最常用
阅读全文
posted @ 2021-05-19 16:26 katago
阅读(782)
评论(0)
推荐(0)
2021年5月14日
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
阅读(116)
评论(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
阅读(223)
评论(0)
推荐(0)
2021年5月12日
字典序最小问题(贪心)
摘要: 挑战程序竞赛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
阅读(71)
评论(0)
推荐(0)
2021年5月10日
nmap 目标指定
摘要: https://nmap.org/book/man-target-specification.html 可以通过下面这个参数指定从文件中加载ip -iL <inputfilename> 爆破sshnmap -p 22 --script ssh-brute --script-args userdb=u
阅读全文
posted @ 2021-05-10 18:10 katago
阅读(108)
评论(0)
推荐(0)
debian 系统安装最新版本nmap方法:
摘要: 根据官网, 把rpm包转换为deb包,再安装 https://nmap.org/book/inst-linux.html#inst-debian If you don't have the alien command, install it with a command such as sudo a
阅读全文
posted @ 2021-05-10 18:01 katago
阅读(1113)
评论(0)
推荐(1)
2021年4月30日
1秒时限情况下算法复杂度要求
摘要: 挑战程序设计竞赛(第二版)提到: 假设时间限制为1秒的情况下,算法复杂度可行性如下: 10**6 游刃有余 10**7 勉勉强强 10**8 很悬,循环体非常简单才可以 抽签问题 实际测试,的确如此,到10**8 复杂度就要0.3s 以下是n^4算法的测试结果: >>> 50**4 6250000
阅读全文
posted @ 2021-04-30 16:11 katago
阅读(434)
评论(0)
推荐(0)
上一页
1
···
24
25
26
27
28
29
30
31
32
···
139
下一页
公告