View st.asm
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
; jan 2023 | |
format PE console 3.1 | |
entry main | |
include 'win32a.inc' | |
section '' code data readable writeable executable |
View LCC_wesleys_cut
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
#!/bin/zsh | |
echo why did i make this | |
offset=679074 | |
end=9382322 | |
srate=48000 | |
#resamp=40000 | |
offset=$(evl $offset.0/$srate) # to seconds | |
end=$(evl $end.0/$srate) # to seconds |
View dtm.bms
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
// https://tasvideos.org/EmulatorResources/DTM | |
endian little | |
idstring "DTM\x1A" | |
getdstring game 6 | |
get wii byte | |
getbits ctrl 8 // bitfield | |
get state byte | |
get vic longlong | |
get ic longlong |
View optcompact
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
#!/bin/sh | |
# CYGWIN REQUIRED!! (maybe) | |
# | |
# optimal compact | |
# by wesley | |
# BECAUSE SOMEHOW IT TAKES MORE SPACE | |
# sometimes | |
# | |
# might've just been created out of | |
# the false assumption that it does |
View scn.bms
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
// :/ | |
namecrc dummy 0 "names.txt" | |
endian big | |
get magic_check long # 0x00 | |
if magic_check != 0 | |
exit | |
endif | |
for i = 1 < 8 | |
get magic_check long |
View .gh3.map
This file has been truncated, but you can view the full file.
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
gh3_Final | |
Timestamp is 4abaaa55 (Wed Sep 23 18:08:05 2009) | |
Preferred load address is 00400000 | |
Start Length Name Class | |
0001:00000000 00000001H .aa_code_start CODE | |
0001:00000010 004b29bfH .text CODE | |
0001:004b29d0 0000cdc3H .text$x CODE |
View NodeQBC.udl.xml
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
<NotepadPlus> | |
<UserLang name="Q" ext="q" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="yes" allowFoldOfComments="yes" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00; 00// 01 02 03/* 04*/</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
View DDS.cs
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
/* | |
* | |
* DDSImage.cs - DDS Texture File Reading (Uncompressed, DXT1/2/3/4/5, V8U8) and Writing (Uncompressed Only) | |
* | |
* By Shendare (Jon D. Jackson) | |
* | |
* Rebuilt from Microsoft DDS documentation with the help of the DDSImage.cs reading class from | |
* Lorenzo Consolaro, under the MIT License. https://code.google.com/p/kprojects/ | |
* | |
* Portions of this code not covered by another author's or entity's copyright are released under |
View perftest.sh
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 [ ! "$(dirname "$0")" = "." ]; then | |
here=$(realpath "$0")/ | |
else | |
here=$(which "$0")/ | |
fi | |
here=$(dirname "$here") | |
TIMEFORMAT=%R | |
LPARAMS="--cbr -b 128 --resample 44100 -m j" |
NewerOlder