2022年9月6日
摘要: // ==UserScript== // @name Baidu Search AutoPager // @author Crab // @namespace autopager@baidu.com // @description 百度搜索自动翻页,网站预览图。 // @include /^http 阅读全文
posted @ 2022-09-06 01:39 LeoTsou 阅读(31) 评论(0) 推荐(0)
摘要: // ==UserScript== // @name baidu no jump // @namespace 1018148046 // @description 去除百度搜索跳转链接 // @include http://www.baidu.com/* // @include https://ww 阅读全文
posted @ 2022-09-06 01:38 LeoTsou 阅读(20) 评论(0) 推荐(0)
  2022年6月11日
摘要: 相对完善的单例模式 关于单例模式相比无须赘言,但是初学设计模式的时候都难免遇到使用单例模式时没有考虑拷贝构造的问题。 这里就尝试实现几个相对完善而且有扩展性的单例模式,以供参考。 Hello World 版本 class Singleton { public: Singleton *GetInsta 阅读全文
posted @ 2022-06-11 21:12 LeoTsou 阅读(139) 评论(0) 推荐(0)
  2022年4月26日
摘要: 字符串 49 3 https://leetcode-cn.com/problems/longest-substring-without-repeating-characters 30 https://leetcode-cn.com/problems/substring-with-concatenat 阅读全文
posted @ 2022-04-26 13:58 LeoTsou 阅读(136) 评论(0) 推荐(0)
  2022年1月17日
摘要: 本文转载自:https://www.cnblogs.com/zhehan54/p/6403506.html 如有法律风险可联系鄙人QQ邮箱 344864055。 最近在学习设计模式,突然想到MFC里面其实也包含有设计模式的原理,于是分析了一下,做一个笔记,网上也找了一些资料,在此一并感谢。 创建型模 阅读全文
posted @ 2022-01-17 00:56 LeoTsou 阅读(272) 评论(0) 推荐(0)
  2021年10月2日
摘要: ![](https://img2020.cnblogs.com/blog/1939894/202110/1939894-20211002203913165-320137413.png) 阅读全文
posted @ 2021-10-02 20:40 LeoTsou 阅读(21) 评论(0) 推荐(0)
摘要: 1 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT*\shell\APK签名] @="APK签名" "Icon"=D:\runtime\apktool\signapk.bat [HKEY_CLASSES_ROOT*\shell\APK签 阅读全文
posted @ 2021-10-02 20:36 LeoTsou 阅读(95) 评论(0) 推荐(0)
  2021年7月7日
摘要: 功能 解释 F4 在同名的头文件和源文件之间切换 F2 跟踪光标下的符号,如果是变量就跳转到变量声明的地方,如果是函数体或函数,就在两者之间切换 Shift+F2 在函数体的声明和定义之间切换 Ctrl+Shift+R 对光标处的符号更改名称,这将替换到所有用到这个符号的地方 Refactor+Ad 阅读全文
posted @ 2021-07-07 22:01 LeoTsou 阅读(227) 评论(0) 推荐(0)
  2020年12月24日
摘要: int GetResourceId(void) { typedef BOOL (*P_IsWow64Process)(HANDLE, BOOL *); HMODULE kernel32 = LoadLibrary(L"kernel32.dll"); P_IsWow64Process __sys_Is 阅读全文
posted @ 2020-12-24 14:58 LeoTsou 阅读(120) 评论(0) 推荐(0)