Visual Studio's MSBuild vs. dotnet build

Visual Studio Community 2022 is a very advanced IDE that has very good support for Visual Basic and the cross platform .NET 5. A C# programmer can choose to use Visual Studio Code, but that has no (language) support for Visual Basic. And since I was working on a Visual Basic application I was using Visual Studio Community as an IDE. This post explains the incompatibility between .NET 5 and a custom “Build Task” in Visual Studio Community’s build tool “MSBuild” (also applies to Visual Studio Professional). ...

February 23, 2022 · Maurits van der Schee

LUKS with USB unlock

I feel that using full disk encryption of laptops is a must. Not to protect against attacks with physical access (to the unencrypted boot loader or unprotected BIOS), but to avoid leaking data when the laptop is either lost or stolen. Entering a long passphrase is not very convenient, especially when you are sharing the device with multiple people. This post will explain how to unlock your computer by inserting a USB drive containing a key file, while still allowing to unlock using a passphrase. At the end of the post we describe how to conveniently hide the USB drive in Windows and Linux. ...

January 21, 2022 · Maurits van der Schee

LUKS with SSH unlock

I feel that using full disk encryption of servers is a must. Not to protect against attacks with physical access (to the unencrypted boot loader or unprotected BIOS), but to avoid leaking data when a disk or computer is either stolen or replaced. But what do you do when you need to reboot your server and have no console access to enter the passphrase? This post will explain how to run a simple SSH server during the boot process to allow remote unlocking of the encrypted root partition. ...

January 15, 2022 · Maurits van der Schee

Firefox wont load and/or uses high CPU

Firefox has a bug in its HTTP3 implementation causing the browser to hang or use a lot of CPU. You can temporarily disable HTTP3 as a workaround for the problem. You need to go to “about:config” and set “network.http.http3.enabled” to “false”. In this post I’ll show you how to do this using a script on Linux. On Linux Disable HTTP3 (as a user preference): echo 'user_pref("network.http.http3.enabled", false);' | tee -a \ $(find ~/.mozilla -name prefs.js | sed "s/prefs/user/g" | xargs) Revert disabling HTTP3: ...

January 13, 2022 · Maurits van der Schee

Remove Snap Store and avoid using snaps

I was not very pleased to find that Ubuntu replaced “Software” application with “Snap Store” in the latest software updates. I don’t like snaps anyway, so this was a good reason to both get rid of all installed snaps. Also I removed the snap-store (which is a snap as well) and installed the old (Gnome) Software application. In this post I explain you how to do this. Step 1: Get rid of all installed “snaps” First lets see what snaps are in use: ...

January 11, 2022 · Maurits van der Schee

Boot RDP connected VM on-demand

I’m running a Ubuntu Server 20.04 LTS as (headless) KVM host for my Windows VMs. When somebody tries to connect to a powered off VM via RDP, I want that VM to power on. Fortunately all RDP connections are tunneled over SSH and the “auth.log” logs these failed attempts: Jan 2 08:41:53 bastion sshd[26080]: error: connect_to win10-vm1 port 3389: failed. Bash script that responds to this log line I wrote a small bash script that continuously reads lines from “/var/log/auth.log” and tries to start virtual machines (called “domains” in KVM) with the name of the host that the RDP connection (on port 3389) is made to. This is the script “wake-domain.sh”: ...

January 4, 2022 · Maurits van der Schee

Disable power button on Ubuntu server

My youngest son loves to play with my PC’s shiny LED-lit power button, which is annoying at times. In Xubuntu XFCE’s “Power Manager” allows you to change the behavior of the power button from “Ask” to “Do nothing”. I also have a (headless) Ubuntu 20.04 LTS Server that runs my virtual machines (using KVM). I don’t want the power button to work on that machine either. I had some trouble finding the right setting in my web searches as Ubuntu server’s power button is managed by Systemd. ...

December 30, 2021 · Maurits van der Schee

GopherCon Europe 2021: videos online

GopherCon and GopherCon Europe are well known Go conferences. We are listing the GopherCon Europe 2021 and conference videos. The videos are posted on the GopherCon Europe Youtube channel and are linked below. GopherCon Europe 2021 Egon Elbre - Demystifying Technical Debt [24:57] Dylan Meeus - Audio Programming with Go [23:17] Mathilde Raynal & Yolan Romailler - Quantum Resistant Native Go Programs [20:19] Adelina Simion and Xiao Liu - Best Friends Forever (BFFs): Lambda and Go Apps [24:17] Julio Guerra - Dynamic Go Instrumentation for Production Environments [21:49] Grant Seltzer Richman - Unlocking eBPF from Go [24:17] Linus Lee - When Toy Languages Grow Up [26:08] Lorna Jane Mitchell - Designing Payloads for Event-Driven Systems [27:50] Sean DuBois - Pion WebRTC [22:59] Sushant Bhadkamkar - Derisking Migrations of API Backends [23:25] Dave Cheney - How Go Avoided the Integer Promotion Footgun [25:45] Dana Scheider - Technical Writing for Developers and Engineers [25:05] André Eriksson - Fusing Io/Fs with Gopls [26:01] Matteo Grella - (Neural) Natural Language Processing in Go [27:47] André Eriksson - Fusing Io/Fs with Gopls [26:01] Dylan Meeus - Audio Programming with Go [23:17] Mathilde Raynal & Yolan Romailler - Quantum Resistant Native Go Programs [20:19] Adelina Simion and Xiao Liu - Best Friends Forever (BFFs): Lambda and Go Apps [24:17] Julio Guerra - Dynamic Go Instrumentation for Production Environments [21:49] Grant Seltzer Richman - Unlocking eBPF from Go [24:17] Linus Lee - When Toy Languages Grow Up [26:08] Lorna Jane Mitchell - Designing Payloads for Event-Driven Systems [27:50] Sean DuBois - Pion WebRTC [22:59] Sushant Bhadkamkar - Derisking Migrations of API Backends [23:25] Dave Cheney - How Go Avoided the Integer Promotion Footgun [25:45] Dana Scheider - Technical Writing for Developers and Engineers [25:05] Joakim Kennedy - The Dark Side of Go: A 2020 Go Malware Round Up [32:09] Egon Elbre - Demystifying Technical Debt [24:57] Preslav Rachev - Creating Immersive Generative Art with Go [27:10] Ricardo Ferreira - OpenTelemetry for Dummies: Instrumenting Go Apps [33:39] Samuel Davidson - CTX is Key! [29:08] Panel - Go Security [56:58] Ishuah Kariuki - Terminal Emulator Basics in Golang [27:29] Valentin Deleplace - Function Inlining [23:47] Maricris Bonzo - Create Your Go Projects with TDD in Mind [25:12] Dan Lorenc - The Dependency Jungle: Supply Chain Security and Kubernetes [22:39] Panel - Go Tooling [57:43] Alan Braithwaite - Why it Takes a Team of Engineers to Process Events in RT [24:36] Other conference videos Did you like this post? There are more Go conference videos available, see: ...

November 30, 2021 · Maurits van der Schee

GopherCon 2020: videos online

GopherCon is the original Go conference. It debuted in 2014 and was celebrating it’s six-year anniversary last year. The videos are posted on the Gopher Academy Youtube channel and are also linked here: GopherCon 2020 Jonathan Amsterdam - Working with Errors [18:11] Carmen Andoh - Crossing the Chasm: Go for the Next Million Users [23:49] Jonathan Bodner - Go is Boring… And That’s Fantastic! [26:14] Dylan Bourque and Anthony Lee - Untangling the Monorepo: Moving to Go Modules [25:53] Johan Brandhorst-Satzkorn - A Journey to Postgres Productivity with Go [47:10] Kris Brandow - A Rainbow of Gophers: Building A More Diverse Community [52:27] Kevin Burke - Build and Test Caching in Go [25:21] Austin Clements - Pardon the Interruption: Loop Preemption in Go 1.14 [24:17] Agniva De Sarker - Common Patterns for Bounds Check Elimination [19:15] Jaana Dogan - Debugging Code Generation in Go [43:22] Doug Donohoe - Reordering 59 Million NYT Publishing Assets Using Go and BadgerDB [45:45] Robert Griesemer - Typing [Generic] Go [33:53] Angelica Hill - Anyone Can Be A Gopher! [33:02] Daisuke Kashiwagi - How to Write a Self-Hosted Go Compiler from Scratch [31:16] Michael Knyszek - Evolving the Go Memory Manager’s RAM and CPU Efficiency [50:54] L Körbes - The Quest for the Fastest Deployment Time [47:46] Dylan Meeus - Functional Programming with Go [46:05] Aditya Mukerjee - করো: Translating Go to Other (Human) Languages, and Back Again [34:02] Derek Parker - Deterministically Debugging Go Programs [46:31] Florin Pățan - Building an FM Radio Station with Go [34:37] Brad Peabody - Go is Not Just on Your Server, it’s in Your Browser: Intro to Vugu [55:09] Michael Richman - Write Once, Use Many: A Handy Package to Call Internal HTTP APIs [32:39] Grant Seltzer Richman - Tracing Go Programs with eBPF! [53:02] Dan Scales - Implementing Faster Defers [23:14] Travis Smith - Optimizing Performance using a VM and Go Plugins [48:01] Zac Staples - Go Make Something Real – The Potential for Go on the Factory Floor [27:34] Alex Stockwell/Kevin Tyers - A Game Engine for 300 DEFCON Hackers to Smash [36:52] Justen Walker - Safety Not Guaranteed: Calling Windows APIs using Unsafe and Syscall [44:55] Ted Young - The Fundamentals of OpenTelemetry [28:39] Ask Me Anything with the Go Team [48:12] Go Time Podcast Day 1 - What to Expect When You’re NOT Expecting [49:42] Go Time Podcast Day 2 - The Secret Life of Gophers [1:00:18] Go Time Podcast Day 3 - Go Panic! Game Show [1:00:39] Lightning Talks Day 1 [44:17] Lightning Talks Day 2 [1:08:07] Other conference videos Did you like this post? There are more Go conference videos available, see: ...

November 28, 2021 · Maurits van der Schee

ASRock Deskmini X300 SFF Linux PC

I’ve replaced my Intel NUC i5 with something more powerful (ASRock DeskMini A300 case with a Ryzen 3 3200G processor), see my original post Ultimate NUC killer under 500. It worked wonders, but I wanted even more performance at my fingertips, so I replaced the ASRock DeskMini A300 with a X300 (it’s successor) and the Ryzen 3 3200G with a Ryzen 7 5700G processor. Also I’ve used a black instead of a brown Noctua low profile CPU cooler and installed 64GB RAM instead of 16GB. Like previous build it is super fast and not too noisy. I run Xubuntu 20.04 LTS and it works great (although you may prefer a newer kernel for improved video performance), I’m very pleased with the results! ...

November 18, 2021 · Maurits van der Schee