Skip to content

Instantly share code, notes, and snippets.

View liviuchircu's full-sized avatar
📬
Eat. Sleep. Email. Code. Repeat.

Liviu Chircu liviuchircu

📬
Eat. Sleep. Email. Code. Repeat.
View GitHub Profile
@ekreutz
ekreutz / ansible_variable_precedence.md
Last active April 25, 2024 17:43
Ansible variable precedence (order, hierarchy)
@shieldwed
shieldwed / http_server.py
Created October 14, 2017 21:01
A simple python HTTP server which responds with the original request headers and request path
#!/usr/bin/env python
from http.server import BaseHTTPRequestHandler, HTTPServer
# HTTPRequestHandler class
class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
# GET
def do_GET(self):
# Send response status code