premade badge for your convienience.

| // ==UserScript== | |
| // @name StackOverflow Minimized Attribution | |
| // @namespace github@impliedgg | |
| // @match https://stackoverflow.com/* | |
| // @version 1.0 | |
| // @author github@impliedgg | |
| // @description For StackOverflow. Reduces the attribution text for StackOverflow snippets to one line, while still citing the URL, author, date retrieved, and license. | |
| // @grant GM_setClipboard | |
| // ==/UserScript== |
| // ==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== |
| # 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; | |
| } |
| --- 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); | |
| }; | |
| } |
| #!/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']: |