Skip to content

Instantly share code, notes, and snippets.

View kumarjitu21's full-sized avatar
🎯
Focusing

Jitendra Kumar kumarjitu21

🎯
Focusing
View GitHub Profile
@kumarjitu21
kumarjitu21 / README.md
Created August 4, 2025 01:28 — forked from nitaku/README.md
Minimal JSON HTTP server in python

A minimal HTTP server in python. It sends a JSON Hello World for GET requests, and echoes back JSON for POST requests.

python server.py 8009
Starting httpd on port 8009...
curl http://localhost:8009
{"received": "ok", "hello": "world"}
@kumarjitu21
kumarjitu21 / dummy-web-server.py
Created August 4, 2025 01:24 — forked from bradmontgomery/dummy-web-server.py
a minimal http server in python. Responds to GET, HEAD, POST requests, but will fail on anything else.
#!/usr/bin/env python
"""
Very simple HTTP server in python (Updated for Python 3.7)
Usage:
./dummy-web-server.py -h
./dummy-web-server.py -l localhost -p 8000
Send a GET request:
@kumarjitu21
kumarjitu21 / custom-runner-script.sh
Last active February 9, 2021 15:05
setup github runner in azure vm
gitUrl=$1
token=$2
curl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-x64-2.272.0.tar.gz;
tar xzf ./actions-runner-linux-x64-2.272.0.tar.gz;
./config.sh --url $gitUrl --token $token --labels ubuntu --name test --work _work --unattended;
nohup ./run.sh > nohup-output.txt &
Gravitee.IO Standalone Runtime Bootstrap Environment
GRAVITEE_HOME: /opt/graviteeio-management-api
GRAVITEE_OPTS:
JAVA: /opt/java/openjdk/bin/java
JAVA_OPTS: -Djava.net.preferIPv4Stack=true -Xms1024m -Xmx2048m -Djava.awt.headless=true -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8
# Default values for gravitee.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
chaos:
enabled: false
inMemoryAuth:
enabled: true
allowEmailInSearchResults: false
@kumarjitu21
kumarjitu21 / bobp-python.md
Created August 29, 2020 06:16 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@kumarjitu21
kumarjitu21 / upgrade-postgres-9.6-to-10.md
Created April 20, 2018 06:36 — forked from mdesantis/upgrade-postgres-9.6-to-10.md
Upgrading PostgreSQL from 9.6 to 10 on Ubuntu 16.04

TL;DR

Install Postgres 10, and then:

sudo pg_dropcluster 10 main --stop
sudo pg_upgradecluster 9.6 main
sudo pg_dropcluster 9.6 main
@kumarjitu21
kumarjitu21 / HDFS_Cluster_Kubernetes.md
Last active March 3, 2018 15:32 — forked from polvi/README.md
HDFS of Kubernetes

Easiest HDFS cluster in the world with kubernetes.

Inspiration from kimoonkim/kubernetes-HDFS

kubectl create -f namenode.yaml
kubectl create -f datanode.yaml

Setup a port-forward to so you can see it is alive: