Skip to content

Instantly share code, notes, and snippets.

View donnaken15's full-sized avatar
🌲
PINE GANG 2⃣1⃣⛷💨😝😱😭💾💾😉📠♿️😇😬😄🔥🔥🔥🙌🌚

Wesley donnaken15

🌲
PINE GANG 2⃣1⃣⛷💨😝😱😭💾💾😉📠♿️😇😬😄🔥🔥🔥🙌🌚
View GitHub Profile
@donnaken15
donnaken15 / discord_rpc.inc
Created September 4, 2020 18:10
Discord RPC for assembly, because why would you want this
include 'macro/if.inc'
include 'macro/struct.inc'
struct DiscordRichPresence
state db 128 dup (?)
details db 128 dup (?)
startTimestamp dq ?
endTimestamp dq ?
largeImageKey db 32 dup (?)
@donnaken15
donnaken15 / GH3+loader+innov.asm
Last active September 23, 2020 03:23
Exile's GH3+ loader with some additions
; this is ran near functions executed with WinMain
mov eax, core
push eax
push space ; mightve forgot to add this, but dont know what its for
call dword ptr ds:LoadLibraryA
; invoke syntax: LoadLibraryA, eax
; maybe since eax is already set just call LL
; though pushing vals/regs is still required in some way
@donnaken15
donnaken15 / !_rb1_dta.md
Last active November 7, 2022 09:02
Rock Band 1 DTA patches

ROCK BAND 1 DTA PATCHES

CLICK THIS PAGE FOR MORE

@donnaken15
donnaken15 / gm4mdtest.md
Last active September 6, 2023 01:16
gamemaker md test
draw_set_font(courier)
draw_set_halign(fa_right)
draw_set_valign(fa_bottom)
draw_set_color(c_black)
if fps<room_speed/2{draw_set_color(make_color_rgb(255,8.5*((fps/room_speed)*60),0))}
if fps>=room_speed/2{draw_set_color(make_color_rgb(255-(8.5*(((fps/room_speed)*60)-30)),255,0))}
draw_text(view_wview[0],12,"FPS:"+string(fps)+"/"+string(room_speed))
draw_set_color(c_black)
draw_text(view_wview[0],view_hview[0],"KEY:"+string_format(keyboard_key,5,0)+"
@donnaken15
donnaken15 / W32base.cpp
Last active January 4, 2021 14:29
copy paste for windows dialog applications in c++
#include <Windows.h>
static LRESULT CALLBACK WindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
static HWND hWnd;
@donnaken15
donnaken15 / 12thEngineeringMusic
Last active January 25, 2021 10:43
arduino code from my engineering class. for hardware, refer to this image on how to setup hardware or tinkercad circuit https://i.ibb.co/wdphB27/image.png
school stuff i can actually get into
wow
@donnaken15
donnaken15 / !StreamlabLayout
Last active January 17, 2021 19:26
my code and settings for my streamlabs layout
chat box settings:
base theme: clean
badges: all enabled
extra emotes: bTTV, FFZ
back color: #010101
text color: #ffffff
font size: 20px
hide messages after: disabled
chat delay: 0
message animations: no
@donnaken15
donnaken15 / CommandLineToArgvA.asm
Created January 19, 2021 00:49
I HATE COMPUTERS@Q#TVH*&T@$EY(WIOQV%T (NM@#QV%EJTN%CJR(YKN*TEQWTY(N%$R
; STILL NOT FINISHED YET
invoke GetCommandLineA
cmp BYTE PTR eax, '"'
je spacedpath
jne unspacedpath
spacedpath:
inc eax
cmp BYTE PTR EAX, '"'
jne spacedpath
@donnaken15
donnaken15 / FILE.ASM
Last active February 23, 2021 16:15
Flat assembler: reading files, using fopen+fread
format PE GUI 3.1
use16
align 1
entry start
heap 0
stack 0
include 'win32a.inc'
@donnaken15
donnaken15 / ignore.Designer.cs.gitattributes
Created February 10, 2021 14:15
disable C# from being your main repo language (if it isn't) if you have an interface
*.Designer.cs linguist-detectable=false