AI On A Boat – YOIU JUST TYPE!!!!
Dragon Lady β NOW WITH AI The Complete Dragon Lady Experience Workflow: Guest uploads old Friendster photos Scraper downloads/processes locally Saves to /imported/ Llama captions old photos Merges with cruise photos All stays on boat (private) 1. BOOKING β Custom Link Created Jerry books “Sarah’s 40th Birthday Party” System generates: dragonladysf.com/sarahs-party-2025 This link controls EVERYTHING […]
π ACCID VAULT v2.0 – COMPLETE SYSTEM
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 […]
Vault Deployment | π― Clear Architecture: Web vs Desktop
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 […]
π Tagger β Vault Integration Guide
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. […]
Shortcodes
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, […]
ACCID Pipeline
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 […]
Samba Shares on MAC to Linux Machines
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 […]
Setup Site on Staging
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: […]
Penpot (Also DOCKER) β Self Host
https://penpot.shawns-machine.com (penpotter) https://penpot.app/ Straight from Penpotβs Docker install guide (it listens on http://localhost:9001 by default). οΏΌ 1) Penpot locally with simple Docker (compose) mkdir -p ~/penpot && cd ~/penpot curl -L -o docker-compose.yaml https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml docker compose -p penpot -f docker-compose.yaml up -d open http://localhost:9001 JavaScript Copy 2) save a βrestart it laterβ command on Penpot […]
ACCID Build Steps
Do all work in /ACCID_SOURCE/ ACCID_MANAGEMENT/accid_pre_scripts/sync_to_clean.sh ACCID_MANAGEMENT/accid_pre_scripts/verify_build_folder.sh Then:
Vault Deployment | π― Clear Architecture: Web vs Desktop
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 […]
π Tagger β Vault Integration Guide
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. […]
ACCID Pipeline
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 […]
Artist / Engineer / Dev
π¨ ACCID SYSTEM – EXPLAINED FOR ARTISTS Let me explain this like you're a painter with multiple studios: ποΈ THE VAULT (Main ACCID) "Your Art Studio Manager + Archive" What it does: Manages ALL your projects (HTML sites, photo galleries, tutorials) Time Machine backups – "Save versions of every canvas" Deployment – "Ship your art […]
Master Plan
WHAT IT IS IS WHAT IT WAS AND WHAT IT WILL BE YES!!! THIS IS THE MOMENT!!! π€―β¨ π WHEN YOU SEE IT ALL AS ONE THING: That feeling when everything SNAPS INTO PLACE and you realize: "Wait… the gallery IS the module system IS the outline navigator IS the waypoint editor IS the data […]
Add Parameters To Form Action
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 β_blankβ
/* 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 […]
Uncaught Reference Error
app.js “use strict”;var tb = { rahmen: { eigenschaften: [ “hochwertig”, “verwindungssteif”, “vergleichsweise verwindungssteif”, “sehr verwindungssteif”, “sehr hohe Verwindungssteifigkeit”, “hohe Steifigkeit” ] }}; index.html <!DOCTYPE html><html lang=”en”><head> ((Some Head-Tags)) <script src=”dist/app.js” defer></script> ((Some Head-Tags))</head><body> <div class=”container”> <section> <h1>Test</h1> <script> console.log(tb.rahmen.eigenschaften[3]); </script> </section> </div></body></html> Error Message Uncaught ReferenceError: tb is not defined The problem It must […]
JS To Insert CSS Into Page
u can also do this using DOM Level 2 CSS interfaces (MDN): var sheet = window.document.styleSheets[0]; sheet.insertRule(βstrong { color: red; }β, sheet.cssRules.length); β¦on all but (naturally) IE8 and prior, which uses its own marginally-different wording: sheet.addRule(βstrongβ, βcolor: red;β, -1); There is a theoretical advantage in this compared to the createElement-set-innerHTML method, in that you donβt […]
XFinity – Port Forwarding – Need app for security settings
Appp for security settings https://www.portchecktool.com/ Port 25 is blocked – which I guess isn’t a good sign XFI ADVANCED SECURITY What is xFi Advanced Security? xFi Advanced Security gives added peace of mind for your home network by preventing you from inadvertently visiting malicious sites or downloading dangerous files, as well as blocking remote access […]
Port Forward | No-IP setup
https://www.noip.com/support/knowledgebase/general-port-forwarding-guide/ How to Port Forward β General Guide to Multiple Router Brands Hereβs a great video that explains the basics of port forwarding: https://www.youtube.com/watch?v=CLunOJZqmc0 If you have a router at home or your office, you will need to forward ports in order for outside traffic to get into your network. Think of your router as […]
NAS – Access control – Share Folder Settings
https://www.asustor.com/en-gb/online/College_topic?topic=110 COURSE OBJECTIVES Upon completion of this course you should be able to: \1. Create and manage users, groups, shared folders and privileges on an ASUSTOR NAS \2. How to set up and use Access Control PREREQUISITES *Course Prerequisites:* None *Students are expected to have a working knowledge of:* None OUTLINE 1. Introducing Access Control […]
https on NAS
https://www.asustor.com/online/College_topic?topic=324 COURSE OBJECTIVES Upon completion of this course you should be able to: \1. Install a certificate to your ASUSTOR NAS. \2. Use HTTPS to ensure communication security between your NAS and client devices. PREREQUISITES *Course Prerequisites:* None *Students are expected to have a working knowledge of:* N/A OUTLINE 1. Introduction 2. Enabling HTTPS 2.1 […]
Master Plan
WHAT IT IS IS WHAT IT WAS AND WHAT IT WILL BE YES!!! THIS IS THE MOMENT!!! π€―β¨ π WHEN YOU SEE IT ALL AS ONE THING: That feeling when everything SNAPS INTO PLACE and you realize: "Wait… the gallery IS the module system IS the outline navigator IS the waypoint editor IS the data […]
Ultimate Site Parser
βΊ π― ULTIMATE SITE PARSER OVERVIEW The Ultimate Site Import β Edit β Export Pipeline π The Complete Flow βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β ULTIMATE SITE PARSER β β Import ANY website β Convert to ACCID format β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β ACCID HTML BUILDER β β Edit visually β Add content β Update metadata β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β […]
React Router Dom
Install react-router-dom using the following command npm install –save react-router-dom create a new file (MainRouter) in your project directory import { BrowserRouter, Route, Link } from "react-router-dom"; //import the package import SignIn from "../SignIn" //import your signIn page import SignUp from "../SignUp" //import your signUp page function MainRouter(){ return( <BrowserRouter> <div className="container"> <Switch> <Route path="/signIn" […]
Components And Props
opy https://teamtreehouse.com/library/react-basics-2/introducing-props/components-and-props Components and Props An important detail to remember about props is that they are βread onlyβ (or immutable), which means that a component can only read the props given to it, never change them. The (parent) component higher in the tree owns and controls the property values. For example, if you try to […]
React β Comments
Comments In React https://stackoverflow.com/questions/30766441/how-to-use-comments-in-react#comment103855263_30766542 Within the render method comments are allowed, but in order to use them within JSX, you have to wrap them in braces and use multi-line style comments. <div className=”dropdown”> {/* whenClicked is a property not an event, per se. */} <Button whenClicked={this.handleClick} className=”btn-default” title={this.props.title} subTitleClassName=”caret”></Button> <UnorderedList /></div> Copy You can read […]
React β Post Form Data To Api
Post form data to api endpoint You need to build your request body using the FormData API. The FormData interface provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using the XMLHttpRequest.send() method. It uses the same format a form would use […]
React β Cheatsheet
=> The React script allows us to write React components => The ReactDOM script allows us to place our components and work with them in the context of the DOM ReactDOM.render(<Greeting />, document.getElementById(‘root’)); Copy Translating the line of code above to English would sound something like this; Use ReactDOMβs render method to render the Greeting […]
React β ES6 β Commonly Used
Commonly used ES6 Features Throughout the rest of this book, a number of ES6 features will be used consistently. If you do not have prior experience with ES6 features, this brief introduction will come in handy. If youβre comfortable with ES6 features, skip this section and head to chapter 2 to get started writing your […]
π ACCID VAULT v2.0 – COMPLETE SYSTEM
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 […]
Vault Deployment | π― Clear Architecture: Web vs Desktop
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 […]
π Tagger β Vault Integration Guide
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. […]
Shortcodes
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, […]
Samba Shares on MAC to Linux Machines
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 […]
