Skip to content

Instantly share code, notes, and snippets.

View leandro-lucarella-sociomantic's full-sized avatar

Leandro Lucarella (RETIRED WORK ACCOUNT) leandro-lucarella-sociomantic

View GitHub Profile
@leandro-lucarella-sociomantic
leandro-lucarella-sociomantic / Makefile
Last active December 4, 2015 20:52
Git submodule summary summary
deb:
./build-deb
clean:
$(RM) -v *.deb
@leandro-lucarella-sociomantic
leandro-lucarella-sociomantic / core.sh
Last active August 29, 2015 14:11
A better core dump file writer
#!/bin/sh
set -e
# Comment out for debugging
#exec 2> /tmp/core.log
#echo "$@" >&2
#set -x
keep=0
dest=cwd
@leandro-lucarella-sociomantic
leandro-lucarella-sociomantic / purge.py
Created December 2, 2014 18:14
Purge Debian packages files from a directory
#!/usr/bin/env python3
import os
import sys
import argparse
from datetime import datetime, timedelta
debug = False
quiet = False