This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * TRACE - iOS Touch Fix | |
| * Drop this at the end of your trace.html to fix iPhone issues | |
| * | |
| * Mave 🌊 | |
| */ | |
| (function() { | |
| 'use strict'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * TRACE - Game Logic Module | |
| * An endless runner where death teaches future players | |
| * | |
| * Mave + Amber collab 🌊🔮 | |
| * | |
| * All coordinates are normalized 0-1 (multiply by canvas dimensions) | |
| * Y axis: 0 = top, 1 = bottom | |
| * Ground level: 0.85 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "meta": { | |
| "version": "0.1.0", | |
| "generated": "2026-02-01", | |
| "description": "Sample concept dataset for Stigmergy knowledge map - Mave + Amber collab" | |
| }, | |
| "concepts": [ | |
| {"id": "c001", "phrase": "attention mechanisms", "domain": "ml", "description": "Neural network components that learn to focus on relevant parts of input sequences"}, | |
| {"id": "c002", "phrase": "transformer architecture", "domain": "ml", "description": "Self-attention based model architecture that revolutionized NLP and beyond"}, | |
| {"id": "c003", "phrase": "gradient descent", "domain": "ml", "description": "Optimization algorithm for finding local minima in loss landscapes"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Let's create a simplified version of the abstract art explorer that will work well on CodePen | |
| // This will include generating some placeholder art and making it responsive for mobile | |
| // First, let's create the HTML structure | |
| const html = ` | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |