Posts in 2025

  • Colima with Docker on M4 Mac

    Friday, January 03, 2025 in Articles

    Colima is a container runtime for macOS that provides a lightweight and efficient alternative to Docker Desktop. It leverages Lima, a Linux virtual machine manager, to run containers on macOS, making it particularly useful for users with Apple …

    Read more

Posts in 2024

  • How to Start Visual Studio Code from Shell on MacOS

    Wednesday, December 18, 2024 in Articles

    When you install Visual Studio Code on MacOS, you can start it from the shell using the code command. If you get the error zsh: command not found: code, you need to add the code command to your shell path. user@mac-mini new_project % code . zsh: …

    Read more

  • Configure Mac OS as a Jenkins node on Mac Mini

    Tuesday, December 17, 2024 in Articles

    In this article, I’ll show you how to configure Mac OS as a Jenkins node on a Mac Mini. Create jenkins user First, create a new user called jenkins on your Mac Mini. This user will be used to run the Jenkins agent. sudo dscl . -create …

    Read more

  • Visual Studio Code Compare Two Files

    Monday, August 05, 2024 in Articles

    Compare Two Files in Visual Studio Code Select the files you want to compare in the open editors and right-click on one of them and select Compare Selected. The selected files can be also unsaved files. Compare Two Files with a Command Open the …

    Read more

  • PostgreSQL Create User and Database

    Monday, August 05, 2024 in Articles

    Create User in PostgreSQL To create a user in PostgreSQL, you can use the CREATE USER command. The following example creates a user named myuser with the password mypassword. CREATE USER myuser WITH PASSWORD 'mypassword'; Create Database in …

    Read more

  • Visual Studio Keyboard Shortcuts

    Wednesday, July 24, 2024 in Articles

    Boost your productivity with these essential Visual Studio keyboard shortcuts. This guide covers shortcuts for search and navigation, editor commands, and solution explorer management. Shortcuts Search & Navigation Ctrl + , : Go to All Ctrl + T : …

    Read more

  • Hugo

    Monday, June 10, 2024 in Articles

    Create a new site hugo new site FirstHugoSite hugo server See Also: [^] https://gohugo.io/getting-started/quick-start/ Create a new Docsy documentation site CLI: Unix shell Windows command line hugo new site my-new-site cd my-new-site hugo mod init …

    Read more

  • How to use Flutter packages hosted in private git repo into CI/CD

    Monday, June 10, 2024 in Articles

    In this article, I’ll show you how to use Flutter packages hosted in a private git repository into a CI/CD pipeline. Introduction When working on a Flutter project, you may need to use packages hosted in a private git repository. This can be …

    Read more

Posts in 2023

  • PowerShell script to test the SSL/TLS version support

    Monday, March 20, 2023 in Articles

    # Test-ServerSSLSupport.ps1 function Test-ServerSSLSupport { [CmdletBinding()] param( [Parameter(Mandatory = $true, ValueFromPipeline = $true)] [ValidateNotNullOrEmpty()] [string]$HostName, [UInt16]$Port = 443 ) process { $RetValue = New-Object …

    Read more

  • Linux CPU and SSD Temperature Monitoring

    Tuesday, March 14, 2023 in Articles

    In this article, we’ll explore see how to monitor the temperature of the CPU, motherboard, hard drives, and other hardware sensors on a Linux system with the help of third-party tools. Tools for Monitoring Temperature LM-Sensors Lm-sensors is a …

    Read more