Category: Tech-Electronics

  • How to Change the Taskbar Size in Windows 11

    How to Change the Taskbar Size in Windows 11

    How to Change the Taskbar Size in Windows 11 In this post you will find how to make the Windows 11 taskbar smaller or larger depending on preferences. For now this can be done with regedit Registry Editor but when a more user-friendly way is available, I will update this. Video Resize the taskbar in…

  • Windows 11 requires tpm 2.0 what is  tpm anyways?

    Windows 11 requires tpm 2.0 what is tpm anyways?

    Windows 11 requires tpm 2.0 why is that and what is TPM anyway? Since Windows 11 was leaked then announced, we found out that Windows 11 will require TPM 2.0 to work at all. TPM stands for Trusted Platform Module and most PC’s nowdays don’t have it at all or have the older version tpm…

  • Canon Printer Error P10 error code b204 how to fix

    Canon Printer Error P10 error code b204 how to fix

    Canon Printer Error P10 error code b204 and how to fix it. Canon Pixma G2411 printer error P10 with support code B204 If the printer does not print and you get error P10 or support error code B204. There may be a problem with printer ink delivery to the print head. This is for Canon…

  • Check if your PC has TPM 2.0 compatible with Windows 11

    Check if your PC has TPM 2.0 compatible with Windows 11

    How to tell if pc has tpm 2.0 compatible with Windows 11 requirements. Windows 11 requires TPM 2.0 or it will not install. Other software vendors might follow Microsoft allowing only their software to run only on tmp 2.0 enabled computers. Secure boot and TPM 2.0 might soon become a requirement for many programs. TPM…

  • Bose QuietComfort 45 announced, features, price, release date

    Bose QuietComfort 45 announced, features, price, release date

    Bose QuietComfort 45 announced, features, price and release date Bose QuietComfort 45 announced, features, price and release date Bose QuietComfort 45 was announced by Bose since August 31 2021. What features, price and release date should you expect. The new Active Noise Cancelling headphones will replace the already well known Bose QuietComfort 35 II. Featuring…

  • Wrap text with tags in Notepad++

    Wrap text with tags in Notepad++

    Wrap text with tags in Notepad++ A macro can do that and it’s easier than you think. If you need to wrap the text with html tags or WordPress Gutenberg code blocks or paragraph block or a heading block. Start by selecting the text: In Notepad++ menu Click Macro > Start Recording. Ctrl+X – Cut…

  • How to create a user in Linux

    How to create a user in Linux

    Creating a user in Linux Terminal The useradd command will create the user and usermod can modify user properties such as groups the user is part of. useradd [options] username Example:  Using default options to create username dragos. Also created the user home directory: /home/dragos A group is also created for the user with the…

  • Linux commands cheat sheet the most used list

    Linux commands cheat sheet the most used list

    Most useful Linux commands for daily  # Display how long has the system been running – since tle last restart. # List directory contents # List files in directory but better attributes and human-readable # List files in directory sorted by file date/time. # Change directory  # Wildcards When filtering for files or directories you…

  • How to parse and read XML log files CLI Linux

    How to parse and read XML log files CLI Linux

    How to parse and read XML log files in CLI Linux – multiple files with multiple tags. Applications can log as xml and you might need to read those log files.These files can be later processed by a log aggregator application. A simple command to monitor the latest entries in your logs across multiple files.You…

  • Find top visiting ip with Awk

    Find top visiting ip with AwkHow to find top visiting ip with Awk list in apache logs in CLI Linux. You can use the Awk programming language to extract the field you need from the Apache / Httpd access logs.Then you can chain multiple commands to have the desired output.You can also modify this to…