摘要: #看雪-课程-Windows内核安全编程实践之路-笔记 July 16, 2020 10:30 PM 环境搭建 安于此生@ExpLife,https://www.github.com/explife0011 开发环境:WDK+VS 调试环境:VM+VirtualKD+WindbugX Virtual 阅读全文
posted @ 2020-07-19 18:42 Theseus‘Ship 阅读(1303) 评论(0) 推荐(0)
摘要: #看雪-课程-汇编快速入门 July 14, 2020 6:46 PM 参考 看雪-汇编快速入门 资料 1.参考资料 《汇编语言(第3版)》王爽著 等 2.课程资源 看雪论坛:http://bbs.pediy.com/ 链接: https://pan.baidu.com/s/17Yuz0YgpHJd 阅读全文
posted @ 2020-07-16 20:12 Theseus‘Ship 阅读(830) 评论(0) 推荐(0)
摘要: #看雪-课程-加密与解密基础 July 13, 2020 8:36 PM 学习看雪的加密与解密基础 1.概述 0 预备知识 1.汇编语言 《王爽汇编》 2.C语言 3.Win32编程,API方式的Windows程序设计。Charles Petzold所著的《Windows程序设计》以C语言为讲解平台 阅读全文
posted @ 2020-07-14 07:39 Theseus‘Ship 阅读(1080) 评论(0) 推荐(0)
摘要: #Windows API-Wininet&WinHTTP July 11, 2020 10:33 PM WinInet WinInet(“Windows Internet”)API帮助程序员使用三个常见的Internet协议,这三个协议是用于World Wide Web万维网的超文本传输协议(HTT 阅读全文
posted @ 2020-07-11 22:36 Theseus‘Ship 阅读(1233) 评论(0) 推荐(0)
摘要: #OS-Windows-bat-不等待当前命令返回继续执行后续指令 start 程序名 使用start调用的程序,批处理是不会等待程序运行结束的,这样才能在启动一个程序后,不用等到该程序结束,就可以执行之后的语句。 阅读全文
posted @ 2020-07-11 17:29 Theseus‘Ship 阅读(1592) 评论(0) 推荐(0)
摘要: #Code-OPC DA- OPC Client Code Demo 摘自 A very simple OPC Client: the code https://lhcb-online.web.cern.ch/ecs/opcevaluation/opcclienttutorial/SimpleCli 阅读全文
posted @ 2020-07-11 15:40 Theseus‘Ship 阅读(306) 评论(0) 推荐(0)
摘要: #OS-Windows-Close Windows Error Reporting July 11, 2020 1:44 PM 当Windows上的应用运行程序崩溃时,windows会弹出崩溃信息窗口,如何才能让系统不再弹出该信息。(以便看门狗或其他操作) 可以通过修改注册表的方式操作 崩溃信息窗口 阅读全文
posted @ 2020-07-11 13:48 Theseus‘Ship 阅读(200) 评论(0) 推荐(0)
摘要: #C-长度修饰符 July 11, 2020 7:43 AM hh与d, i, o, u, x, X, or n配合使用,表示对应一个signed char或unsigned char数据。 h与d, i, o, u, x, X, or n配合使用,表示对应一个short int或unsigned 阅读全文
posted @ 2020-07-11 07:44 Theseus‘Ship 阅读(203) 评论(0) 推荐(0)
摘要: #Code-Linux-time_t https://www.runoob.com/w3cnote/cpp-time_t.html 概念 Unix时间戳(Unix timestamp),或称Unix时间(Unix time)、POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威 阅读全文
posted @ 2020-07-10 22:58 Theseus‘Ship 阅读(184) 评论(0) 推荐(0)
摘要: #Windows-bat-Path @echo off echo 当前盘符:%~d0 echo 当前路径:%cd% echo 当前执行命令行:%0 echo 当前bat文件路径:%~dp0 echo 当前bat文件短路径:%~sdp0 pause 阅读全文
posted @ 2020-07-10 08:18 Theseus‘Ship 阅读(164) 评论(0) 推荐(0)
摘要: #Code-C++-CTime&ColeDateTime July 10, 2020 2:23 AM COleDateTime类型的应用 #include <ATLComTime.h> 使用COleDateTime类 1) 获取当前时间。 CTime time; time = CTime::GetC 阅读全文
posted @ 2020-07-10 02:24 Theseus‘Ship 阅读(229) 评论(0) 推荐(0)
摘要: #Code-C++-Cut CString to get keyValue by ","||"}" July 10, 2020 2:19 AM // cut CString to get keyValue void GetKeyValue(CString strSource, CString str 阅读全文
posted @ 2020-07-10 02:21 Theseus‘Ship 阅读(422) 评论(0) 推荐(0)
摘要: C++-Struct string初始化&&map初始化 July 10, 2020 2:16 AM swap:vector map stdvector().swap(m_vStruct); stdvector().swap(m_mStruct); struct memset 结构体成员有strin 阅读全文
posted @ 2020-07-10 02:17 Theseus‘Ship 阅读(1712) 评论(0) 推荐(0)
摘要: JSON的简单介绍以及C语言的JSON库使用 JSON概述 JSON: JavaScript 对象表示法( JavaScript Object Notation) 。是一种轻量级的数据交换格式。 它基于ECMAScript的一个子集。 JSON采用完全独立于语言的文本格式, 但是也使用了类似于C语言 阅读全文
posted @ 2020-07-10 02:13 Theseus‘Ship 阅读(903) 评论(0) 推荐(0)
摘要: Windows-bat-loop for restart exe July 10, 2020 2:09 AM 周期重启某个指定的程序 @echo off :start choice /t 10 /d y /n >nul cd C:\Users\Administrator\Desktop\XXXX.e 阅读全文
posted @ 2020-07-10 02:10 Theseus‘Ship 阅读(136) 评论(0) 推荐(0)
Live2D