Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added IMG_4619.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
187 changes: 187 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
<p align="center">
<img src="https://i.imgur.com/4pXa9Sy.jpg" width="200" />
</p>
☕ Coffee | 🌐 Networking | 🔐 Cybersecurity | 🚀 IT Careers
</p>

---

## 💻 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

<p align="center">
<a href="https://www.youtube.com/@NetworkChuck">
<img src="https://img.shields.io/badge/YouTube-NetworkChuck-FF0000?style=for-the-badge&logo=youtube&logoColor=white" />
</a>
<a href="https://networkchuck.com">
<img src="https://img.shields.io/badge/Website-networkchuck.com-00FFB3?style=for-the-badge&logo=google-chrome&logoColor=black" />
</a>
</p>

---

## 🧪 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

![Linux](https://img.shields.io/badge/Linux-000?style=for-the-badge\&logo=linux)
![Docker](https://img.shields.io/badge/Docker-000?style=for-the-badge\&logo=docker)
![Wireshark](https://img.shields.io/badge/Wireshark-000?style=for-the-badge\&logo=wireshark)
![Kali](https://img.shields.io/badge/Kali-000?style=for-the-badge\&logo=kalilinux)
![AWS](https://img.shields.io/badge/AWS-000?style=for-the-badge\&logo=amazonaws)

---

## 📣 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 ☕
15 changes: 15 additions & 0 deletions Skills.sh
Original file line number Diff line number Diff line change
@@ -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