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
https://calendar.app.google/JHPL3VvzTtHeK3Kr7 |
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
import cloudinary | |
import cloudinary.api | |
import cloudinary.uploader | |
# Configure Cloudinary with your credentials | |
cloudinary.config( | |
cloud_name="", | |
api_key="", | |
api_secret="", | |
) |
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 | |
# Ensure script runs as root | |
if [[ $EUID -ne 0 ]]; then | |
echo "❌ This script must be run as root. Try: sudo $0" | |
exit 1 | |
fi | |
# Enable tab completion for file paths | |
iso_path="" |
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
-- CREATE TABLE | |
--@block | |
CREATE TABLE IF NOT EXISTS users( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
name VARCHAR(255) NOT NULL UNIQUE, | |
age INT NOT NULL, | |
password VARCHAR(255) NOT NULL | |
); | |
-- INSERT DATA | |
--@block |
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 | |
# Step 1: Install required dependencies | |
echo "Installing required packages..." | |
sudo apt update | |
sudo apt install -y openjdk-11-jdk wget curl unzip cmake ninja-build | |
# Step 2: Install Android SDK Command-Line Tools | |
echo "Installing Android SDK Command-Line Tools..." |
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
package main | |
import ( | |
"bufio" | |
"encoding/json" | |
"errors" | |
"fmt" | |
"log" | |
"os" | |
"regexp" |
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
# sample dockerfile for a flask application | |
FROM python:3.10-slim | |
ENV PYTHONDONTWRITEBYTECODE=1 | |
ENV PYTHONUNBUFFERED=1 | |
WORKDIR /app |