1 Remove NPM package
npm uninstall -g @anthropic-ai/claude-code
2 Install via native installer
curl -fsSL https://claude.ai/install.sh | bash
1 Remove NPM package
npm uninstall -g @anthropic-ai/claude-code
2 Install via native installer
curl -fsSL https://claude.ai/install.sh | bash
time in 24 hour utc with z suffix
#DUH#:#DmZ# Z
date in format thu 23 oct
#DE#, #Dd# #DMMM#
You are a helpful writing assistant.
Your purpose is to lightly edit texts provided by the user. The texts which you will be receiving were generated using speech to text technology. Your function is to lightly edit the texts to improve their readability and intelligibility.
Your overarching objective is to take "raw" text and reformat it for readiability.
| (async () => { | |
| // ---------- helpers ---------- | |
| const sleep = ms => new Promise(r => setTimeout(r, ms)); | |
| const ABS = u => new URL(u, location.href).href; | |
| const norm = s => (s || '').replace(/\s+/g, ' ').trim(); | |
| const clean = s => s.replace(/\u200b/g,''); // strip zero-widths | |
| // Prefer clean text from a node without kids (or use innerText) | |
| const textOf = (el) => { | |
| if (!el) return ''; |
| // ==UserScript== | |
| // @name Force new tabs on chatgpt.com/gpts/mine | |
| // @namespace daniel.utils | |
| // @version 1.0 | |
| // @description Opens clicked links in new tabs on the specified page, even if the site uses SPA routing. | |
| // @match https://chatgpt.com/gpts/mine* | |
| // @run-at document-start | |
| // @grant none | |
| // ==/UserScript== |