This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From https://blog.csdn.net/ONE_SIX_MIX/article/details/80286421 | |
#include <iostream> | |
#include <string> | |
#include <windows.h> | |
#include <objbase.h> | |
#include <wbemidl.h> | |
#include <comdef.h> | |
#include <mutex> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch -m reactiveUI main | |
git fetch origin | |
git branch -u origin/main main | |
git remote set-head origin -a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
炙雪@严禁任何形式的转载 | |
k | |
yhsxsx10月 | |
白灵凛音 | |
yuppi4672 | |
sakura1313 | |
acghmoe.com | |
百元君 | |
ZODGAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fine System.Runtime.InteropServices.COMException when toast first time | |
//using Windows.UI.Notifications; | |
new ToastContentBuilder() | |
.AddText("ErogeHelper is running!") | |
.Show(toast => | |
{ | |
toast.Group = "eh"; | |
toast.Tag = "eh"; | |
// TODO: Add Kill ErogeHelper immediately |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^b*[^:b#/]+.*$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case "AABB": | |
patten = $@"([^\\]){{{gameInfo.RepeatTime}}}"; | |
regex = new Regex(patten); | |
matches = regex.Matches(hp.Text); | |
if (matches.Count != 0) | |
{ | |
string tmp = ""; | |
foreach (Match match in matches) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f | |
taskkill /f /im explorer.exe | |
attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db" | |
del "%userprofile%\AppData\Local\iconcache.db" /f /q | |
start explorer | |
pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import tensorflow as tf | |
import numpy as np | |
import time | |
os.environ["TF_CPP_MIN_LOG_LEVEL"]='2' # 只显示 warning 和 Error | |
def _int64_feature(value): |
NewerOlder