|
You are here |
ultrasaurus.com | ||
| | | | |
leshow.github.io
|
|
| | | | | I've been working in the Rust space for about a year now using tokio & async/await with DNS. The result of this work is a sizeable from-scratch tokio server using 0.2 (that's now in production- yay! hopefully I can share more about this later). As a result, I've gotten to know the UDP API of tokio quite well, and have even got to submit a few PRs (double yay). I'd like to highlight some interesting changes that have happened in tokio's API between 0. | |
| | | | |
blog.sylver.dev
|
|
| | | | | Build a web server with Rust and tokio - Part 0: the simplest possible GET handler Welcome to this series of blog posts where we will be exploring how to build a web server from scratch using the Rust programming language. We will be taking a hands-o... | |
| | | | |
liverpoolcultureblog.co.uk
|
|
| | | | | There's nothing much to say about the big wheel in Liverpool One's Chavasse Park, so I did a little video during a ride on it. | |
| | | | |
blog.oddbit.com
|
|
| | | Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or: | ||