summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-07-11 11:42:23 -0600
committert <t@tjp.lol>2026-07-11 11:43:04 -0600
commit5943b3063676d68381545e36a9903e1df278e923 (patch)
tree07fc2abc28182202c5cec0cc79b5a0531ae3e616 /projects
initial commit: claude-designed site and project doc to staticly generate it going forward
Diffstat (limited to 'projects')
-rw-r--r--projects/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/projects/index.html b/projects/index.html
new file mode 100644
index 0000000..4e004e6
--- /dev/null
+++ b/projects/index.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<title>Projects — tjp.lol</title>
+<meta name="description" content="Things tjp has built.">
+<link rel="stylesheet" href="../style.css">
+</head>
+<body>
+<div class="wrap">
+
+ <header class="site">
+ <h1 class="brand"><a href="../index.html">~tjp<span class="cur"> $_</span></a></h1>
+ <nav class="main">
+ <a href="../weblog/index.html">weblog</a>
+ <a href="../notes/index.html">notes</a>
+ <a href="../projects/index.html" aria-current="page">projects</a>
+ <a href="../about/index.html">about</a>
+ <a href="../feed.xml">rss</a>
+ </nav>
+ </header>
+
+ <main>
+ <section class="intro">
+ <p>Small things I've built and still maintain. Most live on <a href="https://github.com/teepark">GitHub</a> or <a href="#">tildegit</a>. Placeholder entries for now &mdash; swap in the real ones whenever.</p>
+ </section>
+
+ <section>
+ <h2 class="sec">maintained</h2>
+ <ul class="links" style="display:block;">
+ <li style="display:block;padding:.7rem 0;border-bottom:1px dashed var(--rule);">
+ <a href="https://github.com/teepark" style="font-weight:600;">greenhouse</a> &mdash; <span style="color:var(--muted);">green-thread concurrency for Python, built on greenlet.</span>
+ <div class="tags" style="margin-top:.4rem;"><a href="#">python</a><a href="#">concurrency</a></div>
+ </li>
+ <li style="display:block;padding:.7rem 0;border-bottom:1px dashed var(--rule);">
+ <a href="https://github.com/teepark" style="font-weight:600;">gmi2html</a> &mdash; <span style="color:var(--muted);">the tiny gemtext-to-HTML converter that publishes this weblog.</span>
+ <div class="tags" style="margin-top:.4rem;"><a href="#">gemini</a><a href="#">bash</a></div>
+ </li>
+ <li style="display:block;padding:.7rem 0;border-bottom:1px dashed var(--rule);">
+ <a href="https://github.com/teepark" style="font-weight:600;">dotfiles</a> &mdash; <span style="color:var(--muted);">my shell, editor, and terminal config, documented.</span>
+ <div class="tags" style="margin-top:.4rem;"><a href="#">tools</a><a href="#">shell</a></div>
+ </li>
+ </ul>
+ </section>
+
+ <section>
+ <h2 class="sec">archived / for fun</h2>
+ <ul class="posts">
+ <li><a href="https://github.com/teepark">A terminal RGB guessing game</a></li>
+ <li><a href="https://github.com/teepark">Pageview stats in 20 lines of bash</a></li>
+ </ul>
+ </section>
+ </main>
+
+ <footer>
+ <div class="ring">
+ <span>webring:</span>
+ <a href="#">&larr; prev</a><a href="#">rand</a><a href="#">next &rarr;</a>
+ </div>
+ <p>hand-written in slc &middot; &copy;2026 tjp &middot; <a href="../feed.xml">feed</a></p>
+ </footer>
+
+</div>
+</body>
+</html>