Skip to content

Instantly share code, notes, and snippets.

View nskazki's full-sized avatar
:shipit:
Working from home

Nikita Skazki nskazki

:shipit:
Working from home
  • Saint Petersburg
View GitHub Profile
// 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) #
// ==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==