This file contains 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
#!/bin/bash | |
# add fish ppa | |
sudo apt-add-repository -y ppa:fish-shell/release-3 | |
sudo mkdir -p --mode=0755 /usr/share/keyrings | |
# vscode: | |
curl -fsSL "https://packages.microsoft.com/keys/microsoft.asc" | gpg --dearmor |\ |
This file contains 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
<?php | |
/** | |
* Script to fix namespaces in PHP files based on directory structure, | |
* with an option to ignore specific folders. | |
* How It Works: | |
* Ignored Folders: | |
* The $ignoredFolders array contains the names of folders to be skipped. | |
* The script checks if the current directory matches one of the ignored folder names and skips processing if it does. | |
* Customizable: |
This file contains 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
-- supabase/seed.sql | |
-- | |
-- create test users | |
INSERT INTO | |
auth.users ( | |
instance_id, | |
id, | |
aud, | |
role, | |
email, |