See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| // ==UserScript== | |
| // @name Jinjiang Chapter Downloader | |
| // @name:zh-CN 晋江章节下载器 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.7 | |
| // @description Download chapter content from JinJiang (jjwxc.net) | |
| // @description:zh-CN 从晋江下载章节文本 | |
| // @author oovz | |
| // @match *://www.jjwxc.net/onebook.php?novelid=*&chapterid=* | |
| // @match *://my.jjwxc.net/onebook_vip.php?novelid=*&chapterid=* |
| // ==UserScript== | |
| // @name Qidian Chapter Downloader | |
| // @name:zh-CN 起点(qidian.com)章节下载器 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.8 | |
| // @description Download chapter content from Qidian (qidian.com) | |
| // @description:zh-CN 从起点下载章节文本 | |
| // @author oovz | |
| // @match https://www.qidian.com/chapter/* | |
| // @grant none |
| [PlayerFeedback_CheckForSurvey] POST | |
| [PlayerFeedback_SendAnswers] POST | |
| [PatchNotes_GetPatchNotes] GET | |
| [AggStats_Fetch] GET | |
| [AccountXP_GetPlayer] GET https://pd.ap.a.pvp.net/account-xp/v1/players/{user_id} | |
| [Config_FetchConfig] GET https://shared.ap.a.pvp.net/v1/config/ap |
| #include <string> | |
| #include <vector> | |
| #include <fstream> | |
| #include <iostream> | |
| #include <filesystem> | |
| #include <Windows.h> | |
| #include <winternl.h> | |
| static_assert( sizeof( void* ) == 8 ); |
| // OverwolfEmulator.cpp : définit le point d'entrée pour l'application console. | |
| // | |
| #include "stdafx.h" | |
| #include <Windows.h> | |
| #include <stdint.h> | |
| #define OVERLAY_MAGIC_NUMBER 0x00000005 | |
| struct OverlayMsgHeader { |