Skip to content

Instantly share code, notes, and snippets.

View exceptionpilot's full-sized avatar
💭
to blessed too be stressed.

exceptionpilot exceptionpilot

💭
to blessed too be stressed.
View GitHub Profile
function generateWeirdUniqueID(length) {
const chars =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+=-[]{}|;:,.<>?';
const replacements = {
w: ['w', 'W', 'vv'],
e: ['e', '3', '€'],
i: ['i', '1', '!', '|'],
r: ['r', 'R', '®'],
d: ['d', 'D'],
};
//
// TabBar.swift
// WhatsInMyBag
//
// Created by Sebastian Zängler on 21.04.23.
//
import SwiftUI
struct TabBar: View {