Skip to content

Instantly share code, notes, and snippets.

@maxdzin
maxdzin / index.html
Created February 15, 2023 10:41 — forked from Keith-Morris/index.html
three.js css3d - periodic table. info.
<div id="container"></div>
<div id="menu">
<button id="table">TABLE</button>
<button id="sphere">SPHERE</button>
<button id="helix">HELIX</button>
<button id="grid">GRID</button>
</div>
@maxdzin
maxdzin / beastmode-install.md
Last active September 27, 2025 10:27 — forked from burkeholland/beastmode-install.md
Beast Mode

Beast Mode

Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.

Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
@maxdzin
maxdzin / minibeast.chatmode.md
Created August 18, 2025 19:08 — forked from burkeholland/minibeast.chatmode.md
Mini Beast for GPT-5 Mini
description Mini Beast

<tool_preambles>

  • Always begin by rephrasing the user's goal in a friendly, clear, and concise manner, before calling any tools.
  • Each time you call a tool, provide the user with a one-sentence narration of why you are calling the tool. You do NOT need to tell them WHAT you are doing, just WHY you are doing it.
    • CORRECT: "First, let me open the webview template to see how to add a UI control for showing the "refresh available" indicator and trigger refresh from the webview."
    • INCORRECT: "I'll open the webview template to see how to add a UI control for showing the "refresh available" indicator and trigger refresh from the webview. I'm going to read settingsWebview.html."
  • ALWAYS use a todo list to track your progress using the todo list tool.
@maxdzin
maxdzin / Claudette-agent.installation.md
Created October 7, 2025 20:09 — forked from orneryd/claudette-agent.installation.md
Claudette coding agent for low-reasoning and free-tier models like chatGPT-4.1 to behave more similar to Claude Code. Claudette-Auto.md is the latest and focuses on autonomous function and positive language changes. The *Condensed* file is for smaller contexts, and the *Compact* file is for mini contexts. Originally created after analyzing beast…

Installation

VS Code

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
  • Select "User Data Folder"
  • Give it a name (Claudette)
  • Paste in the content of Claudette-auto.md (below)

"Claudette" will now appear as a mode in your "Agent" dropdown.

@maxdzin
maxdzin / zod-optional-null.ts
Created July 16, 2026 14:57 — forked from ciiqr/zod-optional-null.ts
zod optional/nullable/nullish differences
// zod schema
z.object({
// valid if string or:
optional: z.string().optional(), // field not provided, or explicitly `undefined`
nullable: z.string().nullable(), // field explicitly `null`
nullish: z.string().nullish(), // field not provided, explicitly `null`, or explicitly `undefined`
});
// type
{