Skip to content

Instantly share code, notes, and snippets.

View xanderberkein's full-sized avatar

Xander Berkein xanderberkein

View GitHub Profile
{
"version": 0.6,
"generator": "Overpass API 0.7.62.8 e802775f",
"osm3s": {
"timestamp_osm_base": "2025-09-24T13:38:15Z",
"timestamp_areas_base": "2025-09-24T09:15:14Z",
"copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."
},
"elements": [
import '@johnlindquist/kit';
import { Choice } from '@johnlindquist/kit';
import emojiJson from 'emojilib' assert { type: 'json' };
import unicodeEmojiJson from 'unicode-emoji-json' assert { type: 'json' };
import Fuse from 'fuse.js';
type UnicodeEmoji = {
name: string;
slug: string;
group: string;
// Name: ULID utils
// Description: Generate and convert ULIDs
// Shortcode: u
import '@johnlindquist/kit';
import { Choice } from '@johnlindquist/kit';
import { decodeTime, isValid, ulid, ulidToUUID, uuidToULID } from 'ulidx';
const ulidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/;