This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://unicode.org/Public/UNIDATA/emoji/emoji-data.txt | |
function printRange(start, end) { | |
for (let codePoint = start; codePoint <= end; codePoint++) { | |
const emoji = String.fromCodePoint(codePoint) | |
console.log(emoji) | |
} | |
} | |
printRange(0x23, 0x23) // (1) # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Better Directus | |
// @namespace http://tampermonkey.net/ | |
// @version 2023-12-20 | |
// @description try to take over the world! | |
// @author You | |
// @match https://gleam.directus.app/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=directus.app | |
// @grant none | |
// ==/UserScript== |