Skip to content

Instantly share code, notes, and snippets.

@codedokode
codedokode / test-xdg-proxy.py
Created March 22, 2020 13:41
Test Python script for xdg-dbus-proxy
import os
import socket
import sys
import binascii
from pprint import pprint
# Tests xdg-dbus-proxy by sending different messages to check whether it
# would crash or not.
#
# How to use:
@codedokode
codedokode / measure.py
Created July 12, 2022 14:02
Measure true RAM and SWAP consumption in Linux with grouping by user or application
import os
import re
import sys
import pwd
import csv
from dataclasses import dataclass
from typing import TextIO, Optional, Sequence
Pid = int
Uid = int