4 Ревизии 3c426e40cb ... e7fcd5d6bf

Автор SHA1 Съобщение Дата
  vaeringjar e7fcd5d6bf Add stub experiment with spring velocity templates. преди 1 месец
  vaeringjar abba19510a Add wip experiment with mocha and nyc. преди 1 месец
  vaeringjar 1dd0787425 Add wip experiment with openproject. преди 1 месец
  vaeringjar 3020222d68 Save changes to Fozzy. преди 1 месец

+ 18 - 1
src/blog/content/rpg/fozzy_fizzledarn_alansbarn.md

@@ -60,6 +60,8 @@ ABSENT
 2024-12-13 (Session 5)
 ----------------------
 
+Retcon, Fozzy received the Chime of Exile.
+
 2024-12-20 (Session 6)
 ----------------------
 
@@ -78,7 +80,22 @@ ABSENT
 - due to Fozzy's resentment towards gods even if he knows this one, he
   won't bring it up unless someone asks
 - The Fozzy Tickle, the song about healing
-- Bust a bucket, who'd a dunk it, Blazer duty, super sunk it, slammin' geez it, killer threes it, go up-get it-got it-good!
+- Bust a bucket, who'd a dunk it, Blazer duty, super sunk it, slammin'
+  geez it, killer threes it, go up-get it-got it-good!
+
+2025-02-07 (Session 11)
+-----------------------
+
+I missed this one.
+
+2025-02-28 (Session 12)
+-----------------------
+
+2025-03-07 (Session 13)
+-----------------------
+
+We get 8 plantinum bars and a bag of holding.
+
 
 Notes
 =====

+ 16 - 0
src/experiments/src/2025/project_manoware/NOTES.md

@@ -0,0 +1,16 @@
+# Usage
+
+[OpenProject on Docker all-in-one container]
+
+```
+docker run -it -p 8080:80 \
+  -e OPENPROJECT_SECRET_KEY_BASE=secret \
+  -e OPENPROJECT_HOST__NAME=localhost:8080 \
+  -e OPENPROJECT_HTTPS=false \
+  -e OPENPROJECT_DEFAULT__LANGUAGE=en \
+  openproject/openproject:15
+```
+
+---
+
+[OpenProject on Docker all-in-one container]: https://www.openproject.org/docs/installation-and-operations/installation/docker/

+ 10 - 0
src/experiments/src/2025/project_manoware/docker-compose.yml

@@ -0,0 +1,10 @@
+version: '3'
+services:
+  openproject:
+    image: openproject/community
+    ports:
+      - "8080:80"
+    environment:
+      - SECRET_KEY_BASE=your_secret_key
+    volumes:
+      - ./data:/var/openproject

+ 2 - 0
src/experiments/src/2025/project_nyc/.gitignore

@@ -0,0 +1,2 @@
+node_modules
+package-lock.json

+ 5 - 0
src/experiments/src/2025/project_nyc/.nycrc

@@ -0,0 +1,5 @@
+{
+  "reporter": ["text"],
+  "include": ["script.js"],
+  "exclude": ["test.js", "test-index.html", "mocha.js", "mocha.css"]
+}

+ 36 - 0
src/experiments/src/2025/project_nyc/Makefile

@@ -0,0 +1,36 @@
+# ---------- ---------- ---------- ---------- ---------- ----------
+#
+# project_nyc
+#
+#    1) config, vars, and target
+#    2) functions
+#    3) phonies
+#
+# ---------- ---------- ---------- ---------- ---------- ----------
+
+
+target: help
+
+
+# ---------- ---------- ---------- ---------- ---------- ----------
+# functions
+# ---------- ---------- ---------- ---------- ---------- ----------
+
+define run-tests
+	@npx nyc mocha test.js
+endef
+
+
+# ---------- ---------- ---------- ---------- ---------- ----------
+# phonies
+# ---------- ---------- ---------- ---------- ---------- ----------	
+
+.PHONY: help
+help:
+	@echo "Usage: make [PHONY] [OPTIONS]"
+	@sed -n -e "/sed/! s/\.PHONY: //p" Makefile
+
+
+.PHONY: test
+test:
+	@$(call run-tests)

+ 25 - 0
src/experiments/src/2025/project_nyc/index.html

@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Hello World Example</title>
+    <style>
+        body {
+            font-family: Arial, sans-serif;
+            text-align: center;
+            margin-top: 50px;
+        }
+        button {
+            padding: 10px 20px;
+            font-size: 16px;
+        }
+    </style>
+</head>
+<body>
+    <h1>Hello, World!</h1>
+    <button onclick="showMessage()">Click Me!</button>
+
+    <script src="script.js"></script>
+</body>
+</html>

+ 3 - 0
src/experiments/src/2025/project_nyc/script.js

@@ -0,0 +1,3 @@
+function showMessage() {
+    alert("Hello, World! This is a simple JavaScript alert.");
+}

+ 23 - 0
src/experiments/src/2025/project_nyc/test-index.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Test Hello World Example</title>
+    <link rel="stylesheet" href="mocha.css">
+</head>
+<body>
+    <h1>Running Tests...</h1>
+    <div id="mocha"></div>
+
+    <script src="mocha.js"></script>
+    <script src="chai.js"></script>
+    <script src="script.js"></script>
+    <script src="test.js"></script>
+
+    <script>
+    mocha.setup('bdd');
+    mocha.run();
+    </script>
+</body>
+</html>

+ 0 - 0
src/experiments/src/2025/project_nyc/test.js


Някои файлове не бяха показани, защото твърде много файлове са промени