Skip to content

Instantly share code, notes, and snippets.

View jogardi's full-sized avatar

Joseph Gardi jogardi

  • Dasion
  • Claremont, California
View GitHub Profile
@bkaradzic
bkaradzic / orthodoxc++.md
Last active December 9, 2025 09:13
Orthodox C++

Orthodox C++

This article has been updated and is available here.

@chengui
chengui / capturestdout.py
Created September 26, 2013 10:33
capture stdout
import sys
import tempfile
import os
class captured_stdout:
def __init__(self):
self.prevfd = None
self.prev = None
def __enter__(self):