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
// ==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 |
const fetch = require('node-fetch') | |
{ | |
const apiPrefix = 'https://discord.com/api/v9' | |
var delay = ms => new Promise(res => setTimeout(res, ms)) | |
var qs = obj => | |
Object.entries(obj) | |
.map(([k, v]) => `${k}=${v}`) | |
.join('&') |