gpg --gen-key
Real name: GitHub Master
Email address: blank
// ==UserScript== | |
// @name omegle revealer | |
// @namespace https://omegle.com | |
// @version 0.1 | |
// @description cum | |
// @author relative | |
// @match https://www.omegle.com/* | |
// @grant none | |
// @updateURL https://gist.github.com/relative/31a4fbbb62ea12b6d6cfcc22887cc1dd/raw/omegle%2520revealer.user.js | |
// @downloadURL https://gist.github.com/relative/31a4fbbb62ea12b6d6cfcc22887cc1dd/raw/omegle%2520revealer.user.js |
-- Tested on PostgreSQL 15.1. | |
-- https://gist.github.com/srfrog/ef8c9a3a4282b865fb93f429d671d63b | |
-- https://github.com/paralleldrive/cuid2 56c54483bd7d5dd12343211c14588265e00f0887 | |
CREATE SEQUENCE IF NOT EXISTS "cuid2_seq"; | |
CREATE OR REPLACE FUNCTION _counter() RETURNS VARCHAR AS $$ | |
DECLARE | |
val bigint; | |
BEGIN |
// ==UserScript== | |
// @name Disable regexr warnings | |
// @namespace relative | |
// @match https://www.regexr.com/* | |
// @match https://regexr.com/* | |
// @grant none | |
// @version 1.0 | |
// @author relative | |
// @description 8/25/2023, 5:17:18 PM | |
// @run-at document-idle |
// Loosely based upon example WebAssembly plugin in esbuild docs | |
// https://esbuild.github.io/plugins/#webassembly-plugin | |
const childProcess = require('child_process'), | |
path = require('path'), | |
util = require('util') | |
const execFile = util.promisify(childProcess.execFile) | |
const ErrorMatchRegex = /(?<path>.+?):(?<line>\d+):(?<col>\d+): (?<type>error|warning): (?<message>.+)/i, |