Skip to content

Instantly share code, notes, and snippets.

View TheOnlyOrigin's full-sized avatar
🎯
Focusing

The Origin TheOnlyOrigin

🎯
Focusing
View GitHub Profile
@TheOnlyOrigin
TheOnlyOrigin / .html
Created May 18, 2025 17:39
Visual Studios of Sandra
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank">
Microsoft URL for Sandra
</a>
@TheOnlyOrigin
TheOnlyOrigin / .html
Last active May 18, 2025 17:42
Sandra
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank">
Visual Studios for Sandra
</a>
@TheOnlyOrigin
TheOnlyOrigin / .html
Created May 18, 2025 17:33
VIsual Studios URL for Sandra
<a href="https://effective-disco-g4qwrwvvvvpvc9j7q.github.dev" target="_blank">
Microsoft URL for Sandra
</a>
@TheOnlyOrigin
TheOnlyOrigin / ai_pipeline_setup.sh
Created May 12, 2025 13:15
Secure AI Pipeline Deployment on EC2
#!/bin/bash
# Step 1: Launch a New EC2 Instance (if not already done)
echo "Launching a new EC2 instance (if not done already)..."
# Go to AWS EC2 Dashboard and launch an instance with Ubuntu 22.04 LTS
# Step 2: SSH into Your EC2 Instance
echo "SSH into the EC2 instance using the key pair..."
# Use the command below to SSH into the EC2 instance (adjust path and IP)
# ssh -i ~/path/to/AI-pipeline-key.pem ubuntu@<your-ec2-public-ip>
@TheOnlyOrigin
TheOnlyOrigin / gist:785953498de115ddb1560cd38a526bc6
Created May 12, 2025 11:57
AI Code Execution Pipeline - Security & Reliability Improvements
#!/bin/bash
# Step 1: Clean previous setup and remove Docker containers, images, and volumes
echo "Cleaning previous Docker containers, images, and volumes..."
cd ~/ai_pipeline
sudo docker-compose down -v --rmi all --remove-orphans
sudo docker system prune -af
# Step 2: Install necessary dependencies
echo "Installing necessary packages..."