Skip to content

Instantly share code, notes, and snippets.

View akshaypuradkar's full-sized avatar

akshay puradkar akshaypuradkar

View GitHub Profile
@foxxyz
foxxyz / nginx.conf
Last active September 4, 2025 10:54
Serve current directory via nginx
# Extremely basic development setup to serve the current directory at http://localhost:9001
# Start nginx in this directory with `nginx -p . -c nginx.conf`
# Stop nginx with `nginx -p . -s stop`
events {}
http {
# Serve files with correct mimetypes on OSX
# location may have to be adjusted depending on your OS and nginx install
include /usr/local/etc/nginx/mime.types;
@asimzeeshan
asimzeeshan / uprecords.centos.sh
Created January 11, 2014 11:54
A simple bash script to install UPTIMED / UPRECORDS in CentOS Home: http://uptimed.technicalissues.us/ Project Downloads: https://github.com/genebean/uptimed/downloads
#!/bin/bash
############################################################
# Author: Asim
# Bash script created Jan 11, 2014
#
# TODO
# 1) Add interactivity
# 2) Check from CDN for latest file updates
# 3) Install dependancies
@denji
denji / http-benchmark.md
Last active February 13, 2026 10:16
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)
@UniIsland
UniIsland / SimpleHTTPServerWithUpload.py
Created August 14, 2012 04:01
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""