Install iTerm2
Install zsh shell
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Install Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
0xE900c79c25A67B0f31AA5C1Afd84DF51FD702F18 |
0xE900c79c25A67B0f31AA5C1Afd84DF51FD702F18 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" | |
This script is used to backup and restore RocksDB database instances | |
Example: | |
$ python3 backup.py backup ./my_live_db ./backup/ | |
$ python3 backup.py restore ./backup ./my_live_db | |
""" |
model User { | |
id String @id @unique @default(cuid()) | |
createdAt DateTime @default(now()) | |
updatedAt DateTime @default(now()) @updatedAt | |
name String? | |
email String? @unique | |
emailVerified DateTime? | |
image String? | |
role Role @default(USER) |
declare module 'lucide-react' { | |
export * from 'lucide-react/dist/lucide-react.suffixed' | |
} |