Skip to content

Instantly share code, notes, and snippets.

View impliedgg's full-sized avatar
🎓
classes...

emily impliedgg

🎓
classes...
  • seeking SWE role; self-employed
  • HTX
  • 12:21 (UTC -06:00)
View GitHub Profile
@impliedgg
impliedgg / gatekeeper.user.js
Created September 19, 2025 09:27
stackoverflow user id gatekeeper
// ==UserScript==
// @name StackOverflow UserID Gatekeeper
// @namespace github@impliedgg
// @match https://stackoverflow.com/*
// @grant none
// @version 1.0
// @author github@impliedgg
// @description For StackOverflow. Automatically strips UserID from your URLs before you copy them.
// ==/UserScript==
@impliedgg
impliedgg / atproto-handle-domain.conf
Created August 17, 2025 10:43
nginx config includes/snippets for atproto/bluesky
# include this file inside a server block for your handle domain wildcard (e.g. *.bsky.app or *.bsky.example.com)
location /.well-known/atproto-did {
proxy_pass http://127.0.0.1:2443;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
@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']: