From b052f741d935abd2f51423abf3fcda9157844b5c Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Sat, 11 Apr 2026 14:42:43 -0700 Subject: initial commit --- src/lib/component/About.svelte | 98 +++++++++++ src/lib/component/Blog.svelte | 244 +++++++++++++++++++++++++++ src/lib/component/CV.svelte | 78 +++++++++ src/lib/component/Music.svelte | 354 +++++++++++++++++++++++++++++++++++++++ src/lib/component/MyMusic.svelte | 173 +++++++++++++++++++ src/lib/component/Project.svelte | 241 ++++++++++++++++++++++++++ src/lib/component/Promo.svelte | 66 ++++++++ src/lib/component/Remarks.svelte | 179 ++++++++++++++++++++ src/lib/component/Ring.svelte | 312 ++++++++++++++++++++++++++++++++++ src/lib/component/Social.svelte | 112 +++++++++++++ src/lib/component/Support.svelte | 70 ++++++++ src/lib/component/Uses.svelte | 145 ++++++++++++++++ 12 files changed, 2072 insertions(+) create mode 100644 src/lib/component/About.svelte create mode 100644 src/lib/component/Blog.svelte create mode 100644 src/lib/component/CV.svelte create mode 100644 src/lib/component/Music.svelte create mode 100644 src/lib/component/MyMusic.svelte create mode 100644 src/lib/component/Project.svelte create mode 100644 src/lib/component/Promo.svelte create mode 100644 src/lib/component/Remarks.svelte create mode 100644 src/lib/component/Ring.svelte create mode 100644 src/lib/component/Social.svelte create mode 100644 src/lib/component/Support.svelte create mode 100644 src/lib/component/Uses.svelte (limited to 'src/lib/component') diff --git a/src/lib/component/About.svelte b/src/lib/component/About.svelte new file mode 100644 index 0000000..c2a076d --- /dev/null +++ b/src/lib/component/About.svelte @@ -0,0 +1,98 @@ + + + + +

about.webb.page

+ +

TL;DR bio: Architech × Excessively Black × East Coast kid on the West Coast × JU$T × Building a better Internet

+ +

I go by NetOperator Wibby, NetOpWibby, or netop://ウエブ pretty much everywhere online. "NetOperator" is the term given to chronically online people internet enthusiasts in the Megaman Battle Network series, one of my favorite game series of all time and constant source of inspiration.

+ +

TL;DR career bio: From college dropout to self-taught designer turned developer during the 2008 recession → Stopped working on music to focus on family and career → lots of startup work → Now I work at a major "fruit" company. Not bad, eh? Bless the Internet.

+ +

Short life bio: Voracious reader, absolutely loved mystery books: Encyclopedia Brown, Hardy Boys, Nancy Drew, Archie Comics, &c. Frequently took things apart and collected scraps to build "inventions." Avid sketcher and jotter of ideas.

+

Majorly influenced by Pharrell Williams, Chad Hugo, Timbaland, Clipse, N.E.R.D, Nujabes, Shing02, Fat Jon, Five Deez, &c and wanted to make music and beats. Performed exactly once and was recognized on the street afterwards ("your performance was really good"). Developed a perfectionist mindset, which is to blame for my debut album still under wraps (lyrics still hold up though), among other things.

+

Married the girl of my dreams in 2017 (maiden name? Page). We met on a web page in 9th grade, a little known social network called "Classface." Webb + Page. You can't make this up. Oh, and I lost my job four days after our wedding (IoT company imploded and we were the last to know). You wanna hear God laugh? Make plans. Now we have a loquat tree in our backyard in sunny California…LOL (Love Our Loquats)!

+

I try to live life according to The Golden Rule, and to stick to my ethics and morals as much as possible. It's bothersome when I find that others do not. But like…that's life? It's annoying though. You all should think like me!! 😤

+ +
+ +

Anyhoo, I love the internet. The internet has empowered me to learn, explore, and get inspired by so many cool people around the world. If you love yourself, you probably love others and aren't bigoted. That makes you cool as fuck. If this isn't you, I hope you find peace.

+ +{#if selfie === ""} +

loading…

+{:else} +
+ selfie +
the most fantabulous
+
+{/if} diff --git a/src/lib/component/Blog.svelte b/src/lib/component/Blog.svelte new file mode 100644 index 0000000..8469701 --- /dev/null +++ b/src/lib/component/Blog.svelte @@ -0,0 +1,244 @@ + + + + +

+ blog.webb.page +

+ + diff --git a/src/lib/component/CV.svelte b/src/lib/component/CV.svelte new file mode 100644 index 0000000..b24d2cf --- /dev/null +++ b/src/lib/component/CV.svelte @@ -0,0 +1,78 @@ + + + + +

+ cv.webb.page +

+ +{#if cv === ""} +
loading…
+{:else} +
+ {cv} +
+{/if} diff --git a/src/lib/component/Music.svelte b/src/lib/component/Music.svelte new file mode 100644 index 0000000..01b731a --- /dev/null +++ b/src/lib/component/Music.svelte @@ -0,0 +1,354 @@ + + + + +

music.webb.page/bandcamp

+ + diff --git a/src/lib/component/MyMusic.svelte b/src/lib/component/MyMusic.svelte new file mode 100644 index 0000000..aed9098 --- /dev/null +++ b/src/lib/component/MyMusic.svelte @@ -0,0 +1,173 @@ + + + + +

music.webb.page

+ + diff --git a/src/lib/component/Project.svelte b/src/lib/component/Project.svelte new file mode 100644 index 0000000..024045e --- /dev/null +++ b/src/lib/component/Project.svelte @@ -0,0 +1,241 @@ + + + + +

projects.webb.page

+ + diff --git a/src/lib/component/Promo.svelte b/src/lib/component/Promo.svelte new file mode 100644 index 0000000..54f57bd --- /dev/null +++ b/src/lib/component/Promo.svelte @@ -0,0 +1,66 @@ + + + + +

promo.webb.page

+ + diff --git a/src/lib/component/Remarks.svelte b/src/lib/component/Remarks.svelte new file mode 100644 index 0000000..6633654 --- /dev/null +++ b/src/lib/component/Remarks.svelte @@ -0,0 +1,179 @@ + + + + +

+ blog.webb.page/remarks +

+ + diff --git a/src/lib/component/Ring.svelte b/src/lib/component/Ring.svelte new file mode 100644 index 0000000..01e4910 --- /dev/null +++ b/src/lib/component/Ring.svelte @@ -0,0 +1,312 @@ + + + + +

ring.webb.page

+ + diff --git a/src/lib/component/Social.svelte b/src/lib/component/Social.svelte new file mode 100644 index 0000000..1e469eb --- /dev/null +++ b/src/lib/component/Social.svelte @@ -0,0 +1,112 @@ + + + + +

social.webb.page/mastodon

+ +{#if mastodonLoaded} +
+ {@html mastodonPostContent} + + {#if mastodonPostMedia.length} +
+ {#each mastodonPostMedia as media} + {#if videoRegex.test(media)} + + + {:else} +
+ mastodon media +
+
+ {/if} + {/each} +
+ {/if} + +

— + + + +

+
+{:else} +
+

loading…

+
+{/if} diff --git a/src/lib/component/Support.svelte b/src/lib/component/Support.svelte new file mode 100644 index 0000000..ceff0fd --- /dev/null +++ b/src/lib/component/Support.svelte @@ -0,0 +1,70 @@ + + + + +

support.webb.page

+ + + +

I have a number of domains for sale. Past projects never embarked on but names I don’t want to let expire just yet; dsgn.io, hackerspace.wtf, imagination.industries, and phoenix.systems.

diff --git a/src/lib/component/Uses.svelte b/src/lib/component/Uses.svelte new file mode 100644 index 0000000..4c91944 --- /dev/null +++ b/src/lib/component/Uses.svelte @@ -0,0 +1,145 @@ + + + + +

uses.webb.page

+ + -- cgit v1.2.3