Category: Code
Mass delete Github Workflow Run Logs with this script
Github workflow doesn’t allow mass deletion of Workflow Action run logs, it takes 2 clicks to delete each run log.…
What is the Rust equivalent to Java’s PrintWriter?
In Rust, the equivalent of Java’s PrintWriter is the std::io::Write trait, which is implemented by a number of types that…
The difference between a Slice and an Array in Rust
In Rust, a slice is a reference to a contiguous section of a larger data structure, such as an array…
How to build your Docker image using the same Dockerfile regardless of the host architecture
Problem If you are now using docker on a Mac M1 (arm64 platform), you don’t want to use amd64 as…