project page + pomd page

This commit is contained in:
Silas Bartha 2024-08-15 01:50:22 -04:00
parent e2f7f90c4a
commit 6d2f00dfe6
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
9 changed files with 110 additions and 2 deletions

1
CNAME
View File

@ -1 +0,0 @@
exvacuum.dev

View File

@ -7,6 +7,11 @@ compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
taxonomies = [
{ name = "categories", render = false },
{ name = "languages", render = false },
]
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola

View File

@ -1,10 +1,11 @@
+++
template = "index.html"
title = "hello"
+++
# silas
- ~~projects~~ (coming soon, see [github](https://github.com/exvacuum) for now)
- [projects](@/projects/_index.md)
- [blog](@/blog/_index.md)
find me in other places

View File

@ -0,0 +1,5 @@
+++
title = "projects"
template = "projects.html"
page_template = "project-page.html"
+++

View File

@ -0,0 +1,31 @@
+++
title = "pomd"
description = "pomodoro timer daemon"
[taxonomies]
categories = ["utility"]
languages = ["rust"]
[extra]
finished = "november 2023"
github = ["exvacuum/pomd", "exvacuum/pomc"]
crates = ["pomd", "pomc"]
+++
this was a pretty simple rust project i did over the course of a couple days
i had been wanting to experiment with d-bus on linux for a while and figured that writing a pomodoro daemon and client would be a good way to understand the basics of how d-bus interfaces work
luckily i found the wonderful [zbus](https://crates.io/crates/zbus) crate which made everything for hooking up interface super simple
i think the hardest thing about this project was trying to figure out how to accurately keep the time left in the timer
as with many problems in rust the solution ended up being to find a [crate](https://crates.io/crates/pausable_clock) that implemented a "pausable clock" that worked similarly to a normal rust `std::time::Instant`
it's pretty configurable from what i remember
i used this program when i was using [dwm](https://dwm.suckless.org) and wanted a daemon to integrate into my statusbar
![pomd segment in my dwm statusbar](statusbar.png)
now i use KDE plasma which has a pretty good pomodoro applet available, maybe in the future i could make some kind of widget that communicates with the daemon

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -8,3 +8,9 @@ body {
a {
color: everforest.$blue;
}
.langcolor {
&-rust {
color: #CE412B;
}
}

View File

@ -0,0 +1,42 @@
{% extends "base.html" %}
{% block content %}
<a href="{{ get_url(path='@/projects/_index.md') }}"> <- back to projects</a>
<h1 class="title">
{{ page.title }}
</h1>
<p><strong>{{ page.description }}</strong></p>
{% if page.taxonomies.categories %}
<p>category: {{ page.taxonomies.categories[0] }}</p>
{% endif %}
{% if page.extra.finished %}
<p>finished: {{ page.extra.finished }}</p>
{% endif %}
{% if page.taxonomies.languages %}
<p>
languages:
{% for language in page.taxonomies.languages %}
<span class="langcolor-{{ language }}">{{ language }}</span>
{% endfor %}
</p>
{% endif %}
{% if page.extra.github %}
<p>
github:
{% for repo in page.extra.github %}
<a href="https://github.com/{{ repo }}" target="_blank">{{ repo }}</a>
{% endfor %}
</p>
{% endif %}
{% if page.extra.crates %}
<p>
crates.io:
{% for crate in page.extra.crates %}
<a href="https://crates.io/crates/{{ crate }}" target="_blank">{{ crate }}</a>
{% endfor %}
</p>
{% endif %}
<br/>
{{ page.content | safe }}
{% endblock content %}

View File

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block content %}
<a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a>
<h1 class="title">
{{ section.title }}
</h1>
{% set categories = get_taxonomy(kind="categories") %}
{% for category in categories.items %}
<b>{{category.name}}</b>
<ul>
{% for page in category.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}: {{ page.description }}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% endblock content %}