Other techs Linux How to enable case-insensitive and double tab key presses in Terminal Some nice features for Terminal are disabled by default. Let's enable it to make our lives easier. 2022.12.28 Other techs
Other techs Linux How to add a group to a user Do you get a permission error because the current user is not in the target group? Let's check the current setting and add the group to the user. 2022.12.26 Other techs
Other techs KeePass2 shows garbled characters on Linux Mint KeePass2 doesn't show Japanese characters as expected because the default font doesn't support it! It needs to be configured correctly depending on your language. 2022.12.23 Other techs
Docker Fails to start devcontainer in VSCode due to lack of mounted device It fails to open devcontainer even if the Docker image is removed and rebuilt. The Dockerfile and devcontainer.json are correct but it seems that vscode uses the old runArgs to start docker! 2022.12.12 DockerOther techs
Other techs How to connect to a scanner with Golang on Linux You need to configure udev rule correctly to connect to a USB device on Linux. If you are a Windows user, you also need to setup a VM. Then, implement Go app! 2022.11.28 Other techs
Other techs How to connect USB devices to a VirtualBox VM VirtualBox supports only USB 1.1 by default. You need to install extension packages if you want to use USB 2.0 or 3.0. 2022.11.18 Other techs
Other techs Connect a USB device to WSL without admin privilege I tried to connect a USB device to WSL by following the official way but it didn't work. This post explains how to make it work without admin privileges. This is a hack. 2022.11.16 Other techs
Other techs Assign a value to VSCode launch.json depending on env value with Makefile I wrote the following post before. But this requires manual steps. I wanted to automate it, so I needed to change the ho... 2022.10.17 Other techs
Other techs VSCode + WSL2 + devcontainer for dev environment If we could establish dev environment in a Docker container, it is easy to share the environment. It's easy to set up th... 2022.10.12 Other techs
Other techs Makefile How to use variables defined in a config file It took me a while to clarify how to import variables from a config file. We have makefile.env and define environment va... 2022.09.30 Other techs