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
#!/bin/bash | |
set -e | |
echo "🚨 Stopping and removing existing MariaDB..." | |
sudo systemctl stop mariadb || true | |
sudo apt remove --purge mariadb-server mariadb-client mariadb-common mariadb-server-core-* mariadb-client-core-* -y | |
sudo apt autoremove -y | |
sudo apt autoclean -y |
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
{ | |
"files.autoSave": "onFocusChange", | |
"editor.fontFamily": "Consolas, 'MesloLGS Nerd Font', monospace", | |
"terminal.integrated.fontFamily": "'MesloLGS Nerd Font'", | |
"terminal.integrated.fontSize": 13, | |
"editor.defaultFormatter": "ms-python.black-formatter", | |
"[json]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, |
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
#!/bin/bash | |
for app in "${apps_with_git[@]}"; do | |
echo "Checking branch in $app..." | |
git -C "$app" branch --show-current | |
done |
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
import React, { useEffect, useState } from 'react'; | |
import '../../css/tailwind.css'; | |
import Dashboard from '@/components/Dashboard'; | |
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; | |
const queryClient = new QueryClient(); | |
export function App() { | |
const [theme, setTheme] = useState('light'); | |
OlderNewer