Skip to content

Instantly share code, notes, and snippets.

View markhu's full-sized avatar
😅
having fun

Mark H markhu

😅
having fun
View GitHub Profile
@markhu
markhu / server.py
Created December 8, 2020 18:36 — forked from mdonkers/server.py
Simple Python 3 HTTP server for logging all GET and POST requests
#!/usr/bin/env python3
"""
Very simple HTTP server in python for logging requests
Usage::
./server.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging
class S(BaseHTTPRequestHandler):
@markhu
markhu / README.md
Last active February 3, 2021 14:39 — forked from rb2k/gist:8372402
Groovy jenkins scripts

Some of these Groovy scripts can be pasted into user jobs, and others require Admin script console access.

The low-diskspace was forked from someone else.

I made the multiAxis.groovy --though it seems so simple that it should be built in.