Skip to content

Instantly share code, notes, and snippets.

@marcobazzani
marcobazzani / procmon.py
Last active December 21, 2021 08:53 — forked from saaj/HISTORY.rst
Simple CPU and RSS monitor that pushes to statsd
import sys
import re
import time
import argparse
import logging
import psutil
import statsd
import requests
import os
@marcobazzani
marcobazzani / formatsso.js
Last active April 27, 2022 14:03 — forked from martinlindenberg/format-aws-sso.js
reformats AWS sso page. (greasemonkey script)
// ==UserScript==
// @name aws-format-sso
// @namespace signin.aws.amazon.com
// @description reformats that page
// @include https://signin.aws.amazon.com/saml
// @version 1.2
// @grant none
// ==/UserScript==
$('#saml_form').css('max-width', '500px');
$('fieldset').css('width', '500px');