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 / 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