Skip to content

Instantly share code, notes, and snippets.

View Hill-98's full-sized avatar
🎯
Focusing

Zhong Lufan (钟路帆) Hill-98

🎯
Focusing
View GitHub Profile
@Hill-98
Hill-98 / RunIE.ahk
Created December 5, 2023 19:04
AutoHotKey V2 Script For Run Internet Explorer
;@Ahk2Exe-Let APP_NAME = RunIE
;@Ahk2Exe-Let APP_VERSION = 1.0.0.0
;@Ahk2Exe-Let YEAR = 2023
;@Ahk2Exe-ExeName %U_APP_NAME%_%U_APP_VERSION%.exe
;@Ahk2Exe-SetCopyright Copyright © %U_YEAR% Hill-98@GitHub
;@Ahk2Exe-SetDescription %U_APP_NAME%
;@Ahk2Exe-SetLanguage 0x0804
;@Ahk2Exe-SetName %U_APP_NAME%
;@Ahk2Exe-SetOrigFilename %U_APP_NAME%.exe
;@Ahk2Exe-SetProductName %U_APP_NAME%
@Hill-98
Hill-98 / AutoLoginQQ.ahk
Last active January 5, 2024 08:49
AutoHotKey V2 Script For Auto Login Tencent QQ classic version
;@Ahk2Exe-Let APP_NAME = AutoLoginQQ
;@Ahk2Exe-Let APP_VERSION = 1.2.0.0
;@Ahk2Exe-Let YEAR = 2023
;@Ahk2Exe-ExeName %U_APP_NAME%_%U_APP_VERSION%.exe
;@Ahk2Exe-SetCopyright Copyright © %U_YEAR% Hill-98@GitHub
;@Ahk2Exe-SetDescription %U_APP_NAME%
;@Ahk2Exe-SetLanguage 0x0804
;@Ahk2Exe-SetName %U_APP_NAME%
;@Ahk2Exe-SetOrigFilename %U_APP_NAME%.exe
;@Ahk2Exe-SetProductName %U_APP_NAME%
@Hill-98
Hill-98 / hello.php.bat
Last active December 4, 2023 15:18
PHP script in Batch Script
@REM Yeah, this is a php script!
@ECHO OFF
php.exe "%~0" %*
PAUSE > NUL
EXIT /B
<?php
print(chr(27).chr(91).'H'.chr(27).chr(91).'J'); // clear output buffer ( ^[H^[J )
@Hill-98
Hill-98 / set-curl_cainfo.php.bat
Last active December 4, 2023 15:18
PHP script to set curl.cainfo for php.ini on Windows (Download and move set-curl_cainfo.php.bat to the php directory and run it)
@REM Yeah, this is a php script!
@ECHO OFF
"%~dp0php.exe" "%~0" %*
PAUSE > NUL
EXIT /B
<?php
print(chr(27).chr(91).'H'.chr(27).chr(91).'J'); // clear output buffer ( ^[H^[J )