Skip to content

Commit a303339

Browse files
committed
Add "Now" page
See https://nownownow.com/about
1 parent 56c4570 commit a303339

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/components/NavBar.astro

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ if (currentPath[currentPath.length - 1] === "/") {
2424
>AS211224</a
2525
>
2626
<a class={currentPath === "posts" ? "active" : ""} href="/posts/">Posts</a>
27+
<a class={currentPath === "now" ? "active" : ""} href="/now">Now</a>
2728
</nav>
2829

2930
<style>

src/pages/now.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: ../layouts/Layout.astro
3+
title: Now (August 2024 edition)
4+
description: My current focusses in life.
5+
---
6+
7+
This page shows what I'm doing currently, if you have your own website, you
8+
[should make your own](https://nownownow.com/about) too.
9+
10+
11+
## Python Discord
12+
13+
Our DevOps team has lately picked back up steam. As part of that, I have
14+
recently implemented a forwarding e-mail server using
15+
[Postfix](https://postfix.org), together with
16+
[postsrsd](https://github.com/roehling/postsrsd) this setup was delightful to
17+
configure.
18+
19+
I have also recently overhauled [our documentation](https://docs.pydis.wtf/),
20+
and we are currently exploring a new concept called "e-mail services". The idea
21+
is that you send an e-mail to specific addresses, and a script on the other end
22+
performs some useful action in response to that. Our first e-mail service will
23+
give you `fortune`s! Send an e-mail to
24+
[[email protected]](mailto:[email protected]) to test it out.
25+
26+
27+
28+
## Programming
29+
30+
I've recently rebuilt my website with [Astro](https://astro.build/) and it has
31+
been a very pleasant experience, both for the website itself as well as
32+
development. As part of this migration, my website now has a blog, including a
33+
RSS feed, and this very page.
34+
35+
36+
Updated August 16th, 2024, from my working desk.

0 commit comments

Comments
 (0)