I use Windows 11 as my main OS on my home PC, so I have to tweak some of my commands for that environment. The previously mentioned cargo upgrade is no exception. Installation (Windows) cargo install cargo-edit ` --no-default-features ` -F upgrade,vendored-libgit2 ` --bin cargo-upgrade Note: Every time you see a \ somewhere, replace it with ` to make it work in Powershell. You can also install…
In a previous sticky I briefly put down how to get a quick'n'dirty self-signed TLS 1 certificate, but also mentioned mkcert.dev , which makes it a bit better for some use cases. Install mkcert # Windows, with scoop (it's like homebrew) scoop bucket add extras # skip if you have done this already scoop install mkcert Non-Windows users find more ways under mkcert install . Prepare mkcert -install…
Sometimes I need a TLS 1 certificate, for some local HTTPS or other services/protocols with some level of security to play nicely. Make sure you have openssl installed on your computer. Then run: openssl req -nodes -new -x509 \ -keyout server.key -out server.crt \ -subj '/C=EU/L=Berlin/O=MarkentierTech/CN=myservice' Notes: replace values for the parameters ( C , L , O , CN ) to your needs a…
While cargo already has most common commands integrated, one I miss from cargo-edit is cargo upgrade . It's super convenient if you want to bump all dependencies at once to the latest (in)compatible version. This is how to install just this single executable: cargo install cargo-edit \ --no-default-features \ -F upgrade,vendored-libgit2 \ --bin cargo-upgrade Notes: --no-default-features to avoid…
The average life span of a human is around 80 years. Today marks my halftime. I have no freaking clue what to do with that second half. No plot twist here.
You run clusters on Raspberry Pis and Intel NUCs? You love ARM, but also need to provide images for your PC friends? Fret no more, learn about manifest lists and how BuildKit makes your life easier.
To quote from a StackOverflow answer: »Never turn autocrlf on, it causes nothing but headaches and sorrows.« There's not much to add to that statement, so I provide some background to line breaks in general. No typewriters were harmed in the process.
This year I managed to write at least one—hopefully interesting—article per month. Now it's August, and I'm tired. Not only physically, but also mentally.
I don't know who needs to hear that, but meritocracy is not a desirable goal. It is not fair, it creates inequality, and it is harmful to inclusion and diversity. It is a dystopia and satire.
Something missing in my life is that huge blank canvas and a marker in my hand. And a team around it to draft ideas and be creative. A tiny love letter to whiteboards. 💌
I don't think anyone should feel bad about leaving bad and toxic workplaces. While it is lovely if you care about the people you leave behind, do not forget: you always have to take care of yourself first. Otherwise you won't be able to help others in the future. Sadly enough I have to remind myself about this. Although I probably try to care about others and other things to distract myself about…
After reading some documentation of some PowerToys utilities I noticed that Microsoft found a pretty neat trick to use a unicode character as symbol for their Windows shortcut key: ⊞ Win
Not long ago I replaced my homepage of an image based overview with a very slim Table Of Contents version. The trickiest part was to make that responsive. I finally found a solution. As usual: no JavaScript involved.
I work across 2 computers and 3 OS, all with nearly same development setup. For work I need some special care for my git config, since I want/need access to personal repositories.
Ever felt limited by the languages on AWS Lambda@Edge? Wanted to run Rust for your CloudFront triggers, but re:Invent 2020 disappointed you in that matter? Let me show you one way of how you can still get it done.
Medium got a new logo. And vector graphics are kinda my thing. So I took a look at their icon's SVG source. It's pretty small, but you know, it can be shrunken further.