Skip to main content

Posts

Rust: Using Windows thread pool

Rust: Using Windows thread pool Quick demo how to use Windows thread pool in Rust using windows crate. Create new project PS C:\> mkdir prj PS C:\> cd prj PS C:\> cargo new thread_pool_work Edit Cargo.toml like below Update src/main.rs Run thread_pool_work PS C:\prj\thread_pool_work> cargo run Compiling thread_pool_work v0.1.0 (C:\prj\thread_pool_work) Finished dev [unoptimized + debuginfo] target(s) in 0.64s Running `target\debug\thread_pool_work.exe` counter: 10 Tags: Rust, Windows, thread pool

Fedora 36 Workstation installation screen capture

Just an itch, wanted to see how Fedora 36 Workstation looks like. For other versions see  here .

Fedora 35 Workstation installation screen capture

Just an itch, wanted to see how Fedora 35 Workstation looks like. For other versions see  here .

Fedora 34 Workstation installation screen capture

Just an itch, wanted to see how Fedora 34 Workstation looks like. For other versions see  here .

EOleException: Microsoft MSXML is not installed when calling LoadXMLDocument

EOleException: Microsoft MSXML is not installed when calling LoadXMLDocument LoadXMLDocument returns IXMLDocument which by default uses MSXML on Windows. MSXML is a COM componet which requires client to initialize COM library. Below shows a bare bones Delphi 11.3 console application initializing COM library. Tags: COM, DCOM, Delphi, XML