Skip to content

Instantly share code, notes, and snippets.

View orgnizedmess's full-sized avatar

Piya Gehi orgnizedmess

View GitHub Profile
@orgnizedmess
orgnizedmess / summary.py
Last active May 24, 2026 12:25
Analysis of mail server logs from a spam attack
#!/usr/bin/env python3
import re
queue = {}
lines = open("spam.log").readlines()
sent = 0
deferred = 0
bounced = 0
unknown = 0
deleted = 29118 # number I saw when clearing the queue at once
@orgnizedmess
orgnizedmess / aoc23.sh
Last active December 31, 2023 15:45
Solutions for Advent Of Code 2023
#!/usr/bin/env bash
set -eu
echo '--- Day 1: Trebuchet?! ---'
echo -n 'Part 1: '
# Combine first and last instance of digit as a two-digit number and find
# sum. Sample input:
#
# 1abc2 -> 12