Skip to content

Instantly share code, notes, and snippets.

View nappa32's full-sized avatar

Imran Ahmed nappa32

View GitHub Profile
@nappa32
nappa32 / Makefile
Created November 1, 2019 20:51 — forked from ryu1kn/Makefile
Encrypt/decrypt with AWS KMS using AWS cli
# How to encrypt/decrypt your text/blob secret with AWS KMS with AWS cli
KEY_ID=alias/my-key
SECRET_BLOB_PATH=fileb://my-secret-blob
SECRET_TEXT="my secret text"
ENCRYPTED_SECRET_AS_BLOB=encrypted_secret_blob
DECRYPTED_SECRET_AS_BLOB=decrypted_secret_blob # Result of decrypt-blob target
encrypt-text:
// ==UserScript==
// @name Remove Blur-2xl
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Removes blur-2xl class from all elements
// @author You
// @match *://*/*
// @grant none
// @run-at document-idle
// ==UserScript==