How to Install Thunderbird Email Client and Configure PGP RSA Public Private Key Encryption

You hold your private key with Thunderbird email client. Not some email provider that will fold when men in black show up.

The following instructions for Thunderbird installation were generated installing on MS Windows.  For installation of Thunderbird on a box running Ubuntu Linux you will have a short detour when setting up your email accounts.   Notes and instructions for that can be found here:  Ubuntu Linux Thunderbird Email Client Install and Debug

My First Git Clone on VS Code with CKeditor-for-wordpress Code Base

Action Diary 

  • Installed the visual studio code snap package from the App Center
  • Installed Git 

 

How to install Visual Studio Code on Ubuntu

 

How to install Git on local machine

To install Git on Ubuntu, open your terminal and run the command sudo apt update && sudo apt install git -y. This single string refreshes your system's package database and installs the latest stable version of Git available in the default Ubuntu repositories.

Git Installation

  • Update package database
    Run sudo apt update to pull the latest metadata about available software.
  • Install the Git package
    Run sudo apt install git -y to download and install the software automatically.
  • Verify successful setup
    Run git –version to display the active version number and confirm installation.

 

— how to import github repository to vs code —

To import a GitHub repository into Visual Studio Code, you must clone the repository which downloads a copy of the files onto your computer.

You can complete this process using either the built-in graphical user interface (GUI) or the integrated terminal. Ensure you have downloaded and installed Git on your computer before starting. 

Method 1: Using the VS Code User Interface (Recommended)

This approach handles the entire process visually without requiring terminal commands.

  1. Copy the Repository URL: Go to your repository on GitHub, click the green Code button, and copy the web address under the HTTPS tab.
  2. Open the Command Palette: Launch Visual Studio Code and press Ctrl + Shift + P (Windows/Linux) or Cmd + Shift + P (macOS).
  3. Run the Clone Command: Type Git: Clone into the prompt and press Enter.
  4. Provide the URL: Select Clone from URL, paste your copied GitHub link, and press Enter.
  5. Choose a Save Location: Select the local folder on your computer where you want the project folder to be created, then click Select as Repository Destination.
  6. Open the Project: Click the Open notification button that appears in the bottom-right corner once the download finishes. 

Method 2: Using the Integrated Terminal

If you prefer managing directories through command lines, you can run a quick command. 

  1. ?Copy the URL: Get the HTTPS repository address from the green Code button on your GitHub page.
  2. Open the Terminal: Inside Visual Studio Code, navigate to Terminal > New Terminal from the top menu, or press Ctrl + ` .
  3. Execute the Clone: Type git clone , paste your link, and hit Enter. It will look like this:

git clone https://github.com/username/repository-name.git 

Open the Folder: Click File > Open Folder (or Open… on macOS) and select the newly created repository folder to start editing

 

— ubuntu how to save local project to github account from Visual Studio code  —

To save a local cloned project to your GitHub account from VS Code on Ubuntu, you just need to stage your changes, commit them locally, and push them back to the remote GitHub repository [1, 2].

Here is the exact step-by-step process using either the built-in VS Code interface or the integrated terminal.

Method 1: Using the VS Code Interface (Easiest)

  1. Open the Project: Launch VS Code and open your cloned folder via File > Open Folder….
  2. Open Source Control: Click the Source Control icon on the left sidebar (looks like a branching tree) or press Ctrl + Shift + G.
  3. Stage Changes: You will see a list of modified files. Hover over the files and click the + (plus) icon next to them to stage your files.
  4. Commit Locally: Type a brief descriptive note (e.g., “updated code”) in the Message input box at the top, then click the Commit button.
  5. Push to GitHub: Click the blue Sync Changes button that appears. Alternatively, click the … (three dots) at the top right of the Source Control panel and select Push.
  6. Authenticate: If prompted by Ubuntu/VS Code, click Allow to sign into your GitHub account via your web browser to authorize the upload. 



Method 2: Using the Integrated Terminal (Fastest)

If you prefer using command lines on Ubuntu, you can complete this quickly through the built-in terminal:

Open Terminal: In VS Code, click Terminal > New Terminal from the top menu, or press `Ctrl + “.

?

  1. Stage Files: Run the following command to track all your new and changed files:  git add 
  2. Commit Changes: Save the files to your local history with a message:  git commit -m "Your custom commit message"
  3. Push to GitHub: Send the changes straight to your GitHub account:   git push origin main

Evolution Imoveis

—– Evolucao  Imoveis —– OLX:  CASA 2 Quartos, 2 Vagas – Águas Mornas  –   AMoI: Duas casas Two Houses em Aguas Mornas 650Kreais –  Evolução Imóveis – (48) 3247-8865 OLX: CHÁCARA 2 Quartos, Piscina, Terreno – Águas Mornas – 626kR – .13Ha – Evolução Imóveis – (48) 3247-8865 OLX: Estúdio, Terraço, Read more…

Positivo Desktop Computer Motherboard Hardware Usage with OpenWRT

Research Links

Q&A

GAI: what type of a pci slot does a Nc360t NIC go in?    The HP NC360T network interface card goes into a PCI Express x4 (PCIe x4) slot.Because of the physical design of PCIe slots, you can also install this card into larger PCIe x8 or x16 slots on your motherboard. It will simply operate at the x4 speed

GAI: Pos-PIH67CH english  

The Positivo POS-PIH67CH is an LGA 1155 desktop motherboard based on the Intel H67 chipset. It is widely used in pre-built Positivo office computers. Featuring DDR3 memory support and legacy-to-modern connectivity, it provides a solid base for budget builds and hardware upgrades. [1, 2, 3, 4, 5]

Core Specifications

  • CPU Socket: LGA 1155 [1]
  • Processor Support: 2nd Gen Intel Core i3/i5/i7 (Sandy Bridge). (3rd Gen Ivy Bridge may be supported with a BIOS update). [1, 2]
  • Chipset: Intel H67 Express [1]
  • Memory (RAM): 4x DDR3 DIMM slots; supports up to 32 GB at 1066/1333/1600 MHz [1]
  • Expansion Slots:

    • 2x PCI-Express x16 (2.0)
    • 1x PCI-Express x1
    • 1x PCI slot

Notes

  • POS-PIQ67CG
  • Pos-PIH67CH

Pause Snap Auto-Updates For Snap installs – Prevent Automatic Brave Browser Updates Interrupting Browsing Session

GAI: brave browser keeps updating when it wants interrupting my browing sessions ubuntu linux

Method 2: Pause Snap Auto-Updates (For Snap installs):  Ubuntu often installs and updates Brave via the Snap Store. You can hold all snap updates to stop Brave from refreshing in the background.

    Open your Terminal.   Run this command to pause all snap refreshes temporarily:

    snap refresh –hold

    To remove the hold at a later date, you can run:

    snap refresh –unhold