all-scribbly

./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 Β»

Shortcodes

coding note all-scribbly
Basic Code Wrapper – Prismatic https://prismjs.com/examples.html <pre><code class="language-javascript">CODE </code></pre> pick a language – wrap code in it “language-markup” / “language-html” / “language-mathml” PLUGINS:: Adding tags to page – tags are added to body_class so they style the prism area as well rainbow-braces line-numbers match-braces no-brace-hover <pre><code class="language-javascript"> var myObject = { property1: "something", property2: 5,

Shortcodes 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 Β»

Samba Shares on MAC to Linux Machines

coding design - layout general
Samba Shares on MAC to Linux Machines Perfect! Staging server (XXX.XXX.X.STAGE) now appears in Mac Finder Network with staging (/srv) and www (/var/www/sites) sharesβ€”drag-drop /Volumes/www/htmlbuilder.shawns-machine.com etc. like local drives.[1] Prod Quick Copy (XXX.XXX.X.PROD) sudo apt update & sudo apt install samba avahi-daemon smbclient -y sudo mkdir -p /srv/prod-share /var/www/prod-sites # Or your paths sudo chown

Samba Shares on MAC to Linux Machines Read More Β»

Setup Site on Staging

all-scribbly coding
Steps for NON-DOCKERIZED SITE Proxy GNU nano 5.6.1 site.shawns-machine.com.conf # Proxy nginx site.shawns-machine.com server { server_name site.shawns-machine.com; location / { proxy_pass http://192.168.1.9:8080; # matomo runs on 80 others moved proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } listen 443 ssl; ssl_certificate /etc/letsencrypt/live/site.shawns-machine.com/fullchain.pem; # FIXED: vault cert ssl_certificate_key /etc/letsencrypt/live/site.shawns-machine.com/privkey.pem; # FIXED:

Setup Site on Staging Read More Β»

VanillaJS Example

all-scribbly
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <title>Lock Button</title> <style> :root { font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; } body { padding: 24px; } .row { display: flex; align-items: center; gap: 12px; } button.lock { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid rgba(0,0,0,.2); border-radius:

VanillaJS Example Read More Β»