Add new blog post and tinylog entries

This commit is contained in:
Nathan Fisher 2023-06-07 16:37:07 -04:00
parent 08297352d0
commit f0bf2184d7
2 changed files with 8 additions and 6 deletions

View file

@ -39,7 +39,7 @@ I also ran into a bit of a compiler related issue, that caused me to make a bone
```
pub enum status {
Success = 20,
Redirect(Redirect) = 20,
Redirect(Redirect) = 30,
.. other variants ..
}

View file

@ -4,10 +4,10 @@ Meta(
published: Some(Time(
year: 2023,
month: 6,
day: 6,
hour: 18,
minute: 12,
second: 41,
day: 7,
hour: 20,
minute: 36,
second: 36,
)),
tags: [
"tinylog",
@ -18,6 +18,8 @@ Some shorter thoughts and updates that might not warrant a full gemlog entry. I'
=> .. Home
## 2023-06-07 20:36 UTC
Today, after finishing a blog post, I wrote a parser to convert a `&str` to the `Message` struct in Dory. I also added a lot more test coverage, which revealed a few issues to fix.
## 2023-06-06 18:12 UTC
The `sendmsg` binary (using Dory as it's backend) is now able to send Misfin mail to the reference server. This required more debugging skill than it should have due to some issues with both rustls and a compiler issue. Might be good for a full post? Anyway, link to the repository below.