Skip to content

Instantly share code, notes, and snippets.

View Fitzsimmons's full-sized avatar

Justin Fitzsimmons Fitzsimmons

View GitHub Profile
@touilleMan
touilleMan / SimpleHTTPServerWithUpload.py
Last active May 4, 2024 01:08 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload - Python3 version
#!/usr/bin/env python3
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
see: https://gist.github.com/UniIsland/3346170
"""
@matiaskorhonen
matiaskorhonen / irb_context_echo.rb
Created October 13, 2011 09:31
A common irb complaint is that its output is too verbose. Disabling this option makes irb print no output.
irb_context.echo = false
# More config options:
# http://tagaholic.me/2009/05/29/exploring-how-to-configure-irb.html