Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Editing PDF Files Using Stirling-PDF
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
It is recommended that you use Stirling-PDF via Docker.
Start a Stirling-PDF Service Using Docker
The following command starts a (local) service of Stirling-PDF at the port 6000.
docker run -d …
Recommendation of Credit Card Usage
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
-
Costco is a wholesale. It is not considered as a grocery or supermarket for cashback bonus purposes.
-
Overall, AMEX is great for traveling purchases and restaurants spending.
Glossory …
Write Unsafe Code in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Unsafe Rust: How and when (not) to use it
Rust's Unsafe Code Guidelines Reference
Unsafe Code Guidelines https://github.com/rust-lang …
Take Screenshot in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
scrap
scrap makes screen capture easy!
captrs
captrs is a library for cross-platform screen capture in Rust. Uses dxgcap for capture on Windows via the Desktop Duplication API, and X11Cap for …
Async in Rust
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
- Combining asynchronous code with synchronous code that can cause blocking is never a wise choice.
When calling asynchronous code from a synchronous context,
use
futures::executor::block_on
and spawn the async …