Spring-tool-suite的下载:https://spring.io/tools SpringBoot简介 SpringBoot是整个Spring技术栈的整合,来简化Spring应用开发,约定大于配置,去繁从简,just run 就能创建一个独立的,产品级别的应用。 解决: "Spring全 ...
分类:
编程语言 时间:
2020-07-03 21:13:52
阅读次数:
92
Archive old log files NLog 4.5 makes it easy to setup archive logic to move/cleanup old files with dynamic fileName-Layout. You just need to configure ...
分类:
其他好文 时间:
2020-07-03 15:55:03
阅读次数:
68
基本方法又可以分为三种:抽象方法(Abstract Method)、具体方法(Concrete Method)和钩子方法(Hook Method)。 这是我在《java与模式》书里看到的一种说法,觉得很新鲜,因为在我的印象中没有以这种方式来对方法分类,可能这也就是在设计模式中的叫法。 这三种方法也是 ...
分类:
其他好文 时间:
2020-06-30 17:34:50
阅读次数:
65
phpunit也有browserTest For newer versions of phpunit, it is just: phpunit --filter methodName path/to/file.php一次运行一个命令, 0--以前的版本: phpunit --filter testS ...
分类:
Web程序 时间:
2020-06-30 17:25:54
阅读次数:
65
React Hooks 概念 为什么叫 React Hooks. 阮一峰解释 React Hooks React Hooks 的意思是,组件尽量写成纯函数,如果需要外部功能和副作用,就用钩子把外部代码"钩"进来。 React Hooks 就是那些钩子。 你需要什么功能,就使用什么钩子。React 默 ...
分类:
其他好文 时间:
2020-06-30 00:46:30
阅读次数:
50
什么是 JIT? 名如其特点,JIT —— just in time,即时编译。 把它详细化点讲,就是 一个程序在它运行的时候创建并且运行了全新的代码,而并非那些最初作为这个程序的一部分保存在硬盘上的固有的代码。就叫 JIT。 这里有几点要看的: 程序需要运行 生成的代码是新的代码,并非作为原始程序 ...
分类:
其他好文 时间:
2020-06-26 20:06:38
阅读次数:
155
1. Run a few randomly-generated problemswith just two jobs and two queues; compute the MLFQ execution trace for each. Make your life easier by limitin ...
分类:
其他好文 时间:
2020-06-26 16:17:45
阅读次数:
78
插件 sup A Flutter widget which displays an image, a title, and a subtitle for errors, empty states, or just fancy custom messages. pub-rules simple yet ...
分类:
其他好文 时间:
2020-06-24 19:35:59
阅读次数:
105
外挂、木马、病毒等可能需要读取其他进程的数据,windows提供了OpenProcess、ReadProcessMemory等函数。但越是大型的软件,防护做的越好,大概率会做驱动保护,比如hook SSDT表等,这些系统调用都会先被过滤一次,导致返回的数据不是想要的;为了确保能读到目标进程数据,最好 ...
前言 找到偏移之后,就是写辅助工具了。这一篇聊聊写辅助工具的原理。具体的代码细节,等到实战会展开细说。 明确一下 逆向两个目的 1、调用功能 2、获取数据 对应的实现方法 1、调用功能 找到偏移,直接调用。 2、获取数据 对于全局数据,找到偏移,直接得到。 对于局部数据,拦截代码,间接得到 。 写外 ...