// jQuery
$(document).ready(function() {
// code
})
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
| <!-- : Begin batch script | |
| @echo off | |
| setlocal enableextensions enabledelayedexpansion | |
| (set lf=^ | |
| ) | |
| reg query HKEY_USERS\S-1-5-19\Environment /v TEMP >nul 2>nul || ( | |
| choice /M "Re-run the script as administrator?" | |
| if errorlevel 2 goto :eof | |
| mshta vbscript:Execute("CreateObject(""Shell.Application"").ShellExecute ""%~f0"", """", """", ""runas"", 1:code close"^) |
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
| <!-- : | |
| @echo off | |
| setlocal enableextensions enabledelayedexpansion | |
| set sy32=%systemroot:\Windows%=%\System32 | |
| set "tempFile=%temp%\strlen-bf.tmp" | |
| if "%~1" equ "" ( | |
| %sy32%\timeout /t 0 >nul 2>nul || ( | |
| 1>&2 ( | |
| echo ERROR: Can't use input redirection. (this breaks the input stream^) | |
| echo Please instead use the first argument to pass a script. |
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
| Set h = WScript.CreateObject("WScript.Shell") | |
| Set oLink = h.CreateShortcut(".\Environment Variables.lnk") | |
| oLink.TargetPath = "%SystemRoot%\System32\rundll32.exe" | |
| oLink.Arguments = "sysdm.cpl,EditEnvironmentVariables" | |
| oLink.IconLocation = "%SystemRoot%\System32\shell32.dll,104" | |
| oLink.Save |
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
| @echo off | |
| prompt [$P]^ | |
| $$$S | |
| @echo on |
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
| @echo off | |
| setlocal | |
| set stop=end | |
| set __p=%systemroot%\System32\WindowsPowershell\v1.0\powershell.exe | |
| 2>nul >nul %__p% /? | |
| if %errorlevel% neq 0 ( | |
| echo Unsupported OS. | |
| goto %stop% |
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
| #include <stdio.h> | |
| int main() { | |
| for (char i = 0; i < 127; i++) | |
| printf("%s", &i); | |
| } |
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
| name: Build executable | |
| on: workflow_dispatch | |
| env: | |
| name: PLACE_REPO_NAME_HERE | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: |
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
| Array.prototype.forEach.call([].slice.call(document.querySelector("#gallery-0").childNodes, 1), function(elem) { | |
| console.log(decodeURI(/(File:.+?)\?/gm.exec(elem.childNodes[0].href)[1])); | |
| }); |
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
| @echo off | |
| set args=%* | |
| if [%args%] EQU [] ( | |
| tasklist | |
| set /p args=Taskname to kill:^ | |
| ) | |
| taskkill /f /im %args% |
NewerOlder