π²
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
#!/bin/zsh | |
# I'M ACTIVELY FORGETTING HOW MY OWN SCRIPT WORKS!!!!!!!!!!!!!! | |
[ $# -lt 2 ] && [[ ! "$1" == *[\*\?]* ]] && { | |
[ $# -eq 1 ] && | |
echo 'you must specify more than one file to be deduped' && | |
echo | |
echo 'dedupe [input files]' | |
echo '- replace multiple unchanging copies of' | |
echo ' the same files with hardlinks to save space' | |
echo '- as of now, it is recommended to execute this' |
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
#!/bin/zsh | |
[ $# -lt 1 -a $# -gt 2 ] && { | |
echo "Inadequate amount of arguments" | |
return 1 | |
} | |
tab=$'\t' | |
dig='[0-9]+' | |
dec="$dig\.$dig" |
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
<#@template language="C#" hostspecific="true"#> | |
<#@output extension=".cs"#> | |
<#@import namespace="System.IO"#> | |
<#@import namespace="System.Text"#> | |
<#@import namespace="System.Text.RegularExpressions"#> | |
<#@import namespace="System.Collections.Generic"#> | |
<# | |
Encoding A = Encoding.ASCII, U = Encoding.Unicode, UTF8 = Encoding.UTF8; | |
const byte | |
textfile = 0, |
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
#!/usr/bin/printf %.0s%.0s%.0s%.0s%.0s%.0sThis is a utility which cannot be used standalone.\nUsage: source dotload [appname]\n | |
# dash compatible barebones conf loader | |
# | |
# making this separate for the sake of not copy pasting this across | |
# utilities i will make that allow configuration (usually not (lol)) | |
[ -z "$1" ] && { | |
echo 'dotload: No configuration name provided.' | |
return 1 | |
} | |
local conf="$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
format PE console 3.1 | |
entry main | |
include 'win32a.inc' | |
section 'WESNT' import code data readable writeable executable | |
library msvcrt,'msvcrt.dll',\ | |
kernel,'kernel32.dll' |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\*\shell\Inspect] | |
"SubCommands"="" | |
"MUIVerb"="Inspect data..." | |
[HKEY_CLASSES_ROOT\*\shell\Inspect\shell] | |
[HKEY_CLASSES_ROOT\*\shell\Inspect\shell\1a_FFProbe] | |
"MUIVerb"="Probe media..." |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
; BASIC TEST | |
mov r0, #123 ; multicand | |
mov r1, #0xFF00 ; multiplier | |
bl mul ; unsigned | |
; CYCLE TEST (add vs lsl) | |
mov r0, #0xA900 | |
mov r1, #39 | |
bl mul |
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
Outtaken voice lines heard in the audio commentary | |
--- a/south_park_unaired_pilot.txt | |
+++ b/south_park_unaired_pilot.txt | |
@@ 1:43 @@ Kick the baby. | |
Wahh! | |
-<silver shatter sound effect> | |
+<metal clonking sound effect> | |
@@ 5:56 @@ What am I supposed to do, Barbrady? | |
Just stand here and watch my | |
cattle get mutilated one by one? |
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
format PE64 console 3.1 | |
entry @f | |
include 'win64a.inc' | |
MAX_ITERATIONS = 100000000 | |
section '' import code data \ |
NewerOlder