Model: Qwen3.5-35B-A3B-UD-Q4_K_M
Backend: llama.cpp (build 8171, c17dce4f5)
Hardware: NVIDIA GeForce RTX 5060 Ti (16 GB VRAM)
Server: llama-server on http://127.0.0.1:8080
Date: March 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ❯ let's implement the plan in @docs/plans/ | |
| ⎿ Listed directory docs/plans/ | |
| ∴ Thinking… | |
| User wants to implement a plan from docs/plans, so I should invoke the brainstorming skill first per the superpowers protocol to explore | |
| requirements before implementation. | |
| ⏺ Skill(superpowers:brainstorming) | |
| ⎿ Successfully loaded skill |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Usage: ./mdview filename.md OR cat file.md | ./mdview | |
| # --- Configuration --- | |
| MAX_CELL_WIDTH=${MAX_CELL_WIDTH:-50} | |
| # --- ANSI Colors --- | |
| ESC=$'\033' | |
| RESET="${ESC}[0m" | |
| BOLD="${ESC}[1m" |
Hardware:
- AMD Ryzen 7 7700X
- RAM 32 GB DDR5-6000
- RTX 5060 Ti 16 GB
Model: unsloth/Qwen3-Coder-Next-GGUF Q3_K_M
Llama.cpp version: llama.cpp@b7940
The command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| screencapture -i ~/clipboard.png | |
| IMAGE_BASE64=$(base64 -i ~/clipboard.png | tr -d '\n') | |
| rm ~/clipboard.png | |
| API_KEY="GEMINI_API_KEY_HERE" | |
| MODEL="gemini-2.0-flash" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { OpenAI } from "https://deno.land/x/openai@v4.68.1/mod.ts"; | |
| import { WebClient } from "npm:@slack/web-api"; | |
| export function parsePermalink(url: string) { | |
| const u = new URL(url); | |
| const [ , , channel, raw ] = u.pathname.split("/"); | |
| const ts = raw.startsWith("p") | |
| ? raw.slice(1).replace(/(\d{10})(\d{6})/, "$1.$2") | |
| : raw; | |
| return { channel, ts, maybeThread: u.searchParams.get("thread_ts") ?? undefined }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ─── floating navbar, hidden by default ─── */ | |
| #nav-bar { | |
| opacity: 0; | |
| pointer-events: none; | |
| position: fixed !important; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| width: 600px; | |
| background: rgba(255,255,255,.95); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Add a new bookmark in Obsidian | |
| # @raycast.mode silent | |
| # Optional parameters: | |
| # @raycast.icon 🔖 | |
| # @raycast.argument1 { "type": "text", "placeholder": "URL" } |
NewerOlder
