Sunday, April 6, 2025

PDF editor + Converter + Merger

 https://github.com/pdfarranger/pdfarranger

Tuesday, December 31, 2024

Galileo Sol Dive Computer Battery

 Standard Battery: CR12600SE 

Alternative Battery: two LR1

Reference:

  • https://blog.briangweber.com/2024-04-28-galileo-computer-batteries/
     

Sunday, November 17, 2024

Low latency remote deskktop for gaming: Sunshine + Moonlight

 Server: https://github.com/LizardByte/Sunshine/releases

Clients: https://moonlight-stream.org/

Hotkeys:

  • Ctrl+Alt+Shift+Q - Quit the streaming session (leaving the game running on the host PC)
  • Ctrl+Alt+Shift+Z - Toggle mouse and keyboard capture
  • Ctrl+Alt+Shift+L - Toggle locking the mouse pointer to the video area (requires "Optimize mouse for remote desktop instead of games" checkbox enabled)

Friday, October 25, 2024

Access Github using SSH

  1.  ssh-keygen -t ed25519 -C "first.last@company.com"
  2.  eval "$(ssh-agent -s)"
  3. pbcopy < ~/.ssh/id_ed25519.pub
  4. Github -> Profile -> Settings -> SSH and GPG Keys

References:

  • https://docs.github.com/en/authentication/connecting-to-github-with-ssh/testing-your-ssh-connection


Sunday, July 16, 2023

How to install Windows 11 without TPM

 If you encounter this message below, it's likely you don't have a TPM module.

"This PC can't run Windows 11"


How to go around it:

Step 1: Press Shift - F10

Step 2: Type regedit

Step 3: Navigate to Computer -> HKEY_LOCAL_MACHINE -> System -> Setup

Step 4: Right click on Setup and click New -> Key. Name it "LabConfig".  (Note the capitalization)

Step 5: Create new DWORD32. Name it "BypassTPMCheck". Value "1".

Step 6: Create new DWORD32. Name it "BypassSecureBootCheck". Value "1".

Step 7: Close regedit and return to installer.

Saturday, July 15, 2023

How to install Ubiquiti Network Application on Ubunutu 22.04

Get latest instructions from this post. Below are the steps I did:

Step 1: Login as root

    sudo -i

Step 2: Update system

    apt-get update; apt-get install ca-certificates wget -y

Step 3: Get script

    wget https://get.glennr.nl/unifi/install/unifi-7.3.83.sh

Step 4: Execute script

    bash unifi-7.3.83.sh

Step 5: Open web browser

    https://192.168.XX.XX:8443/


Uninstall using following:
    apt-get purge unifi


References: