accid

Use GIT Better

coding accid
Trick #1: git status Is the Most Important Command This sounds obvious. I ignored it for years. Now I run it constantly before every commit, before switching branches, before rebasing. git status Most Git mistakes happen when you don’t fully know your current state. I’ve accidentally committed .env files, debug logs, unfinished code, and random […]

Use GIT Better Read More »

ACCID – PERMISSIONS — how to set them, and why they keep breaking

all-scribbly coding javascript accid
Written 2026-08-10 after a copy operation left /var/www/ehhspa unreadable to its own web server. Every fact below was measured on this box, not assumed. Where something is counter-intuitive the evidence is included, because the counter-intuitive ones are what bite. THE MODEL — who owns what here pathowner:groupmodewritable by the www-data group? /var/wwwspiffy-root:www-data2775✅/var/www/starterspiffy-root:www-data2775✅/var/www/starter/brainsspiffy-root:www-data2775✅a created unit (/var/www/{unit})www-data:www-data02775

ACCID – PERMISSIONS — how to set them, and why they keep breaking Read More »

WP- DB – Extraction

all-scribbly coding design - layout general accid
get counts — 1. Master overview: all post types + statuses SELECT post_type, post_status, COUNT(*) AS count FROM wp_posts GROUP BY post_type, post_status ORDER BY post_type, post_status; — 2. Just posts/pages by status SELECT post_type, post_status, COUNT(*) AS count FROM wp_posts WHERE post_type IN ('post', 'page') GROUP BY post_type, post_status ORDER BY post_type, post_status; —

WP- DB – Extraction Read More »

Signals Vault – Auth

coding accid
Auth system complete. Two auth paths, both project-scoped: Path A — AccidAuth (primary) routers/auth.py POST /auth/verify-token — accepts X-Accid-Key + X-Accid-Hash + X-ACCID-App headers Auto-registers on first call (no separate registration step) Project scoping: pass {"project_id": "dragon-lady"} in body — keys accumulate project access on each successful auth GET /auth/key-info — returns registered projects, app,

Signals Vault – Auth Read More »

ACCID Scraper Pipeline

coding accid
+ JSON-noculars Complete System Documentation Version 2.0 — February 11, 2026 What This System Does The ACCID Scraper Pipeline takes any website, extracts its content (text, links, images, navigation), and converts it into a format the ACCID HTML Builder can import. The output is a static HTML site with the original content. No databases, no

ACCID Scraper Pipeline Read More »

./ACCID HTML Builder – Technical Overview

coding accid
JSON Overview What It Is A standalone, client-side HTML page builder. No backend server required for core editing — pages are built in the browser, persisted to localStorage, and exported as static HTML via ZIP download or FTP upload. When served from an ACCID backend (PHP bridge or ACCID Vault), persistence extends to server-side storage.

./ACCID HTML Builder – Technical Overview Read More »

🎉 ACCID VAULT v2.0 – COMPLETE SYSTEM

coding accid
ADDITION: See Tagger Integration guide 9 MONTHS IN THE MAKING – IT’S DONE! What You Got: 1. vault_enhanced.py (900+ lines) The complete, production-ready vault with EVERYTHING: ✅ Project Management – Waypoint tutorials – HTML sites – React apps – Unlimited projects from one install ✅ FTP Deployment – Original feature (your 30-line vault) – Now

🎉 ACCID VAULT v2.0 – COMPLETE SYSTEM Read More »

Vault Deployment | 🎯 Clear Architecture: Web vs Desktop

coding javascript accid
Three Deployment Modes: Mode 1: Pure Web (No Vault Needed) User Browser ↓ https://yoursite.com/html-builder ↓ localStorage (editing) ↓ Browser FTP library (publishing) ↓ User’s FTP server Who: Public users on your siteInstall: NothingVault: Not needed (browser handles FTP) Mode 2: Web + Hosted Vault (Recommended) User Browser ↓ https://yoursite.com/html-builder ↓ localStorage (editing) ↓ POST to

Vault Deployment | 🎯 Clear Architecture: Web vs Desktop Read More »

🚀 Tagger → Vault Integration Guide

coding javascript accid
What’s New in Vault v2.0 Your Vault now has complete tagger processing built-in: ✅ Tag group processing (context-aware content) ✅ Archive page generation (categories, tags, dates) ✅ Search index building ✅ Image proxy & collection ✅ FTP deployment with image gathering Total: 1,086 lines (was 530, added 556 lines of tagger processing) Quick Start 1.

🚀 Tagger → Vault Integration Guide Read More »

ACCID Pipeline

coding javascript accid
Site content extraction using Playwright. Extract content from websites → organize by page type → output for HTML Builder. Table of Contents Quick Start Pipeline Overview Step 1: Discover Step 2: Curate Step 3: Tagger Step 4: Preview Step 5: Runner Step 6: Extract Step 7: Convert Action Reference File Formats Troubleshooting Quick Start chmod

ACCID Pipeline Read More »