How I setup this blog for free (domain, hosting, ssl) Complete Guide

In this article I’ll show you how I setup this blog completely for free. I’ll show you how to use hugo to write your blog, Cloudflare and eu.org for your domain and ssl, Render and github for the hosting and even how to get your blog on google. What is hugo? Hugo is a fast and popular open-source static site generator used for creating static websites without requiring a database or dynamic components....

March 23, 2023 1292 words 7 min

Python for Complete Beginners

Why you should use Python. Going over the basics of Python. In this course/article I will be talking about why someone should use Python. Later on, I will be tackling the basics of Python. But let’s start by explaining what coding is. What is coding? Coding means writing instructions for computers and a finished set of instructions is known as a program. Computer programs control everything from smartphones to space rockets....

PocketBase self-hosted Firebase alternative

What is PocketBase PocketBase is an open source backend made in go consisting of embedded database (SQLite) with realtime subscriptions, built-in auth management, convenient dashboard UI and simple REST-ish API. Install PocketBase The first thing that you will have to do is head to https://pocketbase.io and select the file for your operating system. Since I am using linux I will show how to set this up on linux but it should be pretty similar for any other os....

Why Monero is the ultimate form of a cryptocurrency

In this article, I will tell you why Monero fits my views of what a cryptocurrency should look like. What is Monero? Monero is a decentralized cryptocurrency. It uses a public distributed ledger with privacy-enhancing technologies that obfuscate transactions to achieve anonymity and fungibility. Observers cannot decipher addresses trading Monero, transaction amounts, address balances, or transaction histories. Monero works like any other currency but with some privacy and decentralization innovations....

Create a MultiBoot USB using ventoy

With ventoy, you don’t need to format the disk over and over, you just need to copy the ISO files to the USB drive and boot them directly. Whats ventoy? Ventoy is a free and open-source utility used for writing image files such as .iso, .wim, .img, .vhd(x), and .efi files onto storage media to create bootable USB flash drives. Once Ventoy is installed onto a USB drive, there is no need to reformat the disk to update it with new installation files; it is enough to copy the ....

March 6, 2023 289 words 2 min

Nmap(Network Mapper) For Beginners

Whether you want to scan your network for vulnerabilities or just want to see which ports you have open, nmap can be extremely useful. What is nmap Nmap (Network Mapper) is a network scanner created by Gordon Lyon . Nmap sends packets and examines the answers to find hosts and services on a computer network. For probing computer networks, Nmap offers a variety of functionalities, including host discovery, service detection, and operating system detection....

How Microsoft is monetizing the GitHub code base

Microsoft purchased GitHub in 2018, something many users are not aware of. After Microsoft’s acquisition of GitHub there have been many controversies like blocking private repositories and access to GitHub pages in certain countries and of course, GitHub Copilot. What is Github Copilot GitHub Copilot is an artificial intelligence tool developed by GitHub and OpenAI to assist users of Visual Studio Code, Visual Studio, Neovim, and JetBrains integrated development environments (IDEs) by autocompleting code....

How to Set Up Your Own Git Server: A Simple Guide

Thinking about setting up your own Git server? There are plenty of perks to doing so instead of relying on platforms like GitHub. For starters, you’ll have complete control over your code, ensuring it can’t be used for profit or deleted by anyone but you. What You’ll Need A Computer for Your Server: Ideally running Linux (Debian is a solid choice). Internet Connection: Pretty essential for accessing your server remotely. Another Computer with Git Installed: This is what you’ll use to interact with your server....