Skip to content

Instantly share code, notes, and snippets.

View anujkumarnath's full-sized avatar
💻
Coding...

Anuj Kumar Nath anujkumarnath

💻
Coding...
View GitHub Profile
@anujkumarnath
anujkumarnath / starship.toml
Created April 21, 2024 20:49 — forked from ryo-ARAKI/starship.toml
Starship configuration file
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "🔌"
discharging_symbol = "⚡"
[[battery.display]]
threshold = 30
style = "bold red"
@anujkumarnath
anujkumarnath / create-your-own-nerd-font.md
Last active March 2, 2025 10:44
How to create your own Nerd Fonts.

The steps are written assuming you are in a Ubuntu distro. Please adjust the installation instructions according to your distros. Follow the official docs for other environments.

Steps:

  1. Make sure you have python3 installed in your system
  2. Download the required script and helper files: archive
  3. Extract the zip file
  4. Collect the source font files and put them somewhere in a folder
  5. Download the dependencies: sudo apt install fontforge python3-fontforge
@anujkumarnath
anujkumarnath / install-starship.md
Created February 18, 2023 16:28
Install Starship and some pre-applied customizations.

Execute the following command on you debian based linux terminal to install starship and apply my customizations:

sudo curl -o- https://raw.githubusercontent.com/anujkumarnath/installation-scripts/master/starship/install.sh | bash

@anujkumarnath
anujkumarnath / install-neovim-nvchad.md
Last active February 15, 2023 21:16
Install neovim with NvChad and some pre-applied customizations.

Execute the following command on you debian based linux terminal to install neovim and apply NvChad and my customizations:

sudo curl -o- https://raw.githubusercontent.com/anujkumarnath/installation-scripts/master/nvchad-nvim/install.sh | bash

@anujkumarnath
anujkumarnath / ABOUT.md
Created April 1, 2020 20:28 — forked from laobubu/ABOUT.md
A very simple HTTP server in C, for Unix, using fork()

Pico HTTP Server in C

This is a very simple HTTP server for Unix, using fork(). It's very easy to use

How to use

  1. include header httpd.h
  2. write your route method, handling requests.
  3. call serve_forever("12913") to start serving on port 12913