diff --git a/IMG_4619.jpeg b/IMG_4619.jpeg
new file mode 100644
index 0000000..48bc7bc
Binary files /dev/null and b/IMG_4619.jpeg differ
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5780f69
--- /dev/null
+++ b/README.md
@@ -0,0 +1,187 @@
+
+
+
+ โ Coffee | ๐ Networking | ๐ Cybersecurity | ๐ IT Careers
+
+
+---
+
+## ๐ป whoami
+
+```bash
+$ whoami
+networkchuck
+
+$ uptime
+15+ years of breaking and fixing tech
+
+$ echo $MISSION
+"Teach networking, hacking, and IT the fun way"
+````
+
+---
+
+## ๐ฅ Learn With Me
+
+
+
+
+
+
+
+
+
+
+---
+
+## ๐งช lab-status
+
+```bash
+$ systemctl status homelab
+
+โ homelab.service - Chuck's Chaos Lab
+ Loaded: loaded (/etc/systemd/system/homelab.service)
+ Active: active (running) since forever โ
+
+$ docker ps
+CONTAINER ID NAME STATUS
+a1b2c3d4 kali-linux Up 24 hours
+b2c3d4e5 metasploitable Vulnerable ๐
+c3d4e5f6 nginx-lab Running
+```
+
+---
+
+## ๐งช My Lab Setup
+
+# โ Powered Homelab
+
+๐ฅ๏ธ Hardware:
+- Custom PC (lots of RAM, never enough)
+- Raspberry Pi cluster
+- Old laptops turned into servers
+
+๐ป Virtualization:
+- VMware / VirtualBox
+- Docker containers everywhere
+
+๐ Networking:
+- pfSense firewall
+- Managed switch (VLANs for days)
+- Wireshark always running ๐
+
+๐ Security Lab:
+- Kali Linux
+- Metasploitable
+- Hack The Box
+
+โ๏ธ Cloud:
+- AWS playground
+- Azure experiments
+
+โ Fuel Source:
+- Coffee machine (critical infrastructure)
+```
+
+---
+
+## ๐ network-scan
+
+```bash
+$ nmap -A 192.168.1.0/24
+
+Starting Nmap...
+Host: 192.168.1.1 (Router)
+Host: 192.168.1.10 (Lab Server)
+Host: 192.168.1.50 (Unknown ๐)
+
+$ tcpdump -i eth0
+Listening... (probably too much traffic again)
+```
+
+---
+
+## ๐ skills.sh
+
+```bash
+$ cat skills.sh
+
+#!/bin/bash
+
+skills=(
+ "Networking (Cisco, TCP/IP)"
+ "Cybersecurity (Kali, Nmap)"
+ "Linux & Servers"
+ "Docker & Virtualization"
+ "Cloud (AWS/Azure)"
+)
+
+for skill in "${skills[@]}"; do
+ echo "[โ] $skill"
+done
+```
+
+---
+
+## โ coffee-monitor
+
+```bash
+$ coffee --status
+
+[โโโโโโโโโโ] 100% FULL
+System performance: OPTIMAL
+Debugging ability: MAX
+
+$ coffee --consume
+
+โ gulp... gulp...
+[โโโโโโโโโโ] 60%
+
+Warning: Refill required soon โ ๏ธ
+```
+
+---
+
+## ๐ projects.log
+
+```bash
+$ tail -f projects.log
+
+[+] Building networking labs
+[+] Teaching IT on YouTube
+[+] Breaking stuff (on purpose)
+[+] Helping people get into tech
+```
+
+---
+
+## ๐ Tech Stack
+
+
+
+
+
+
+
+---
+
+## ๐ฃ Connect With Me
+
+* ๐ฅ YouTube: [https://www.youtube.com/@NetworkChuck](https://www.youtube.com/@NetworkChuck)
+* ๐ Website: [https://networkchuck.com](https://networkchuck.com)
+* โ Coffee: [https://store.networkchuck.com](https://store.networkchuck.com)
+
+---
+
+## โ ๏ธ Warning
+
+```bash
+This lab may break at any time.
+Have coffee ready โ
+```
+
+---
+
+## ๐ Motto
+
+> Keep hacking ethical of course, keep learning, and drink more coffee โ
diff --git a/Skills.sh b/Skills.sh
new file mode 100644
index 0000000..ec0db6e
--- /dev/null
+++ b/Skills.sh
@@ -0,0 +1,15 @@
+$ cat skills.sh
+
+#!/bin/bash
+
+skills=(
+ "Networking (Cisco, TCP/IP)"
+ "Cybersecurity (Kali, Nmap)"
+ "Linux & Servers"
+ "Docker & Virtualization"
+ "Cloud (AWS/Azure)"
+)
+
+for skill in "${skills[@]}"; do
+ echo "[โ] $skill"
+done