const map = {"projects.html":"
📘 waffleview >>

Mysterious! This project has no description.

📘 brainlet-reactview >>

a react frontend for waffle (brainlet)

📘 ravenview >>

Simple experimental low-level UI library written in C++.

📘 bridgecordview >>

bridge bot api for discord servers

📘 riceview >>

my personal forks of various software and my dotfiles

📘 hippOSview >>

simple osdev testing

📘 homepageview >>

Mysterious! This project has no description.

📘 brainletview >>

🎤🐢 An open source, self-hosted alternative to Discord

📘 portalview >>

waffletv's interface app

📘 capybaraview >>

simple and fast remote touchpad

📘 rotcpuview >>

Mysterious! This project has no description.

📘 quad-jview >>

a simple upload server

📘 blocklistsview >>

Some pi-hole blocklists

📘 wormholeview >>

A simple websocket abstraction.

📘 mcliview >>

a command-line minecraft launcher written in rust

📘 mustview >>

Helper program for deploying protocol associations needed for running Roblox on Linux

🍴 brainlet-clientview >>

Mysterious! This project has no description.

📘 luapageview >>

Mysterious! This project has no description.

📘 page-simplifyview >>

turn pages into pure html

","index.html":"

hippoz's website

i think

"}; const content = document.getElementById("content"); const load = (page) => content.innerHTML = map[page.substring(1, page.length) || "_notfound"]; const navigate = (page) => { history.pushState(null, "", page); load(page); }; const populate = () => { const elements = document.querySelectorAll("[href]"); elements.forEach(element => { const existingLink = element.getAttribute("href"); if (map[existingLink]) { element.setAttribute("href", "#"); element.onclick = () => navigate(existingLink); } }); }; const main = () => { populate(); window.onpopstate = () => {load(location.pathname); console.log("a");}; }; main();