CaRusthus
Rust Programming Language related Topics
(Move to ...)
Home
▼
Monday, February 17, 2020
Recursive Matrix and the parallel matrix multiplication using crossbeam and generic constant
›
This was planned project I posted before. Basically in order to evaluate Rust's claim for zero cost abstraction and the effectiveness o...
Friday, January 31, 2020
reverse proxy in java
›
Several proxy server implementations are available in Java, but I found following lib is pretty useful. https://github.com/mitre/HTTP-Proxy...
Puppeteer on Rust
›
Puppeteer is a powerful tool to control web application at server side using headless chromium. This is mainly used for automated testing,...
Saturday, January 18, 2020
reverse proxy server in rust
›
There are several reverse proxy server. Following crate seems easy to use. https://docs.rs/hyper-reverse-proxy/0.4.0/hyper_reverse_proxy/...
Wednesday, January 15, 2020
Parallel matrix computation in Rust
›
Parallel matrix computation is an interesting topic to test how much the zero cost abstraction is achieved in Rust. Also if it can increase...
Multi threaded HTTP server using crossbeam
›
The Rust book has a section on multi threaded HTTP server, and I found the corresponding implementation on github. https://github.com/richa...
Tuesday, January 14, 2020
Why no traits for collections in Rust?
›
I tried to write a generic function which converts a list to a receiver channel. Originally I wrote this function taking Vec, but I wanted ...
›
Home
View web version