Recent Activity
Matthias
User for 2 months
Created Content
Recently Created Pages View All
Modify Images
Resize ffmpeg -i input.jpg -vf "scale=1920:-1" output.jpg Change quality ffmpeg -i input.jpg -...
Check open ports
If you want to check open ports on your Linux device, you can use the ss command (socket statisti...
Cross compilation
You can cross compile your Rust code using the target specifier. For example: cargo build --targ...
Serde
Serde (Serialize and Deserialize) is a library to serialize and deserialize data to or from a str...
Tricks
Allow everything what can be a str reference fn do_something<S: AsRef<str>>(input: S) { le...