This file contains hidden or 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
| // ==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== |
This file contains hidden or 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
| # 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; | |
| } |
This file contains hidden or 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
| --- 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); | |
| }; | |
| } |
This file contains hidden or 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
| #!/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']: |