Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
| #!/bin/bash | |
| GREEN="\e[32m" | |
| RED="\e[31m" | |
| YELLOW="\e[33m" | |
| CYAN="\e[36m" | |
| NC="\e[0m" | |
| echo -e "${YELLOW}📦 Checking disk usage of common development folders...${NC}" | |
| echo |
| /* eslint-disable @typescript-eslint/camelcase */ | |
| import { drive_v3 } from "googleapis"; | |
| import { GaxiosResponse } from "gaxios"; | |
| import mime from "mime"; | |
| import fs, { ReadStream } from "fs"; | |
| import File from "./file"; | |
| import path from "path"; | |
| import { escapeSingleQuotes } from "../util"; | |
| class Directory extends File { |
| #!/bin/bash | |
| sudo add-apt-repository -y ppa:git-core/ppa | |
| sudo apt-get update | |
| sudo apt-get install git -y |
| #!/usr/bin/env bash | |
| # Ubuntu Server or VM Cleaner. Safe by default; aggressive when asked. | |
| # Example safe: sudo ./clean.sh | |
| # Example aggressive: sudo JOURNAL_DAYS=3 AGGRESSIVE=1 ./clean.sh | |
| # Enable Docker image prune (images only): sudo ./clean.sh --docker-images | |
| # Tested on Ubuntu 20.04, 22.04, 24.04 (server/VM images). | |
| set -Eeuo pipefail | |
| trap 'rc=$?; echo "Error on line $LINENO: $BASH_COMMAND (exit $rc)"; exit $rc' ERR | |
| IFS=$'\n\t' |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com, example2.com, and example1.com/images on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers