A macropad (HID 5131:2019) was sending KEY_2 (scancode 7001f
) when a button was pressed, but needed to send F13 instead.
Use udev's hwdb (hardware database) to remap the scancode to F13.
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== |
You can enable RTSP in TP Link Tapo in the documented way (advanced -> cam account -> etc)
If you try to integrate the RTSP streams with platforms like Home Assistant, Frigate, etc. as generic cameras, you may have noticed that the RTSP is extremely unreliable
Model Name | Purpose / Specialization | Notes |
---|---|---|
qwen/qwen3-235b-a22b-2507 |
Base frontier model | 235B parameters (22B active via MoE), July 2025 build. General reasoning + generation. |
qwen/qwen3-coder |
Coding-optimized | Trained/fine-tuned for code tasks (multi-language programming support). |
qwen/qwen3-coder:free |
Coding (free tier) | Same as above, but with usage caps / lower priority queueing. |
qwen/qwen3-235b-a22b-thinking-2507 |
Long-form / reasoning mode | “Thinking” variant optimized for chain-of-thought style reasoning. |
qwen/qwen3-235b-a22b-2507 (Instruct tuning) |
Instructio |