Bookmarks and note to users

Bookmarks and note to users A note for the users of this blog Most visited pages Sem 6 lab expts 😭😅 Docker MERN Lab expts 😭😅 Computer networks Note to users Find any issues? Want to suggest changes? Feel free to do so by creating a GitHub pull request the button below.

April 17, 2024 · 1 min · 52 words · Aum Pauskar

Neovim_customization

Neovim customization Introduction What is neovim? Neovim is a CLI based text editor that can be used to write documentation, write code etc. it has enough features for regulat text editing but may be lacking for the power users in the stock form, which is what we are going to do here. Prerequisites If neovim is not installed it can be installed in the following way in the following linux distors 1 2 sudo apt update -y sudo apt install neovim -y 1 sudo dnf update -y 1 2 sudo pacman -Syu sudo pacman -S neovim If neovim is alreaddy installed and you already have it setup then the following configuration files may be deleted to start neovim from actual scratch....

October 30, 2024 · 2 min · 214 words · Me

Linux Ricing

Linux ricing WTF is ricing Ricing came from the car term “Race Inspired Cosmetic Enhancements” it generally means to customize your software experience tailormade to your usage. In this tutorial we are going to use Arch Linux and Hyprland to completely customize you user experience Prereq

October 24, 2024 · 1 min · 46 words · Aum Pauskar

Dualbooting windows and linux

Dual booting arch and win11 Prerequisites Before installing arch we need to do the following things Disk partition We’ll need to make a disk partition in windows 11 before proceeding to make sure both the OS run isolated, this can be done by the following steps Right-click on the Start menu and select Disk Management. Alternatively, you can press Win + X and choose Disk Management from the list. In the Disk Management window, locate the drive you want to partition (usually the C: drive)....

July 7, 2024 · 6 min · 1257 words · Aum Pauskar

MongoDB

MongoDB Introduction NoSQL databases are non-relational databases that are used to store and retrieve data. MongoDB is a popular NoSQL database that is used to store data in the form of documents. Feature SQL (Relational Databases) NoSQL (Non-Relational Databases) Schema Fixed schema Dynamic schema for unstructured data Scalability Vertical scalability (scale-up by adding more powerful CPU, RAM, SSD) Horizontal scalability (scale-out by adding more servers) Complexity Tables with rows and columns, complex queries with JOINs Document, key-value, wide-column, or graph formats, simpler queries Transactions ACID properties (Atomicity, Consistency, Isolation, Durability) for reliable transactions BASE properties (Basically Available, Soft state, Eventual consistency) less strict than ACID Development Model Mature, with established standards More flexible and evolving rapidly Use Cases Well-suited for complex queries and transactions, e....

June 27, 2024 · 4 min · 709 words · Aum Pauskar