Skip to content

Instantly share code, notes, and snippets.

View impliedgg's full-sized avatar
⚠️
Booked - unavailable for commission work

emily impliedgg

⚠️
Booked - unavailable for commission work
  • seeking SWE role; self-employed
  • 01:32 (UTC -05:00)
View GitHub Profile
@impliedgg
impliedgg / ResetAttributesAlwaysAvailable.reds.patch
Created June 18, 2025 09:30
mod for a mod for cyberpunk 2077
--- ResetAttributesAlwaysAvailable.reds 2025-06-18 04:19:03.067317100 -0500
+++ ResetAttributesAlwaysAvailable_FlagSet.reds 2025-06-18 04:18:43.906358100 -0500
@@ -7,6 +7,7 @@
if this.m_questSystem.GetFact(n"ResetAttributeDisabled") == 0 {
inkWidgetRef.SetVisible(this.m_resetAttributesButton, true);
} else {
+ this.m_questSystem.SetFact(n"ResetAttributeDisabled", 0);
inkWidgetRef.SetVisible(this.m_resetAttributesButton, true);
};
}
@impliedgg
impliedgg / install.py
Last active June 4, 2022 09:23
minimal mcsnipergo installer
#!/usr/bin/env python3
RELEASE_SUFFIX = '_Linux_64-bit'
import os
stream = os.popen('curl -sL https://api.github.com/repos/kqzz/mcsnipergo/releases')
res = stream.read()[:-1]
import json
obj = json.loads(res)
url = ""
for asset in obj[0]['assets']:
if RELEASE_SUFFIX in asset['name']: