Cloudflare endless loop -> Verify You Are Human on Chrome

How to Fix the Cloudflare “Verify You Are Human” Endless Loop? Here’s a quick and easy fix you can try. First, check your Chrome extensions. Open the Extensions page by typing the following in the address bar: chrome://extensions Alternatively, you can navigate there manually: Click on the three-dot menu (⋮) in the top-right corner of Chrome. Select Extensions > Manage Extensions. Disable extensions one by one and refresh the page each time to see if the issue is resolved. ...

March 12, 2025 · 1 min

Ubuntu 24.04: Automatyczna instalacja i personalizacja ISO

Masz do zainstalowania wiele maszyn z Ubuntu 24.04 i nie chcesz każdej instalować ręcznie? Chcesz zautomatyzować proces i stworzyć gotowe ISO, które samo się instaluje? Ten przewodnik pokaże Ci krok po kroku, jak to zrobić – od konfiguracji autoinstall.yaml po modyfikację obrazu ISO. Poradnik jest przeznaczony dla Ubuntu 24.04 oraz nowszych. Starsze wersje Ubuntu (do 20.04) korzystają z mechanizmu preseed, który nadal działa poprawnie i nie jest omawiany w tym dokumencie. Wyróżnię trzy najpopularniejsze metody wykorzystania pliku autoinstall jego pobrania i uruchomienia przez instalator. ...

March 11, 2025 · 7 min

Dealing with Frozen SSH: How to Disconnect Without Closing Your Terminal

If you frequently work with remote servers via SSH (Secure Shell), you’ve probably encountered a frozen session. It’s a common situation where the terminal becomes unresponsive, possibly due to network issues, server overload, or simply a timeout. Instead of closing your terminal window and losing your session history, there’s a more elegant solution to handle this. In this guide, we’ll show you how to safely disconnect from a frozen SSH session using built-in SSH shortcuts, along with other tips for managing your SSH connections more effectively. ...

September 6, 2024 · 4 min

Master Your MX Keys: Remap Keys for a Personalized Workflow

If you’re using the Logitech MXKeys keyboard via Bluetooth on macOS and want to swap the right CMD (⌘) and OPT (⌥) keys, this guide will walk you through remapping the keys using a custom script and a plist configuration. Why Remap? The default key mapping on macOS for the MXKeys might not match your personal preference, especially if you’re coming from another operating system or have a specific workflow in mind. In this case, we want to swap the right-side CMD (⌘) and OPT (⌥) keys to better suit the user’s needs. ...

September 6, 2024 · 3 min

SSH Keys: A Simple Guide to Secure Remote Access

Secure Shell (SSH) keys are a widely used method for secure authentication between systems, especially in managing remote servers. Using SSH keys eliminates the need for password-based logins, enhancing both security and convenience. Below is a guide on how to generate two types of SSH keys: RSA and ED25519. Generating an RSA Key To create an RSA key with 4096-bit encryption, use the following command: ssh-keygen -o -t rsa -b 4096 -C "your_username" -o: Use the new OpenSSH format for private keys. -t rsa: Specifies the RSA key type. -b 4096: Sets the key length to 4096 bits for added security. -C “your_username”: Adds a label (comment) to the key, typically your email or username. ...

August 6, 2023 · 3 min