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

Github Actions

Github actions What is github actions? Github actions is a tool baked inside github that facilitates ci/cd operations and

February 25, 2025 · 1 min · 19 words · Me

Basic data structures and algorithms in python

Basic data structures and algorithms in python Searching algorithms in python Linear search 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 def linear_search(arr, target): for i in range(len(arr)): if arr[i] == target: return i # Return the index if target is found return -1 # Return -1 if the target is not found def main(): arr = [3, 10, 23, 5, 2, 6] target = 5 # Calling the linear_search function result = linear_search(arr, target) # Output the result if result != -1: print(f"Element {target} found at index {result}.") else: print(f"Element {target} not found in the list.") # Calling main to run the program if __name__ == "__main__": main() Time Complexity ...

February 25, 2025 · 6 min · 1105 words · Me

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