* Starting a new post about clippable

This commit is contained in:
shockrah 2021-10-26 19:01:13 -07:00
parent 63a912a145
commit fca27ef9c4
2 changed files with 23 additions and 0 deletions

View File

@ -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

View File

@ -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.