Skip to content

Instantly share code, notes, and snippets.

@glorpen
glorpen / prometheus-lvm-metrics.py
Last active June 24, 2019 12:51
Prometheus LVM Metrics for textfile collector.
#!/usr/bin/env python3
"""
Prometheus LVM Metrics for textfile collector.
Shows LVM stats: LV/VG sizes, health states and LVM RAID data.
There is no cache, LVM raport will be created every scrape/cron execution.
Requires Python3.
@author: Arkadiusz Dzięgiel <arkadiusz.dziegiel@glorpen.pl>
"""
@glorpen
glorpen / alior-bank-kantor.user.js
Created March 15, 2016 16:23
Adds password input field for LastPass on AliorBank Kantor page
// ==UserScript==
// @name AliorBank Kantor
// @namespace glorpen
// @include https://kantor.aliorbank.pl/login/password
// @version 1
// @grant none
// ==/UserScript==
var oldInput = document.getElementById("masked-password");
var input = document.createElement("input");
@glorpen
glorpen / alior-helper.user.js
Created July 8, 2014 16:36
Creates password input in login form for LastPass support in Alior Bank
// ==UserScript==
// @name AliorBank Helper
// @namespace glorpen
// @include https://aliorbank.pl/hades/do/BANKLOGIN
// @version 1
// @grant none
// ==/UserScript==
/**
* Creates password input for LastPass support in Alior Bank
@glorpen
glorpen / ing-login-helper.user.js
Last active November 14, 2023 15:54
User script for creating password field on ING login form - to enable LastPass support.
// ==UserScript==
// @name ing login
// @match https://login.ingbank.pl/*
// @version 4.0
// ==/UserScript==
/**
* Creates a password input field for LastPass/KeePass autocomplete.
* @author Arkadiusz Dzięgiel
**/