aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornetop://ウィビ <paul@webb.page>2026-06-16 16:49:33 -0700
committernetop://ウィビ <paul@webb.page>2026-06-16 16:49:33 -0700
commit70c3afa03ff4d99d366500e7addbe2e29779a3f1 (patch)
treed705cfeedc7eb613bfb962fb54bf5c3c4e24bfa6
parentf606f5572883e84ffceaf2b67c763946cab868db (diff)
downloadhomepage-70c3afa03ff4d99d366500e7addbe2e29779a3f1.tar.gz
homepage-70c3afa03ff4d99d366500e7addbe2e29779a3f1.zip
adds blog posts and updates projects
-rw-r--r--package.json2
-rw-r--r--src/lib/component/Blog.svelte2
-rw-r--r--src/lib/component/Project.svelte19
-rw-r--r--static/images/projects/chronver.jpgbin1285403 -> 0 bytes
-rw-r--r--static/images/projects/chronver.pngbin0 -> 7652342 bytes
-rw-r--r--static/images/projects/dap.jpgbin1102205 -> 0 bytes
-rw-r--r--static/images/projects/dap.pngbin0 -> 7246620 bytes
-rw-r--r--static/images/projects/disc.pngbin0 -> 13019861 bytes
-rw-r--r--static/images/projects/nickel.pngbin0 -> 10989931 bytes
-rw-r--r--static/images/projects/nickel_01.jpgbin1222917 -> 0 bytes
-rw-r--r--static/images/projects/uchu.pngbin0 -> 6789574 bytes
-rw-r--r--static/images/projects/uchu_01.jpgbin573153 -> 0 bytes
12 files changed, 17 insertions, 6 deletions
diff --git a/package.json b/package.json
index 75fe127..23431a8 100644
--- a/package.json
+++ b/package.json
@@ -52,5 +52,5 @@
"watch:sass": "sass --watch sass/uchu:static --style compressed"
},
"type": "module",
- "version": "2026.05.30"
+ "version": "2026.06.16"
}
diff --git a/src/lib/component/Blog.svelte b/src/lib/component/Blog.svelte
index 658b948..7d619f0 100644
--- a/src/lib/component/Blog.svelte
+++ b/src/lib/component/Blog.svelte
@@ -1,6 +1,8 @@
<script lang="ts">
/*** STATE -------------------------------------------- ***/
const memos = [
+ "WM-095.txt",
+ "WM-094.txt",
"WM-093.txt",
"WM-092.txt",
"WM-091.txt",
diff --git a/src/lib/component/Project.svelte b/src/lib/component/Project.svelte
index 024045e..c27b1d4 100644
--- a/src/lib/component/Project.svelte
+++ b/src/lib/component/Project.svelte
@@ -27,7 +27,7 @@
content: `<p>In 2019 I was sick of using SemVer so I made something better (for me). Check it out at <a href="https://chronver.org?ref=webb.page">chronver.org</a>!</p>`,
id: "009",
media: [
- "/images/projects/chronver.jpg"
+ "/images/projects/chronver.png"
],
tagline: "chronologic/calendar-based versioning system",
title: "ChronVer"
@@ -36,12 +36,21 @@
content: `<p>I didn’t like the way things were being run on <a href="https://archive.is/vpZCG?ref=webb.page" target="_blank">the Handshake blockchain</a> but <a href="https://archive.is/TMycF?ref=webb.page" target="_blank">I believe in the vision</a> so I made my own. Dap is the better handshake and it’s entering testnet soon.</p><p>Check it out at <a href="https://dap.sh?ref=webb.page">dap.sh</a>!</p>`,
id: "010",
media: [
- "/images/projects/dap.jpg"
+ "/images/projects/dap.png"
],
tagline: "a secure foundation for the neue internet",
title: "Dap"
},
{
+ content: `<p>My favorite database was no more so I set out to make my own, with enhanced features and improved DX.</p><p>Check it out at <a href="https://disc.sh?ref=webb.page">disc.sh</a>!</p>`,
+ id: "011",
+ media: [
+ "/images/projects/disc.png"
+ ],
+ tagline: "the database for users",
+ title: "Disc"
+ },
+ {
content: "<p>In 2014 I had the idea for a &ldquo;responsive operating system&rdquo; that could run on any device from a Raspberry Pi to a desktop PC.</p><p>There's no reason why a neat OS GUI shouldn't look as good as anime interfaces.</p>",
id: "003",
media: [
@@ -64,7 +73,7 @@
content: `<p>I just want a place to upload my Fortnite clips and <del>fuck</del> <em>I'm not a fan of</em> Google. No other platform out there makes sense either so once again, I gotta build what I want to use.</p><p>Check it out at <a href="https://nickel.video?ref=webb.page">nickel.video</a>!</p>`,
id: "005",
media: [
- "/images/projects/nickel_01.jpg"
+ "/images/projects/nickel.png"
],
tagline: "short-form video platform",
title: "Nickel"
@@ -89,14 +98,14 @@
content: `<p>After I learned about <a href="https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl?ref=webb.page" target="_blank">the OKLCH color space</a> and saw how much more vibrant colors were than HEX, I delved into creating the perfect color palette for me. I spent nearly a year copy/pasting my CSS variables in my projects until I decided to have a unified place for them.</p><p><em>For some reason</em> <a href="https://news.ycombinator.com/item?id=43072338?ref=webb.page" target="_blank">my post on HackerNews</a> about uchū got super popular, which was neat. 600+ points and 900+ Github stars is wild. A handful of weirdos got irate, which was&hellip;alarming. Maybe touch grass?</p><p>Check out the site at <a href="https://uchu.style?ref=webb.page" target="_blank">uchu.style</a>!</p>`,
id: "008",
media: [
- "/images/projects/uchu_01.jpg"
+ "/images/projects/uchu.png"
],
tagline: "the color palette for internet lovers",
title: "uchū"
}
];
- let activeProject = "005";
+ let activeProject = "011";
</script>
<style lang="scss">
diff --git a/static/images/projects/chronver.jpg b/static/images/projects/chronver.jpg
deleted file mode 100644
index 68ca8f7..0000000
--- a/static/images/projects/chronver.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/projects/chronver.png b/static/images/projects/chronver.png
new file mode 100644
index 0000000..18121e7
--- /dev/null
+++ b/static/images/projects/chronver.png
Binary files differ
diff --git a/static/images/projects/dap.jpg b/static/images/projects/dap.jpg
deleted file mode 100644
index dd36213..0000000
--- a/static/images/projects/dap.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/projects/dap.png b/static/images/projects/dap.png
new file mode 100644
index 0000000..5bdf3da
--- /dev/null
+++ b/static/images/projects/dap.png
Binary files differ
diff --git a/static/images/projects/disc.png b/static/images/projects/disc.png
new file mode 100644
index 0000000..750567e
--- /dev/null
+++ b/static/images/projects/disc.png
Binary files differ
diff --git a/static/images/projects/nickel.png b/static/images/projects/nickel.png
new file mode 100644
index 0000000..5029868
--- /dev/null
+++ b/static/images/projects/nickel.png
Binary files differ
diff --git a/static/images/projects/nickel_01.jpg b/static/images/projects/nickel_01.jpg
deleted file mode 100644
index 52c8592..0000000
--- a/static/images/projects/nickel_01.jpg
+++ /dev/null
Binary files differ
diff --git a/static/images/projects/uchu.png b/static/images/projects/uchu.png
new file mode 100644
index 0000000..2b47d75
--- /dev/null
+++ b/static/images/projects/uchu.png
Binary files differ
diff --git a/static/images/projects/uchu_01.jpg b/static/images/projects/uchu_01.jpg
deleted file mode 100644
index dd8de5c..0000000
--- a/static/images/projects/uchu_01.jpg
+++ /dev/null
Binary files differ