forgor lol

This commit is contained in:
laura 2025-11-13 01:49:35 -03:00
parent 869f3dfbe3
commit 862b11b9ef
Signed by: w
GPG key ID: BCD2117C99E69817
34 changed files with 516 additions and 179 deletions

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@ -19,13 +19,30 @@ export default function About() {
<section id="about">
<h2>About</h2>
<p>
Hi! I'm Lívia, a 18-year-old girl from Brazil passionate about open
I'm an aspiring electrical engineer with a keen interest in open
access to information and knowledge. My technical work centers on
functional programming, C99, and writing quirky TypeScript code that
explores its more obscure corners and unconventional patterns. I'm
drawn to atypical low-level technologies and have a particular
interest in the x86 and RISC-V ISAs.
</p>
<p>
<i>In a more personal tone...</i>{" "}
Hewwo! I'm Lívia, a 18-year-old girl from Brazil passionate about open
access to information, technology, linguistics, functional
programming, and pretty much anything that involves understanding
technology, human language, or philosophical frameworks. I hope you
find something interesting here, and don't hesitate to reach out if
you feel like it. <span class="highlight">:3</span>
</p>
<p>
When I'm not studying circuits or coding, it's likely that I'm either
exploring linguistics or listening to music. My tastes shift
constantly with my hyperfocus, ranging from indie, shoegaze, and J-Pop
to speedcore and various metal derivatives. I run a FreeBSD server
that hosts this site and various services, serving as my hands-on lab
for systems administration. <span class="highlight">^-^</span>
</p>
<p>
Beyond quirky technology, I <i>really</i>{" "}
like linguistics and philosophy enthusiast. I'm also autistic n' ADHD,

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@ -25,17 +25,8 @@ export default function Home() {
functional programming, C99, and writing quirky TypeScript code that
explores its more obscure corners and unconventional patterns. I'm
drawn to atypical low-level technologies and have a particular
interest in the x86 and RISC-V ISAs.
interest in the x86 and RISC-V ISAs. <a href="/about">Read more</a>
</p>
<p>
When I'm not studying circuits or coding, it's likely that I'm either
exploring linguistics or listening to music. My tastes shift
constantly with my hyperfocus, ranging from indie, shoegaze, and J-Pop
to speedcore and various metal derivatives. I run a FreeBSD server
that hosts this site and various services, serving as my hands-on lab
for systems administration. <span class="highlight">^-^</span>
</p>
<a href="/about"> Extended version</a>
</section>
<section id="links">
<h2>Links</h2>
@ -65,12 +56,12 @@ export default function Home() {
title="Discord"
href="https://discord.com/users/797566974024351745"
>
@favewa on Discord
@rumiwa on Discord
</a>
</li>
<li>
<a title="Telegram" href="https://t.me/favewa">
@favewa on Telegram
<a title="Telegram" href="https://t.me/lauwawa">
@lauwawa on Telegram
</a>
</li>
</ul>
@ -79,8 +70,8 @@ export default function Home() {
<h3>Code</h3>
<ul>
<li>
<a title="GitHub" href="https://github.com/misties">
misties on GitHub
<a title="GitHub" href="https://github.com/fukkai">
fukkai on GitHub
</a>
</li>
<li>
@ -108,15 +99,26 @@ export default function Home() {
<ul>
<li>
<ProjectCard
author="favewa"
author="fukkai"
name="cobweb"
description="a lightweight, tiny web framework for deno tailored for dynamic no-js applications"
url="http://github.com/misties/cobweb"
url="http://github.com/fukkai/cobweb"
languageColor="#3178c6"
languageName="TypeScript"
license="BSD-3-Clause"
/>
</li>
<li>
<ProjectCard
author="fukkai"
name="ratazana"
description="minimal implementation of logitech and razer mouse firmware, repurposing their onboard memory as a covert channel for arbitrary data"
url="http://github.com/fukkai/ratazana"
languageColor="#555"
languageName="C"
license="BSD-3-Clause"
/>
</li>
<li>
<ProjectCard
author="w"
@ -144,7 +146,7 @@ export default function Home() {
<span class="key">WEB</span>
<code class="value">
<a href="https://ko-fi.com/west">west@ko-fi</a>
<a href="https://github.com/sponsors/misties">misties@github</a>
<a href="https://github.com/sponsors/fukkai">fukkai@github</a>
</code>
</div>
<div class="row">

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@ -7,11 +7,13 @@ import { PageProps } from "fresh";
import { getCachedReports } from "@/utils/atproto.ts";
import Empty from "@/components/Empty.tsx";
import "@/assets/report.css";
import { formatReadingTime } from "../../utils/blog.ts";
import { Head } from "fresh/runtime";
export default function PostPage(props: PageProps) {
const { rkey } = props.params;
const post = getCachedReports().find((rep) =>
rep.rkey === rkey.toLowerCase()
const post = getCachedReports().find(
(rep) => rep.rkey === rkey.toLowerCase(),
);
if (!post) {
@ -20,17 +22,57 @@ export default function PostPage(props: PageProps) {
return (
<>
<Head>
<title>{post.title} - acpi.at</title>
<meta name="title" content={`${post.title} - acpi.at`} />
<meta name="description" content={post.excerpt} />
<meta name="author" content="acpi.at" />
{post.tags && <meta name="keywords" content={post.tags.join(", ")} />}
<meta name="theme-color" content="#a0bdfc" />
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#1a1a2e"
/>
<meta property="og:type" content="article" />
<link rel="canonical" href={`https://acpi.at/reports/${post.rkey}`} />
<meta name="robots" content="index, follow" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="acpi.at" />
<meta property="og:title" content={post.title} />
<meta property="og:description" content={post.excerpt} />
<meta property="og:image" content="" />
<meta
property="og:url"
content={`https://acpi.at/reports/${post.rkey}`}
/>
<meta property="article:published_time" content={post.createdAt} />
<meta property="article:author" content="acpi.at" />
{post.tags &&
post.tags.map((tag) => (
<meta key={tag} property="article:tag" content={tag} />
))}
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content={post.title} />
<meta name="twitter:description" content={post.excerpt} />
<meta name="twitter:image" content="" />
</Head>
<a href="/reports"> exit this report</a>
<br />
<article>
<header>
<div class="meta">
<time datetime={post?.createdAt}>{post?.createdAt}</time>
</div>
<h1>{post.title}</h1>
<div class="meta">
<time datetime={post.createdAt}>{post.createdAt}</time> ·{" "}
{formatReadingTime(post.readingTime)}
</div>
{post.tags && (
<div class="tags">
{post.tags.map((tag) => <span key={tag} class="tag">{tag}</span>)}
{post.tags.map((tag) => (
<span key={tag} class="tag">
{tag}
</span>
))}
</div>
)}
</header>
@ -38,13 +80,13 @@ export default function PostPage(props: PageProps) {
class="content typewriting"
dangerouslySetInnerHTML={{ __html: post.content }}
/>
<footer>
<a href="/">
You reached the end of the page. It is now safe to turn off your
computer.
</a>
</footer>
</article>
<footer>
<a href="/" style="color: var(--theme-foreground-alt)">
You reached the end of the page. It is now safe to turn off your
computer.
</a>
</footer>
</>
);
}

View file

@ -1,5 +1,5 @@
/**
* Copyright (c) 2025 favewa
* Copyright (c) 2025 miwa
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@ -7,10 +7,51 @@ import Reports from "@/components/Reports.tsx";
import Links from "@/components/Links.tsx";
import { getCachedReports } from "@/utils/atproto.ts";
import "@/assets/report.css";
import { Head } from "fresh/runtime";
export default function Page() {
return (
<>
<Head>
<title>$reports - acpi.at</title>
<meta
name="description"
content="Thoughts, ramblings, and occasional coherence. A collection of personal essays on stuff that randomly come across my mind."
/>
<meta
name="keywords"
content="personal blog, essays, mental health, philosophy, linguistics, life writing, reflections"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="$reports - acpi.at" />
<meta
name="og:description"
content="Thoughts, ramblings, and occasional coherence. A collection of personal essays on stuff that randomly come across my mind."
/>
<meta
name="twitter:description"
content="Thoughts, ramblings, and occasional coherence. A collection of personal essays on stuff that randomly come across my mind."
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="$reports - acpi.at" />
<meta property="og:image" content="https://acpi.at/bnuy.webp" />
<meta property="og:url" content="https://acpi.at/reports" />
<meta property="og:locale" content="en_US" />
<meta name="theme-color" content="#a0bdfc" />
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#1a1a2e"
/>
<link rel="canonical" href="https://acpi.at/reports" />
<meta name="robots" content="index, follow" />
<link
rel="alternate"
type="application/rss+xml"
title="acpi.at - $reports"
href="https://acpi.at/rss.xml"
/>
</Head>
<Links selected="reports" />
<Reports reports={getCachedReports()} />
</>