Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This is a Commodore 64-themed vanity site hosted on GitHub Pages using Jekyll. It features a BASIC interpreter interface powered by wwwbasic.js.
Sign in to like and favorite skills
This is a Commodore 64-themed vanity site hosted on GitHub Pages using Jekyll. It features a BASIC interpreter interface powered by wwwbasic.js.
pawel.codes/ ├── _config.yml # Jekyll configuration ├── CNAME # GitHub Pages domain ├── index.html # Main C64 interface ├── 404.html # C64-styled 404 page ├── CLAUDE.md # This file - project guidelines ├── README.md # Public documentation ├── REDIRECT_GUIDE.md # Private docs for managing redirects │ ├── _data/ # Jekyll data files │ └── redirects.yml # Centralized redirect configuration │ ├── _includes/ # Jekyll includes │ └── head.html # Common head elements │ ├── _layouts/ # Jekyll layouts │ └── default.html # Base layout │ └── redirect.html # Redirect template │ ├── _redirects/ # Redirect pages │ └── decommission.md # Example redirect │ ├── assets/ # Static assets │ ├── css/ │ │ └── c64.css # C64 styling │ ├── js/ │ │ ├── c64-terminal.js # Main terminal interface │ │ ├── commands.js # Built-in commands (HELP, DIR, etc.) │ │ ├── programs.js # BASIC program library │ │ └── wwwbasic.js # BASIC interpreter (vendored) │ └── fonts/ │ ├── C64_Pro_Mono-STYLE.woff2 │ └── C64_Pro-STYLE.woff2 │ └── docs/ # Reference documentation ├── C64-FONTS-USAGE.md # Font documentation └── BASIC-REFERENCE.md # BASIC command reference
// Command routing priority: // 1. Check built-in commands (commands.js) // 2. Check program library (programs.js) // 3. Check localStorage programs (future feature) // 4. Pass to wwwbasic interpreter // 5. Show error if nothing matches
_data/redirects.yml