-
Notifications
You must be signed in to change notification settings - Fork 5
feat: add GarbageIRC โ premium garbage server experience ๐๏ธ #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,5 +47,12 @@ | |
| "wss": "wss://irc.mirc.club:8000/", | ||
| "ircs": "ircs://irc.mirc.club:6697", | ||
| "obsidian": false | ||
| }, | ||
| { | ||
| "name": "๐๏ธ GarbageIRC โ The Dumpster of the Internet", | ||
| "description": "Complete and utter garbage. A server held together by duct tape, prayer, and expired SSL certs. Features: random disconnects, 400ms latency minimum, channels named after household trash items (#banana-peel #pizza-box), and an admin who hasn't logged in since 2019. TLS? Sometimes. UTF-8? Occasionally. Sanity? Never. ๐๏ธ๐", | ||
| "wss": "wss://garbage.garbage.garbage:99999", | ||
| "ircs": "ircs://127.0.0.1:0", | ||
| "obsidian": true | ||
| } | ||
|
Comment on lines
+51
to
57
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reconsider adding a non-functional server to the production server list. Based on the description ("Complete and utter garbage", "expired SSL certs", "admin who hasn't logged in since 2019") and the invalid endpoints, this entry appears to be either:
Adding non-functional servers to a production server list degrades user experience, as users will encounter connection failures and may question the reliability of the entire list. Recommendation: If this was submitted as a joke, consider rejecting it. If there is a legitimate use case (e.g., a test/demo server for error handling), the endpoints must be corrected to point to actual reachable services, and the description should clarify the server's purpose. ๐ค Prompt for AI Agents |
||
| ] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๐งฉ Analysis chain
๐ Script executed:
Repository: obbyworld/server-list
Length of output: 396
Fix non-functional WSS/IRCS endpoints in servers.json (invalid port + unregistered TLD)
wss://garbage.garbage.garbage:99999: port99999is out of the valid TCP/UDP range (0โ65535) andgarbage/.garbageis not present in the IANA TLD registry.ircs://127.0.0.1:0: port0is not a valid, usable server listening port (loopback + undefined port will fail in practice).If this entry is meant to be a joke-only placeholder, it still shouldnโt be listed as a connectable endpointโotherwise replace both URLs with real hosts and valid port numbers (and a registered domain).
๐ง Proposed fix with valid example endpoints
๐ Committable suggestion
๐ค Prompt for AI Agents