Fork me on GitHub
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 98 下一页
摘要: 禁用SysMain Win+R → services.msc SysMain 是将常用程序的数据缓存到内存中,减少启动程序时间。但可能占用大量 CPU,RAM 和磁盘资源,导致性能出现问题。 禁用Prefetch 系统启动会缓慢,PerFetch正在将一堆数据从HDD预加载到RAM。如果在每次启动计 阅读全文
posted @ 2021-05-18 15:15 秋夜雨巷 阅读(1347) 评论(0) 推荐(1)
摘要: 官网下载 https://www.mongodb.com/try/download/community 官网下载最新版4.4.6 选择Custom安装 自定义安装路径 安装为服务并配置用户名密码 选择自定义用户名密码会报错 Account Domain: . Account Name: admini 阅读全文
posted @ 2021-05-13 11:32 秋夜雨巷 阅读(88) 评论(0) 推荐(0)
摘要: DataAccessException DataAccessException是Mybatis封装的异常,继承了RuntimeException这个类。 步骤 Mapper接口抛出DataAccessException异常 int insertSelective(BusArea record) th 阅读全文
posted @ 2021-04-26 11:31 秋夜雨巷 阅读(1984) 评论(0) 推荐(0)
摘要: 使用hexo框架实现github当作网站 阅读全文
posted @ 2021-04-21 00:42 秋夜雨巷 阅读(662) 评论(2) 推荐(0)
摘要: Http Digest 简介 摘要访问认证最初由RFC 2069中被定义。RFC 2069大致定义了一个传统的由服务器生成随机数来维护安全性的摘要认证架构。 第一次访问响应401,服务器生成nonce参数,nonce位于响应头WWW-Authenticate中。 第二次访问根据nonce计算出res 阅读全文
posted @ 2021-04-09 16:04 秋夜雨巷 阅读(955) 评论(0) 推荐(0)
摘要: ollydbg 官网:http://www.ollydbg.de/ 跟踪寄存器,识别进程,API调用,表,常量和字符串,以及从目标文件和库中查找例程. 界面布局 汇编窗口 注释信息 Options → Automatical module analysis → Main module.选中后会自动分 阅读全文
posted @ 2021-04-02 10:49 秋夜雨巷 阅读(1866) 评论(0) 推荐(0)
摘要: GCC环境 首先安装gcc环境 https://www.cnblogs.com/aeolian/p/14562572.html Win+R输入mingw-get安装管理器,安装gdb,或者命令行输入mingw-get install gdb VSCode配置 配置编译环境 VSCode中 Ctrl+ 阅读全文
posted @ 2021-03-25 20:51 秋夜雨巷 阅读(354) 评论(0) 推荐(0)
摘要: 安装C++环境 阅读全文
posted @ 2021-03-21 11:29 秋夜雨巷 阅读(292) 评论(0) 推荐(0)
摘要: 普通请求 Userinfo sessionUserinfo = (Userinfo)session.getAttribute("CURR_USER"); //如果已经登录,不拦截 if(sessionUserinfo!=null){ return true; }else { //直接response 阅读全文
posted @ 2021-03-13 11:36 秋夜雨巷 阅读(962) 评论(0) 推荐(0)
摘要: Python升级到2.7 下载安装 #下载并解压python2.7 cd /usr/local/src wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz tar -zxvf Python-2.7.10.tgz cd Pyt 阅读全文
posted @ 2021-03-10 22:57 秋夜雨巷 阅读(190) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 98 下一页