feat: update now

This commit is contained in:
Ayo Ayco 2025-01-31 23:44:01 +01:00
parent d7df09fc0d
commit 927cc4f53f
6 changed files with 98 additions and 10 deletions

View file

@ -0,0 +1,7 @@
{
"title": "Going to FOSDEM2025",
"description": "Going to FOSDEM2025",
"publishDate": "2025-01-15",
"publishedOn": "the 15th of January, 2025",
"publishState": ""
}

View file

@ -0,0 +1,7 @@
## FOSDEM 2025
Just today, I got a notification via mail that I've been added to a [Matrix](https://matrix.org/) chat room for social web "backstage" -- I thought it was strange because I was not in the schedule the last several times I checked. So I visited the [page for the day's schedule](https://fosdem.org/2025/schedule/track/social-web/) and apparently I'm included.
Not sure what happened, it could be a glitch in the conference planning platform or the communication, but yeah, I'm going to [FOSDEM 2025](https://fosdem.org/2025) for a short talk about [Elk](https://github.com/elk-zone/elk).
If you are going, please [drop me a line via any of my contact channels](https://ayco.io/about) and let's meet. :)

View file

@ -1,7 +1,7 @@
{
"title": "Going to FOSDEM2025",
"description": "Going to FOSDEM2025",
"publishDate": "2025-01-15",
"publishedOn": "the 15th of January, 2025",
"publishState": ""
"title": "At FOSDEM Social Web",
"description": "This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!",
"publishDate": "2025-01-31",
"publishedOn": "the 31st of January, 2025",
"publishState": "while preparing to go to Brussels :)"
}

View file

@ -1,7 +1,9 @@
## FOSDEM 2025
## At FOSDEM Social Web
Just today, I got a notification via mail that I've been added to a [Matrix](https://matrix.org/) chat room for social web "backstage" -- I thought it was strange because I was not in the schedule the last several times I checked. So I visited the [page for the day's schedule](https://fosdem.org/2025/schedule/track/social-web/) and apparently I'm included.
This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!
Not sure what happened, it could be a glitch in the conference planning platform or the communication, but yeah, I'm going to [FOSDEM 2025](https://fosdem.org/2025) for a short talk about [Elk](https://github.com/elk-zone/elk).
Theres plenty to talk about in the Social Web space, and the line up looks really interesting! Particularly looking forward to hearing about Federation @ Forgejo 😄
If you are going, please [drop me a line via any of my contact channels](https://ayco.io/about) and let's meet. :)
Glad to be part of this. See you if youre there!
👉 <a href="https://fosdem.org/2025/schedule/track/social-web/">See the schedule</a>

View file

@ -11,7 +11,7 @@ const publishedOn = now.publishedOn === '' ? now.publishDate : now.publishedOn
<Layout title="Now" description="What is Ayo Ayco currently up to?">
<main>
<h1><span class="text-gradient">What I'm doing now</span></h1>
<h1><span class="text-gradient">What I'm up to</span></h1>
<p>
<em
>Updated on <time datetime="{now.publishDate}">{publishedOn}</time>{

View file

@ -0,0 +1,72 @@
---
import Layout from '../../../../layouts/Layout.astro'
import Footer from '../../../../components/Footer.astro'
const title = `Going to FOSDEM2025`
const description = `Going to FOSDEM2025`
const publishedOn = `the 15th of January, 2025`
const publishDate = `2025-01-15`
const publishState = ``
const content = `<h2>FOSDEM 2025</h2>
<p>Just today, I got a notification via mail that I've been added to a <a href="https://matrix.org/">Matrix</a> chat room for social web "backstage" -- I thought it was strange because I was not in the schedule the last several times I checked. So I visited the <a href="https://fosdem.org/2025/schedule/track/social-web/">page for the day's schedule</a> and apparently I'm included.</p>
<p>Not sure what happened, it could be a glitch in the conference planning platform or the communication, but yeah, I'm going to <a href="https://fosdem.org/2025">FOSDEM 2025</a> for a short talk about <a href="https://github.com/elk-zone/elk">Elk</a>.</p>
<p>If you are going, please <a href="https://ayco.io/about">drop me a line via any of my contact channels</a> and let's meet. :)</p>`
---
<Layout title={title} description={description}>
<main>
<h1><span class="text-gradient">{title}</span></h1>
<p>
<em>
Published on
<time datetime={publishDate}>{publishedOn}</time>
{publishState}
</em>
</p>
<Fragment set:html={content} />
<Footer />
</main>
</Layout>
<style>
main {
margin: auto;
padding: 1em;
max-width: var(--content-width);
}
.text-gradient {
font-weight: 900;
background-image: var(--ayo-gradient);
animation: pulse 4s ease-in-out infinite;
background-size: 500% 500%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 100% 200%;
background-position-y: 100%;
border-radius: 0.4rem;
}
.highlighted-content {
margin: 1rem 0;
background: #4f39fa;
padding: 1rem;
border-radius: 0.4rem;
color: var(--color-bg);
}
.highlighted-content code {
font-size: var(--font-size-base);
border: 0.1em solid var(--color-border);
border-radius: 4px;
padding: 0.15em 0.25em;
}
.link-card-grid {
display: grid;
gap: 1rem;
padding: 0;
}
</style>