From fca27ef9c4ea71370d7cb63c8a837a00198f0331 Mon Sep 17 00:00:00 2001 From: shockrah Date: Tue, 26 Oct 2021 19:01:13 -0700 Subject: [PATCH] * Starting a new post about clippable --- content/notes/against-method.md | 4 ++++ content/posts/building-with-rocket.md | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 content/posts/building-with-rocket.md diff --git a/content/notes/against-method.md b/content/notes/against-method.md index 9b9b02a..06a26b8 100644 --- a/content/notes/against-method.md +++ b/content/notes/against-method.md @@ -83,3 +83,7 @@ This is to say that while we may be able to conjure great theories without restr A question regarding a problem gives us context; a problem space. Even if we are trying to derive some new kind of knowledge from what may seem like the ether before we arrive at an uncharted logical destination we must at least generate some set of problems spaces, in order to align a direction of solution. + +## Consensus + +"In addition, pluralism is supposed to lead to the truth: '...the peculiar evil of silencing the expression of an opinion is that it is robbing the human diff --git a/content/posts/building-with-rocket.md b/content/posts/building-with-rocket.md new file mode 100644 index 0000000..45ffb31 --- /dev/null +++ b/content/posts/building-with-rocket.md @@ -0,0 +1,19 @@ +--- +title: Building a Video Streaming Service with Rust +date: 2021-13-10 +draft: true +description: The real state of Rocket right now +category: article +--- + +# What I used + +* Rocket.rs - a framework written in rust that reminds me a lot of Flask + +Coming from Hyper.rs this is a massive change of pace since I mostly get to concern myself with application level logic instead of transport layer logic. +This was a common theme with Hyper and even more so if I wanted to do any kind of streaming. + +* Tera Templates - because they're basically just GO templates + +Also Rocket also comes with very smooth integrations for using Tera templates; so much so that there's basically no setup. +