A reasoning framework for AI-assisted development where clarity comes first.
AI coding assistants act before thinking. They:
| UPDATE | |
| segments | |
| SET | |
| name = REPLACE(name, '%.protonmail.com%', '.proton.me'); | |
| UPDATE | |
| urls | |
| SET | |
| url = REPLACE(url, '%.protonmail.com%', '.proton.me'); |
| export function createTerminalLink(url: string, text?: string) { | |
| return `\u001B]8;;${url}\u0007${text ?? url}\u001B]8;;\u0007`; | |
| } |
| // ==UserScript== | |
| // @name YouTube Quote | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Replaces document body with a random quote from ZenQuotes API on YouTube pages | |
| // @author Nobody | |
| // @match *://www.youtube.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== |
| #!/usr/bin/env bash | |
| gh pr view --json url | fx .url |