Recent Posts
-
title: react-native date: 2025-11-22 permalink: posts/undefined/index.html tags: [react-native, android, mobile] 🐧 How to Run React Native on Arch Linux (and Fix Common Errors) React Native works...
read article -
How to Install Frappe Bench on Arch Linux 📦 1. Install System Dependencies Begin with a full system update: sudo pacman -Syu Install all necessary packages: sudo pacman -S \ git python python-pip...
read article -
Virtual Machine Archlinux
Quick prerequisites — check your hardware Confirm your CPU supports hardware virtualization (Intel VT-x or AMD-V): # prints nonzero if VT-x/AMD-V present egrep -c '(vmx|svm)' /proc/cpuinfo # or a...
read article -
KVM and Hosting
🧾 Working with KVM Virtual Machines and Creating Networks (NAT, Isolated, Bridged) + Hosting a Local Repository Server KVM (Kernel-based Virtual Machine) combined with libvirt and virt-manager...
read article -
Python By Projects
✅ LEVEL 0 — ABSOLUTE BEGINNER (Basics) 🎯 Skills Covered Basic syntax, variables, data types, loops, conditionals, lists/tuples/sets/dicts, exceptions, functions, modules. *(From roadmap: “Learn the...
read article -
Cloudflare Tunnel
Cloudflare Tunnel Setup Guide Step 1: What Is Cloudflare Tunnel? Cloudflare Tunnel is a secure, outbound-only connection from your device to Cloudflare’s global network. ✔ You DO NOT need: Port...
read article -
How To Restore
How to Restore frappe_db_backup_utf8.sql Prerequisites Ubuntu/Debian system with Python 3.10+ and Node.js installed. MariaDB/MySQL installed and configured. Git installed. Access to sudo for system...
read article -
Setup Frappe Containers
docker run -d --name mariadb --network frappe-net -e MYSQL_ROOT_PASSWORD=frappe -e MYSQL_USER=frappe -e MYSQL_PASSWORD=frappe -e MYSQL_DATABASE=frappe -v mariadb_data:/var/lib/mysql -p...
read article -
Docker Self
Mastering Docker: Building, Managing, and Maintaining Your Own Systems 🚀 1. Understanding Docker Basics Before diving into management, let’s recap what Docker is built...
read article -
Docker Network
How to Create and Manage Docker Networks 🔹 What Is a Docker Network? A Docker network is a virtual layer that connects containers. By default, Docker provides some basic network types: Network...
read article