Cyber security–oriented dev from Missouri focused on networking, systems, and writing code that actually supports both.
These days the priority is security, programming, and system operations; Discord bot work is part of the past but still in the toolbox.
- Focused on the networking side: traffic, routing, segmentation, and basic hardening.
- Comfortable with logs, basic SIEM-style workflows, and monitoring/alerting to spot issues early.
- Use Linux as the main platform for labs, services, and security tooling.
- Main languages: Python, C, C++, C#.
- Also familiar with JavaScript, HTML, CSS, and general web stack basics.
- Use Python for automation/tooling and C-family languages for lower-level or performance-sensitive work.
- Daily driver: Linux, managing services, configs, and updates.
- Use Docker, basic CI/CD-style workflows, and scripting to keep things repeatable.
- Care about uptime, monitoring, and keeping infra understandable, not just “working”.
from datetime import datetime
from typing import override
class Developer:
def __init__(self) -> None:
self.name: str = "RejectModders"
self.role: str = "Cyber Security | Programmer | System Ops"
self.location: str = "Missouri, USA"
self.passions: list[str] = [
"Network & infrastructure security",
"Linux & system operations",
"Automation & tooling in Python",
"Low-level work with C / C++ / C#",
"Breaking, fixing, and hardening systems",
]
self.learning: list[str] = ["Advanced networking", "System Architecture"]
self.projects: dict[str, str | dict[str, str]] = {
"main": "https://github.com/RejectModders",
"description": "Personal projects around security, networking, bots, and tooling",
"looking_for": "People who like labs, logs, and late-night debugging",
}
self.coding_since: int = 2020
self.experience_years: int = datetime.now().year - self.coding_since
self.fun_fact: str = "I spend way too much time watching cop videos 🚓"
def technologies_and_skills(self) -> dict[str, list[str]]:
return {
"frontend": ["HTML", "CSS", "JavaScript", "React (learning)"],
"backend": ["Python", "Node.js", "FastAPI", "Express.js"],
"databases": ["PostgreSQL", "SQLite", "MongoDB", "Redis"],
"devops": ["Docker", "CI/CD", "AWS (basics)", "Networking"],
"tools": ["Git", "PyCharm", "WebStorm", "VS Code", "GitHub"],
"interests": ["Security", "System Design", "Automation", "Tooling"],
}
def current_focus(self) -> list[str]:
return [
"Building a strong cyber security career",
"Improving networking and Linux skills",
"Writing useful tools and automation",
"Hardening and monitoring services",
]
def daily_routine(self) -> list[str]:
return [
"☕ Coffee",
"💻 Code / labs",
"📡 Logs & monitoring",
"🔐 Break, fix, and harden",
"🌱 Learn something new",
]
@override
def __str__(self) -> str:
years = (
f"{self.experience_years} years"
if self.experience_years
else "< 1 year"
)
skills = self.technologies_and_skills()
passions_str = (
"🔥 Passions:\n - " + "\n - ".join(self.passions) + "\n\n"
)
learning_str = (
"🌱 Currently Learning:\n - "
+ "\n - ".join(self.learning)
+ "\n\n"
)
focus_str = (
"🎯 Current Focus:\n - "
+ "\n - ".join(self.current_focus())
+ "\n\n"
)
routine_str = (
"⏱️ Daily Routine:\n - "
+ "\n - ".join(self.daily_routine())
+ "\n\n"
)
return (
f"👤 {self.name}\n"
f"🚀 {self.role}\n"
f"📍 {self.location}\n\n"
f"💻 Experience: {years} since {self.coding_since}\n\n"
+ passions_str
+ learning_str
+ f"🛠️ Tech Stack:\n"
f" Frontend: {', '.join(skills['frontend'])}\n"
f" Backend: {', '.join(skills['backend'])}\n"
f" Databases: {', '.join(skills['databases'])}\n"
f" DevOps: {', '.join(skills['devops'])}\n"
f" Tools: {', '.join(skills['tools'])}\n\n"
+ focus_str
+ routine_str
+ f"🌐 Projects:\n"
f" Main: {self.projects['main']}\n"
f" Description: {self.projects['description']}\n"
f" Looking For: {self.projects['looking_for']}\n\n"
f"⚡ Fun Fact: {self.fun_fact}"
)
reject = Developer()
print(reject)To revolutionize how communities interact on Discord by creating intuitive, powerful tools that enhance connection and engagement.
Developing high-quality Discord bots and libraries that solve real problems for server owners and community managers while maintaining excellent user experience.
- Innovation: Constantly exploring new ideas and approaches
- Quality: Ensuring reliable, well-tested code
- Community: Building tools with real users in mind
- Transparency: Open about development processes and decisions
| 🚀 Active Projects (Then) | 🏆 Milestones |
|---|---|
|
|




