这学期非常有幸选了科大软院孟宁老师的高级软件工程课程。作为具有工程师背景的授课老师,孟宁老师对软件工程拥有非常丰富的工程经验,在课堂上结合Menu源码带我们深入浅出地探讨了此中蕴含的软件工程方法、规范以及软件工程思想。本文就结合自己学习的知识,对Menu源码进行阅读,来浅显地概述我对软件工程方法、规 ...
分类:
其他好文 时间:
2020-11-16 13:47:43
阅读次数:
8
下载地址:https://centos.org/download/ 各个版本区别 CentOS-7.0-1406-x86_64-DVD.iso 标准安装版,一般下载这个就可以了CentOS-7.0-1406-x86_64-NetInstall.iso 网络安装镜像CentOS-7.0-1406-x8 ...
分类:
其他好文 时间:
2020-11-16 13:08:33
阅读次数:
2
D - D CodeForces - 743A Vladik is a competitive programmer. This year he is going to win the International Olympiad in Informatics. But it is not as e ...
分类:
其他好文 时间:
2020-11-13 13:07:43
阅读次数:
10
登陆按钮的方法 loginbtn () { // 预校验 this.$refs.loginRef.validate(async (valid) => { // console.log(valid) if (!valid) { return } // 数据解构 const { data: res } ...
分类:
其他好文 时间:
2020-11-12 13:23:07
阅读次数:
6
第12题: 不会其他的办法,只能自己一个一个扫描,得到flag,stegsolve打开,帧捕捉,一共18张,挨个扫描 第13题 打开是一个游戏,完了,打不过,猜测应该是玩到最后一关才给出flag,那得玩到猴年马月??? 随便玩一下退出,文件夹多出一个save1,一个save2,winhex打开sav ...
分类:
其他好文 时间:
2020-11-11 16:13:40
阅读次数:
10
Celery 1.什么是Clelery Celery是一个简单、灵活且可靠的,处理大量消息的分布式系统 专注于实时处理的异步任务队列 同时也支持任务调度 Celery架构 Celery的架构由三部分组成,消息中间件(message broker),任务执行单元(worker)和任务执行结果存储(ta ...
分类:
其他好文 时间:
2020-11-10 11:18:05
阅读次数:
9
cd /downloadwget https://cdn.mysql.com/archives/mysql-utilities/mysql-utilities-1.6.5.tar.gztar xvf mysql-utilities-1.6.5.tar.gzcd mysql-utilities-1.6 ...
分类:
数据库 时间:
2020-11-10 11:09:25
阅读次数:
12
> wget http://pecl.php.net/get/yaf-3.0.8.tgz > sudo tar -zxvf yaf-3.0.8.tgz > cd yaf-3.0.8 > sudo /usr/bin/phpize7.1 > sudo ./configure --with-php-con ...
分类:
系统相关 时间:
2020-11-10 10:50:25
阅读次数:
12
edusohu网站: 线上视频网站 获取代码信息 wget http://download.edusoho.com/edusoho-8.2.17.tar.gz tar xf edusoho-8.2.17.tar.gz mv /server/tools/edusoho/* /html/edusoho/ ...
分类:
其他好文 时间:
2020-11-10 10:39:55
阅读次数:
2
查找软件: # 列出软件 tasklist # 查找 tasklist|findstr "string want to find" 关闭软件: taskkill /f /t /im "name of software" ...