Skip to content

Commit

Permalink
Add "Now" page
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristgit committed Aug 16, 2024
1 parent 56c4570 commit a303339
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/NavBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ if (currentPath[currentPath.length - 1] === "/") {
>AS211224</a
>
<a class={currentPath === "posts" ? "active" : ""} href="/posts/">Posts</a>
<a class={currentPath === "now" ? "active" : ""} href="/now">Now</a>
</nav>

<style>
Expand Down
36 changes: 36 additions & 0 deletions src/pages/now.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: ../layouts/Layout.astro
title: Now (August 2024 edition)
description: My current focusses in life.
---

This page shows what I'm doing currently, if you have your own website, you
[should make your own](https://nownownow.com/about) too.


## Python Discord

Our DevOps team has lately picked back up steam. As part of that, I have
recently implemented a forwarding e-mail server using
[Postfix](https://postfix.org), together with
[postsrsd](https://github.com/roehling/postsrsd) this setup was delightful to
configure.

I have also recently overhauled [our documentation](https://docs.pydis.wtf/),
and we are currently exploring a new concept called "e-mail services". The idea
is that you send an e-mail to specific addresses, and a script on the other end
performs some useful action in response to that. Our first e-mail service will
give you `fortune`s! Send an e-mail to
[[email protected]](mailto:[email protected]) to test it out.



## Programming

I've recently rebuilt my website with [Astro](https://astro.build/) and it has
been a very pleasant experience, both for the website itself as well as
development. As part of this migration, my website now has a blog, including a
RSS feed, and this very page.


Updated August 16th, 2024, from my working desk.

0 comments on commit a303339

Please sign in to comment.