Add projects listing.
parent
576d1f4423
commit
cf1c32def2
|
@ -9,7 +9,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-primary">
|
<body class="bg-primary">
|
||||||
<div
|
<div
|
||||||
class="bg-secondary border-b-2 border-zinc-200 flex items-center gap-x-4 p-6 text-zinc-200"
|
class="bg-secondary border-b-2 border-zinc-200 flex items-center gap-4 p-6 text-zinc-200"
|
||||||
>
|
>
|
||||||
<header class="grow flex items-center gap-5">
|
<header class="grow flex items-center gap-5">
|
||||||
<img
|
<img
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<main class="mx-auto p-8">
|
<main class="mx-auto p-8">
|
||||||
<section class="grid grid-cols-1 lg:grid-cols-2 gap-10 pb-12">
|
<section class="grid grid-cols-1 lg:grid-cols-2 gap-10 pb-16">
|
||||||
<div class="col-span-1 lg:col-span-2">
|
<div class="col-span-1 lg:col-span-2">
|
||||||
<h2 class="text-xl pb-2">Hosting</h2>
|
<h2 class="text-xl pb-2">Hosting</h2>
|
||||||
<p class="text-sm grow">
|
<p class="text-sm grow">
|
||||||
|
@ -137,12 +137,58 @@
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h2 class="text-xl pb-2">Projects</h2>
|
<h2 class="text-xl pb-4">Projects</h2>
|
||||||
<ul>
|
<div class="grid grid-cols-1 gap-6">
|
||||||
<li>Bootstrap</li>
|
<div>
|
||||||
<li>Anki Synonyms</li>
|
<a
|
||||||
<li>Homesync</li>
|
href="https://github.com/jrpotter/bootstrap"
|
||||||
</ul>
|
target="_blank"
|
||||||
|
class="font-bold"
|
||||||
|
>Bootstrap</a
|
||||||
|
>
|
||||||
|
<p class="text-sm pt-2">
|
||||||
|
A C-based CLI for initializing projects in a flexible but
|
||||||
|
deterministic way. Originally motivated to serve as a better
|
||||||
|
alternative to
|
||||||
|
<a href="https://github.com/NixOS/templates" target="_blank"
|
||||||
|
>Nix flake templates</a
|
||||||
|
>, <code>bootstrap</code> allows you to provide different
|
||||||
|
parameters to custom initialization scripts akin to
|
||||||
|
<code>npm init</code>, <code>django-admin startproject</code>,
|
||||||
|
etc.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a
|
||||||
|
href="https://github.com/jrpotter/anki-synonyms"
|
||||||
|
target="_blank"
|
||||||
|
class="font-bold"
|
||||||
|
>Anki Synonyms</a
|
||||||
|
>
|
||||||
|
<p class="text-sm pt-2">
|
||||||
|
An
|
||||||
|
<a href="https://apps.ankiweb.net/" target="_blank">Anki</a>
|
||||||
|
plugin for specifying synonyms within flashcard question and
|
||||||
|
answer prompts.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a
|
||||||
|
href="https://github.com/jrpotter/homesync"
|
||||||
|
target="_blank"
|
||||||
|
class="font-bold"
|
||||||
|
>Homesync</a
|
||||||
|
>
|
||||||
|
<p class="text-sm pt-2">
|
||||||
|
An experimental Rust-based project for automatically syncing files
|
||||||
|
scross your desktop to a git repository. Allows upstream and
|
||||||
|
downstream syncing with a single command, without any need to copy
|
||||||
|
files manually to and from a git repository. Separately, a daemon
|
||||||
|
can be spawned that watches files for changes and pushes/pulls
|
||||||
|
them as they happen.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer
|
<footer
|
||||||
|
|
Loading…
Reference in New Issue