javascript

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 »

Sish Installation

all-scribbly coding javascript
A) open 2222 on the router so that it can be gotten to on .26 service nameexternal portinternal portinternal ip address sish-tunnel22222222192.168.1.26 Sish setup 1. Confirm architecture first (.26) (don't guess — this determines which binary to grab): bash uname -m x86_64 → amd64 build. aarch64/arm64 → arm64 build. (Given .26 has been running general-purpose

Sish Installation 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 »

Add Parameters To Form Action

javascript
I need to the add a JavaScript variable to a link in action form. Is that possible? JavaScript function: <script> function parameter() { function getUrlVars() { var vars = {}; var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (m, key, value) { vars[key] = value; }); return vars; } var vpid = getUrlVars()[“pid”]; } //var link = “second_02.html”

Add Parameters To Form Action Read More »

Add “_blank”

all-scribbly javascript
/* here are two different ways to do this */ //using jquery: $(document).ready(function(){ $(‘#link_other a’).attr(‘target’, ‘_blank’); }); // not using jquery window.onload = function(){ var anchors = document.getElementById(‘link_other’).getElementsByTagName(‘a’); for (var i=0; i<anchors.length; i++){ anchors[i].setAttribute(‘target’, ‘_blank’); }} // jquery is prettier. :-)Copy You could also add a title tag to notify the user that you are

Add “_blank” Read More »