Toggen Blog
Tech tips
Articles
Latest
VMWare Workstation Pro 25H2 on Windows 11 Enterprise 25H2
Tried VMware Workstation Pro a while a go on Windows 11 but I am bound to having Hyper-V running for my Docker Desktop / WSL development environment and it just didn't work. Trying VMWare Workstation Pro 25H2 and it... works Apparently it uses the Hyper-V internals to...
Perform an if-then-else in a Dockerfile
RUN if [ $(arch) = "aarch64" ] ; then apt-get -y install chromium ; else echo Chromium NOT needed ; fi
Entering a Docker Container via Docker Compose CLI
TIL that you can enter a container straight from docker compose Run bash as the containers default user docker compose -f docker-compose.yaml exec php bash Run bash as the root user docker compose -f docker-compose.yaml exec -u 0 php bash Where docker-compose.yaml is...
Change the power settings to stop a computer sleeping using the CLI
powercfg /x monitor-timeout-ac 30 powercfg /x disk-timeout-ac 15 powercfg /x standby-timeout-ac 0 powercfg /x hibernate-timeout-ac...
Adding the Windows Store GIMP 3 executable path to IrfanView
The location of the Windows Store version of GIMP 3 is under C:\Program Files\WindowsApps I tried to navigate into C:\Program Files\WindowsApps to find gimp-3.exe but I get an access denied. Therefore, to add the Windows Store version of GIMP 3 as an external editor...
Show the Temperature of a Cisco WS-C2960L-16PS-LL Switch
show env all SWITCH: 1 SYSTEM TEMPERATURE is OK System Temperature Value: 56 Degree Celsius System Temperature State: GREEN Yellow Threshold : 88 Degree Celsius Red Threshold : 93 Degree Celsius SWITCH: 1 PID: Built-in System Power:(Watts) 173 Max Power Usage:(Watts)...
