This file contains hidden or 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
// | |
// TabBar.swift | |
// WhatsInMyBag | |
// | |
// Created by Sebastian Zängler on 21.04.23. | |
// | |
import SwiftUI | |
struct TabBar: View { |
This file contains hidden or 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
function generateWeirdUniqueID(length) { | |
const chars = | |
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+=-[]{}|;:,.<>?'; | |
const replacements = { | |
w: ['w', 'W', 'vv'], | |
e: ['e', '3', '€'], | |
i: ['i', '1', '!', '|'], | |
r: ['r', 'R', '®'], | |
d: ['d', 'D'], | |
}; |