Skip to content

Instantly share code, notes, and snippets.

View Rellotscrewdriver's full-sized avatar
💻
learning C++ and godot

Rellot's screwdriver Rellotscrewdriver

💻
learning C++ and godot
  • UK, India
View GitHub Profile
@Rellotscrewdriver
Rellotscrewdriver / arch_install_guide.md
Last active April 7, 2024 11:52
Guide to install Arch Linux and other optional things

arch linux installation and configuring guide

This guide is mostly for beginners in a friendly guide if you want to install arch manually without the automated method and actually want to understand the commands you're running in an easier way, this guide is for both UFEI and Legacy BIOS in step 7, we will install sway which is a replacement of i3 in wayland.

Step 1: Bootstrapping


  1. get the ISO from the Arch Linux website.
  2. Once you have the ISO from your mirror of choice you should install Rufus (if you're on windows)
@Rellotscrewdriver
Rellotscrewdriver / Printing_all_the_alphabets.cpp
Created August 2, 2021 08:15
just a way to print all the alphabets and numbers without alphabets
#include <iostream>
#define NEXTLINE cout << endl;
void Alphabets(char starting, char ending);
int main(){
using namespace std;
int lowercase = 97, uppercase = 65, numbers = 48;