Skip to content

Instantly share code, notes, and snippets.

View iwanttobepowerful's full-sized avatar
🎯
Focusing

zzwwhh iwanttobepowerful

🎯
Focusing
View GitHub Profile
@JJGO
JJGO / dstest
Last active March 21, 2024 18:10
Utility for running MIT 6.824 lab test in parallel and saving failed logs
#!/usr/bin/env python
import itertools
import math
import signal
import subprocess
import tempfile
import shutil
import time
import os
@JJGO
JJGO / dslogs
Last active December 20, 2023 19:47
Script for pretty printing logs of MIT 6.824 labs
#!/usr/bin/env python
import sys
import shutil
from typing import Optional, List, Tuple, Dict
import typer
from rich import print
from rich.columns import Columns
from rich.console import Console
from rich.traceback import install