Skip to content

Instantly share code, notes, and snippets.

View MrDOS's full-sized avatar
🦆

Samuel Coleman MrDOS

🦆
View GitHub Profile
@MrDOS
MrDOS / hide-porkbun-handshake-tlds.js
Created September 19, 2022 12:08
Userscript to hide Handshake TLDs from Pornbun's all-extensions page.
// ==UserScript==
// @name Hide Porkbun Handshake TLDs
// @description Hide Handshake TLDs from Pornbun's all-extensions page.
// @namespace http://seenet.ca/
// @version 1.0
// @match https://porkbun.com/products/domains
// @icon https://www.google.com/s2/favicons?sz=64&domain=porkbun.com
// @grant none
// ==/UserScript==
@MrDOS
MrDOS / launch.json
Created June 5, 2024 23:15
How do you influence a VSCode launch environment?
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}