Skip to content

Instantly share code, notes, and snippets.

View cnu's full-sized avatar
🤖
Augmented Coding

Srinivasan Rangarajan cnu

🤖
Augmented Coding
View GitHub Profile
@hrldcpr
hrldcpr / tree.md
Last active January 24, 2026 21:18
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!

@neilalbrock
neilalbrock / comm.py
Created December 5, 2011 17:33 — forked from ericmoritz/comm.py
Simple Redis powered chat server for hyper-local chat.
import redis
import simplejson as json
import logging
import settings
import math
log = logging.getLogger(__name__)
#
# The following formulas are adapted from the Aviation Formulary