Skip to content

Instantly share code, notes, and snippets.

@Fartomy
Fartomy / kiwixofflineint.md
Created July 31, 2025 22:06
Offline Internet

🚫 🌐 Offline Internet

Kiwix

Kiwix a project, that stores scanned versions of many websites, including Wikipedia, in a special file format (.zim) that can be accessed without the internet.

After downloading the application to the relevant platform, the content can be downloaded from this index in a special file format.

Download List Files

@Fartomy
Fartomy / ps3ethetfs.md
Created July 30, 2025 01:27
File Transfer via Ethernet as Directly

🚡 File Transfer via Ethernet as Directly

It is possible to transfer files at super-fast speeds by setting up a mini network between two devices using an Ethernet cable.

Example

You want to transfer large games downloaded to your PC to your PS3, but you don't want to do this over your local network because the transfer speed is slow. Instead, you want a faster transfer, so follow the instructions below:

  1. Plug one end of the Ethernet cable into your PS3 device.
@Fartomy
Fartomy / idmbutcli.md
Created July 26, 2025 20:56
Internet Download Manager But as CLI

⬇️ Internet Download Manager But as CLI

With aria2 you can use the terminal to parse the file and download it in parallel, just like the Internet Download Manager.

Example

aria2c -x4 -s4 -c -d /path/to/download/folder -i download-links.txt
@Fartomy
Fartomy / arch-wiki-locally.md
Created July 20, 2025 23:32
Install Elder Arch-Wiki's as Locally

📜 Install Elder Arch-Wiki's as Locally

Storing carefully crafted deep ancient knowledge locally can be a saving grace in a post-apocalyptic world.

First of all you need to have an Arch Linux system because we will upload these files with pacman;

sudo pacman -S arch-wiki-docs
@Fartomy
Fartomy / vboxguestadditions.md
Created June 10, 2025 15:24
VirtualBox Guest Operations

🍞 VirtualBox Guest Operations

If there are problems with shared folders or other guest operations, an important step is being missed. For this, the extension called Guest Additions must be added to the guest machine.

For example, the shared folders feature is intended to be used to send files from a Linux host machine to a Windows guest virtual machine;

  1. Start the virtual machine
  2. in the top tab of the window that opens, find the Devices option
@Fartomy
Fartomy / degoogle.md
Last active June 24, 2025 00:56
Antibiotics for G**gle

💊 Antibiotics for G**gle

This insidious virus infects every part of your mobile device and works as it pleases. It's behavior is like that of a pervert who pretends to care about privacy and confidentiality, but does the opposite at every opportunity.

Below are the alternatives to get rid of it;

Offline and privacy are important features and concepts in mobile keyboard use.

Keyboard

@Fartomy
Fartomy / my_opengist_docker_compose.yml
Created March 9, 2025 00:44
CasaOS Opengist Docker Compose File
name: Opengist
services:
opengist:
container_name: opengist
ports:
- 6157:6157
volumes:
- /DATA/AppData/opengist:/opengist
image: ghcr.io/thomiceli/opengist:1
@Fartomy
Fartomy / my_hoarder_docker_compose.yml
Created March 9, 2025 00:43
CasaOS Hoarder Docker Compose File
name: Hoarder
services:
hoarder:
container_name: hoarder
image: ghcr.io/hoarder-app/hoarder:latest
restart: unless-stopped
volumes:
- /DATA/AppData/$AppID/data/hoarder:/data
environment:
@Fartomy
Fartomy / my_ghost_docker_compose.yml
Created March 9, 2025 00:42
CasaOS Ghost Docker Compose File
name: Ghost
services:
ghost:
image: ghost:5-alpine
restart: always
ports:
- "8080:2368"
environment:
@Fartomy
Fartomy / swaparea.md
Created March 1, 2025 12:09
Allocating Swap Space in Linux

⭕ Allocating Swap Space in Linux

Swap area is a temporary area of memory in Linux that is reserved for use when RAM is insufficient. However, it is slower than RAM. This area can be separated to the desired extent in Debian;

Steps

  1. First, if there is a swap area available, check it if there is
sudo swapon --show