Wave changes

This commit is contained in:
2026-03-27 15:40:37 +00:00
parent 7fbe850756
commit 529acd4fcc
241 changed files with 8664 additions and 1256 deletions

0
.gitignore vendored Executable file → Normal file
View File

0
.packages/archives/elpa/archive-contents Executable file → Normal file
View File

0
.packages/archives/elpa/archive-contents.signed Executable file → Normal file
View File

0
.packages/archives/melpa/archive-contents Executable file → Normal file
View File

0
.packages/htmlize-20250724.1703/htmlize-autoloads.el Executable file → Normal file
View File

0
.packages/htmlize-20250724.1703/htmlize-pkg.el Executable file → Normal file
View File

0
.packages/htmlize-20250724.1703/htmlize.el Executable file → Normal file
View File

0
.packages/htmlize-20250724.1703/htmlize.elc Executable file → Normal file
View File

5
.projectile Normal file
View File

@@ -0,0 +1,5 @@
-.venv/
-output/
-backup/
-*~
-.packages/

10
Makefile Executable file → Normal file
View File

@@ -4,7 +4,7 @@ VENV := .venv
PY := $(VENV)/bin/python PY := $(VENV)/bin/python
PIP := $(VENV)/bin/pip PIP := $(VENV)/bin/pip
all: fix-permissions clean-output build search clean-venv all: clean-output build search clean-venv
build: build:
@echo "Building project..." @echo "Building project..."
@@ -34,7 +34,11 @@ norm:
fix-permissions: fix-permissions:
echo "shakkal123" | sudo -S chown -R zaine:zaine . echo "shakkal123" | sudo -S chown -R zaine:zaine .
restore-permissions:
echo "shakkal123" | sudo -S chown -R 33:33 .
perm-change-logs:
echo "shakkal123" | sudo -S chown -R zaine:zaine org-web-build.log
# Show help message # Show help message
help: help:
@@ -45,4 +49,6 @@ help:
@echo " make clean-venv - Remove venv directory" @echo " make clean-venv - Remove venv directory"
@echo " make norm - Move all files that end with ~ to the backup folder" @echo " make norm - Move all files that end with ~ to the backup folder"
@echo " make search - creates the search index" @echo " make search - creates the search index"
@echo " make help - Show this help message" @echo " make fix-permissions - Fix permissions for the current user"
@echo " make restore-permissions - Restore permissions to www-data"
@echo " make help - Show this help message!"

View File

@@ -0,0 +1,54 @@
.PHONY: all clean norm help
VENV := .venv
PY := $(VENV)/bin/python
PIP := $(VENV)/bin/pip
all: clean-output build search clean-venv
build:
@echo "Building project..."
emacs -Q --script build-site.el
search: $(VENV)
@echo "Generating search index"
$(PY) search-index-json.py
$(VENV):
@echo "Generating virtual environment"
python3 -m venv $(VENV)
$(PIP) install -r requirements.txt
clean-output:
@echo "Cleaning output directory..."
rm -rf output/
clean-venv:
@echo "Cleaning virtual environment..."
rm -rf $(VENV)
norm:
@echo "sorting out the backups..."
find . -path ./backups -prune -o -type f -name '*~' -exec mv {} backups/ \;
fix-permissions:
echo "shakkal123" | sudo -S chown -R zaine:zaine .
restore-permissions:
echo "shakkal123" | sudo -S chown -R 33:33 .
perm-change-logs:
echo "shakkal123" | sudo -S chown -R zaine:zaine org-web-build.log
# Show help message
help:
@echo "Available targets:"
@echo " make - Full rebuild"
@echo " make build - Rebuild the output directory"
@echo " make clean-output - Remove output directory"
@echo " make clean-venv - Remove venv directory"
@echo " make norm - Move all files that end with ~ to the backup folder"
@echo " make search - creates the search index"
@echo " make fix-permissions - Fix permissions for the current user"
@echo " make restore-permissions - Restore permissions to www-data"
@echo " make help - Show this help message!"

0
README.md Executable file → Normal file
View File

0
assets/New Document.rnote Executable file → Normal file
View File

0
assets/emacs-calibre.rnote Executable file → Normal file
View File

0
assets/icons/apple-touch-icon.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 226 KiB

After

Width:  |  Height:  |  Size: 226 KiB

0
assets/icons/icons8-favicon-50.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
assets/icons/icons8-film-tape-100.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

0
assets/icons/icons8-z-key-64.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
assets/images/1_to_2.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 163 KiB

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

Before

Width:  |  Height:  |  Size: 929 KiB

After

Width:  |  Height:  |  Size: 929 KiB

View File

Before

Width:  |  Height:  |  Size: 291 KiB

After

Width:  |  Height:  |  Size: 291 KiB

View File

Before

Width:  |  Height:  |  Size: 508 KiB

After

Width:  |  Height:  |  Size: 508 KiB

View File

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

View File

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

View File

Before

Width:  |  Height:  |  Size: 86 KiB

After

Width:  |  Height:  |  Size: 86 KiB

View File

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 118 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

View File

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 103 KiB

View File

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View File

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 113 KiB

View File

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 65 KiB

View File

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

View File

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

0
assets/images/gr.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

0
assets/images/hzone/patpat.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 203 KiB

After

Width:  |  Height:  |  Size: 203 KiB

0
assets/images/org-roam-ui-graph.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 296 KiB

After

Width:  |  Height:  |  Size: 296 KiB

0
assets/images/reviews/02-12-25-retros.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 284 KiB

After

Width:  |  Height:  |  Size: 284 KiB

0
assets/images/reviews/07-12-25-daily-retros.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

0
assets/images/reviews/15-11-2025-guac.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

0
assets/images/reviews/16-11-25-daily-retros.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

0
assets/images/reviews/23-11-2025-netdata.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 142 KiB

After

Width:  |  Height:  |  Size: 142 KiB

0
assets/images/reviews/23-11-2025-reader.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

0
assets/images/reviews/23-11-2025-vnc.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 783 KiB

After

Width:  |  Height:  |  Size: 783 KiB

0
assets/images/reviews/23-11-25-daily-retros.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 3.2 MiB

After

Width:  |  Height:  |  Size: 3.2 MiB

0
assets/images/reviews/30-11-2025-acutal.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 147 KiB

0
assets/images/reviews/30-11-25-daily-retros.jpg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

0
assets/images/reviews/PDT-bruno-vehicle-web-api.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

0
assets/images/reviews/c-sharp-vehicle-breakpoints.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 438 KiB

After

Width:  |  Height:  |  Size: 438 KiB

View File

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 254 KiB

View File

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 230 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 123 KiB

View File

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 118 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

0
assets/images/reviews/timesheets/timesheet-01-02.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

0
assets/images/reviews/timesheets/timesheet-08-02.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

0
assets/images/syntax/assets.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 226 KiB

After

Width:  |  Height:  |  Size: 226 KiB

0
assets/images/syntax/filebrowser.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 564 KiB

After

Width:  |  Height:  |  Size: 564 KiB

0
assets/images/syntax/not_clutter.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 192 KiB

After

Width:  |  Height:  |  Size: 192 KiB

0
assets/rnote/07-12-2025-retrospectives.rnote Executable file → Normal file
View File

0
assets/rnote/09-11-2025-nginx-architecture.rnote Executable file → Normal file
View File

0
assets/rnote/09-11-2025-retrospectives.rnote Executable file → Normal file
View File

0
assets/rnote/10-08-2025-weekly-review.rnote Executable file → Normal file
View File

0
assets/rnote/2025-08-08-emacs.rnote Executable file → Normal file
View File

0
assets/rnote/23-11-2025-retrospectives.rnote Executable file → Normal file
View File

0
assets/rnote/30-11-2025-retrospectives.rnote Executable file → Normal file
View File

0
assets/rnote/retros-template.rnote Executable file → Normal file
View File

0
assets/scripts/bigger-picture.min.js vendored Executable file → Normal file
View File

0
assets/scripts/comments.js Executable file → Normal file
View File

0
assets/scripts/competency-status-board.js Executable file → Normal file
View File

0
assets/scripts/gallery-init.js Executable file → Normal file
View File

0
assets/scripts/lunr.js Executable file → Normal file
View File

2811
assets/scripts/mermaid.min.js vendored Normal file

File diff suppressed because one or more lines are too long

0
assets/scripts/notes.js Executable file → Normal file
View File

61
assets/scripts/script.js Executable file → Normal file
View File

@@ -225,3 +225,64 @@ document.addEventListener("DOMContentLoaded", () => {
}); });
// Make Mermaid diagrams zoomable
window.addEventListener('load', function() {
// Initialize Mermaid (if not already)
mermaid.initialize({ startOnLoad: false, theme: 'neutral' });
// Find all Mermaid divs
document.querySelectorAll('.mermaid').forEach(el => {
// Decode HTML entities
el.innerHTML = el.innerHTML
.replace(/>/g, '>')
.replace(/&lt;/g, '<')
.replace(/&amp;/g, '&');
// Wrap in container if not already wrapped
if (!el.parentElement.classList.contains('mermaid-container')) {
const container = document.createElement('div');
container.classList.add('mermaid-container');
// Add zoom controls
const controls = document.createElement('div');
controls.classList.add('mermaid-zoom-controls');
controls.innerHTML = `
<button class="zoom-in">+</button>
<button class="zoom-out">-</button>
`;
container.appendChild(controls);
// Move the mermaid diagram into container
container.appendChild(el.cloneNode(true));
el.replaceWith(container);
// Select the SVG inside
const svg = container.querySelector('.mermaid svg');
let scale = 1;
// Zoom functions
controls.querySelector('.zoom-in').addEventListener('click', () => {
scale += 0.1;
svg.style.transform = `scale(${scale})`;
});
controls.querySelector('.zoom-out').addEventListener('click', () => {
scale = Math.max(0.1, scale - 0.1);
svg.style.transform = `scale(${scale})`;
});
// Optional: scroll wheel zoom
container.addEventListener('wheel', (e) => {
if (e.ctrlKey) { // zoom only with ctrl+wheel
e.preventDefault();
if (e.deltaY < 0) scale += 0.05;
else scale = Math.max(0.1, scale - 0.05);
svg.style.transform = `scale(${scale})`;
}
});
}
});
// Finally, render Mermaid diagrams
mermaid.run({ querySelector: '.mermaid' });
});

0
assets/scripts/search.js Executable file → Normal file
View File

0
assets/scripts/svg-pan-zoom.min.js vendored Executable file → Normal file
View File

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

0
assets/sketchnotes/07-12-2025-retrospectives.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 568 KiB

After

Width:  |  Height:  |  Size: 568 KiB

0
assets/sketchnotes/09-11-2025-nginx-architecture.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

0
assets/sketchnotes/09-11-2025-retrospectives.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1024 KiB

After

Width:  |  Height:  |  Size: 1024 KiB

0
assets/sketchnotes/10-08-2025-weekly-review.svg Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.2 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

Some files were not shown because too many files have changed in this diff Show More