project page + pomd page
This commit is contained in:
parent
e2f7f90c4a
commit
6d2f00dfe6
@ -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
|
||||
|
@ -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
|
||||
|
5
content/projects/_index.md
Normal file
5
content/projects/_index.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
title = "projects"
|
||||
template = "projects.html"
|
||||
page_template = "project-page.html"
|
||||
+++
|
31
content/projects/pomd/index.md
Normal file
31
content/projects/pomd/index.md
Normal 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
|
||||
|
||||

|
||||
|
||||
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
|
||||
|
||||
|
BIN
content/projects/pomd/statusbar.png
Normal file
BIN
content/projects/pomd/statusbar.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
@ -8,3 +8,9 @@ body {
|
||||
a {
|
||||
color: everforest.$blue;
|
||||
}
|
||||
|
||||
.langcolor {
|
||||
&-rust {
|
||||
color: #CE412B;
|
||||
}
|
||||
}
|
||||
|
42
templates/project-page.html
Normal file
42
templates/project-page.html
Normal 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 %}
|
@ -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 %}
|
Loading…
x
Reference in New Issue
Block a user