Helps to keep a better order and keep easy to understand every change in the git log history Emojis looks nice, and i chose the most easy to remember ones
| type | [scope] | subject |
|---|---|---|
| emoji | section (optional) | Summary (present tense) |
This guide provides instructions on how to install ZSH and Oh-my-zsh with a Powerline-like theme in Ubuntu
| // Import required modules | |
| const http = require("http"); | |
| const httpProxy = require("http-proxy"); | |
| // API target and proxy port configuration | |
| const API_TARGET = 'https://pokeapi.co/api/v2/'; | |
| const PROXY_PORT = 8080; | |
| // Create a proxy server | |
| const proxy = httpProxy.createProxyServer({}); |
| #!/bin/bash | |
| # Check if running in WSL | |
| if grep -qEi "(Microsoft|WSL)" /proc/version &> /dev/null ; then | |
| echo "WSL detected, proceeding with Docker installation..." | |
| else | |
| echo "This script is intended to be run in WSL. Exiting." | |
| exit 1 | |
| fi |
This document provides instructions for addressing issues with the libc-bin package on Debian or Ubuntu-based systems.
The error dpkg: error processing package libc-bin (--configure): installed libc-bin package post-installation script subprocess returned error exit status 134 indicates a problem during the configuration of the libc-bin package.
Also the error /sbin/ldconfig.real: Path '/usr/lib/x86_64-linux-gnu' given more than once is also related
This guide provides updated instructions for pairing Bluetooth devices (such as keyboards or mice) in a dual-boot environment with Linux Ubuntu and Windows 10/11, incorporating community feedback and suggestions.
| #!/bin/bash | |
| echo "Starting Docker installation on Deepin Linux..." | |
| # Define a mapping from Deepin version to Debian version | |
| map_deepin_to_debian() { | |
| if [ "$1" -lt 20 ]; then | |
| echo "stretch" | |
| elif [ "$1" -ge 20 ]; then | |
| echo "buster" |
| #!/bin/bash | |
| # Shell script to update Namecheap.com dynamic DNS | |
| # for a domain to your external IP address | |
| # Configuration - replace these with your details or read from a secure location | |
| HOSTNAME=yoursubdomain | |
| DOMAIN=yourdomainname.com | |
| PASSWORD=y0urp455w0rd |