These are my links for April 12th through April 13th:
- Writing an OS in Rust · phil-opp’s blog –
- Calculus Learning Guide | Hacker News –
- You Could Almost Do Anything Pt. I — Eli Schiff –
These are my links for April 12th through April 13th:
These are my links for March 18th through March 19th:
These are my links for March 7th through March 8th:
<h1>
Hello {{ name }}!
</h1>
fn hello_template(request: &mut Request) -> PencilResult {
let mut context = BTreeMap::new();
context.insert("name".to_string(), "template".to_string());
return request.app.render_template("hello.html", &context);
}
fn main() {
// app here</blockquote>