Add tinylog entry
This commit is contained in:
parent
ee402e24d7
commit
1e5274e030
2 changed files with 10 additions and 7 deletions
2
Makefile
2
Makefile
|
@ -6,7 +6,7 @@ build:
|
||||||
zond build
|
zond build
|
||||||
|
|
||||||
upload: build
|
upload: build
|
||||||
scp -r public/* nathan@hitchhiker-linux.org:/srv/gemini
|
rsync -rP public/* nathan@hitchhiker-linux.org:/srv/gemini
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
echo "$(submit_url)" | eval openssl s_client -connect warmedal.se:1965 -crlf \
|
echo "$(submit_url)" | eval openssl s_client -connect warmedal.se:1965 -crlf \
|
||||||
|
|
|
@ -1,19 +1,22 @@
|
||||||
Meta(
|
Meta(
|
||||||
title: "JeanG3nie's Tinylog",
|
title: "JeanG3nie\'s Tinylog",
|
||||||
summary: None,
|
summary: None,
|
||||||
published: Some(Time(
|
published: Some(Time(
|
||||||
year: 2023,
|
year: 2023,
|
||||||
month: 6,
|
month: 6,
|
||||||
day: 3,
|
day: 5,
|
||||||
hour: 14,
|
hour: 4,
|
||||||
minute: 58,
|
minute: 25,
|
||||||
second: 11,
|
second: 55,
|
||||||
)),
|
)),
|
||||||
tags: [
|
tags: [
|
||||||
"tinylog",
|
"tinylog",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
---
|
---
|
||||||
|
## 2023-06-05 04:25 UTC
|
||||||
|
Rust 1.70 came out this past week. One of the highlights of this release was the stabilization of the OnceCell and OnceLock types. OnceLock in particular is a big deal because it has the potential to replace the `lazy-static` and `once-cell` crates, for those times when you want to have a lazily evaluated static data structure.
|
||||||
|
|
||||||
|
I just finished a short while ago changing Zond to use the new interface and so far so good. It's nice and simple, with good documentation.
|
||||||
## 2023-06-03 14:58 UTC
|
## 2023-06-03 14:58 UTC
|
||||||
First tinylog post!
|
First tinylog post!
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue