Data pulled from my ranks API, see anons-s2-secret-nft.
- Install ViolentMonkey, Tampermonkey, Greasemonkey or any other userscript manager.
- Add userscript
- Go to https://stashh.io/collection/anon-army?sort=listing_date+desc
| /** | |
| * Convert any string to kebab-case. | |
| * Removes accents, multiples whitespaces and symbols to one "-" and converts to lower case. | |
| * Removes any leading and leading "-". | |
| * | |
| * @param {string} str string to convert | |
| * @returns {string} string in kebab-case | |
| * @author rigwild <me@rigwild.dev> | |
| * @see https://gist.github.com/rigwild/3e4d30bd269535b7508926c8beaeef90 | |
| */ |
| // ==UserScript== | |
| // @name Photo fixed + EUR price + Keyboard arrows | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.wegobuy.com/en/page/buy | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 8/28/2022, 1:40:18 AM | |
| // ==/UserScript== |
| const crypto = require('crypto') | |
| /** | |
| * Encrypts text by given key | |
| * @param {string} text to encrypt | |
| * @param {Buffer | string} masterkey | |
| * @returns {string} encrypted text, base64 encoded | |
| */ | |
| function encrypt(text, masterkey) { | |
| // random initialization vector |
Data pulled from my ranks API, see anons-s2-secret-nft.
| #!/bin/bash | |
| # Check if script is ran by root user -> exit | |
| if [[ $EUID -eq 0 ]]; then echo "This script should not be ran by root!"; exit 1; fi | |
| # Stop script on error | |
| set -e | |
| set -o pipefail | |
| sudo apt update |
Netdata is a distributed and real-time health monitoring and performance troubleshooting toolkit for monitoring your systems and applications.
sudo apt install -y nginx snapd
sudo snap install core; sudo snap refresh core
sudo snap install --classic certbot| // ==UserScript== | |
| // @name Scrape Linkedin people search | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.linkedin.com/search/results/people* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com | |
| // @grant none | |
| // ==/UserScript== |
| ' Save presentation as pptm then create a macro in "View > Macros", run it | |
| Sub MkVideo() | |
| If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then | |
| ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\video.wmv", _ | |
| UseTimingsAndNarrations:=True, _ | |
| VertResolution:=1080, _ | |
| FramesPerSecond:=60, _ | |
| Quality:=100 | |
| Else: MsgBox "There is another conversion to video in progress" | |
| End If |