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 { pub enum status {
Success = 20, Success = 20,
Redirect(Redirect) = 20, Redirect(Redirect) = 30,
.. other variants .. .. other variants ..
} }
@ -66,4 +66,4 @@ I've given some thought into how a hypothetical public mail service would look w
For that matter, a fully featured SmallWeb browser could implement the sending portion of Misfin, requiring only access to a receiving server, either on your own home network or in Geminispace somewhere. For that matter, a fully featured SmallWeb browser could implement the sending portion of Misfin, requiring only access to a receiving server, either on your own home network or in Geminispace somewhere.
All of these things do come with a small price of course. Anyone using Misfin mail would have to get used to handling their client cert with care. Some might argue that adds a barrier to entry, but considering how crazy most public services are for two factor auth and how they only ever seem to implement it using smartphones, Misfin might actually have an edge for those who don't have a smartphone, but could easily carry around a pendrive with their certificate on it. But we all know how passwords have worked out over time, so I can easily see a bunch of people having a folder on their desktop named "Certificate"... All of these things do come with a small price of course. Anyone using Misfin mail would have to get used to handling their client cert with care. Some might argue that adds a barrier to entry, but considering how crazy most public services are for two factor auth and how they only ever seem to implement it using smartphones, Misfin might actually have an edge for those who don't have a smartphone, but could easily carry around a pendrive with their certificate on it. But we all know how passwords have worked out over time, so I can easily see a bunch of people having a folder on their desktop named "Certificate"...

View file

@ -4,10 +4,10 @@ Meta(
published: Some(Time( published: Some(Time(
year: 2023, year: 2023,
month: 6, month: 6,
day: 6, day: 7,
hour: 18, hour: 20,
minute: 12, minute: 36,
second: 41, second: 36,
)), )),
tags: [ tags: [
"tinylog", "tinylog",
@ -18,6 +18,8 @@ Some shorter thoughts and updates that might not warrant a full gemlog entry. I'
=> .. Home => .. 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 ## 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. 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.