"A dedicated group of individuals committed to enhancing and simplifying the Discord experience for all users."
I'm a passionate Full Stack Developer from Missouri with a focus on creating tools that enhance community experiences. As the founder of Disutils, I'm dedicated to simplifying Discord development and building powerful, user-friendly applications.
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 | π Recent Milestones |
---|---|
|
|
from datetime import datetime
from typing import override
class Developer:
def __init__(self) -> None:
self.name: str = "RejectModders"
self.role: str = "Full Stack & Discord Developer | Disutils Founder"
self.location: str = "Missouri, USA"
self.passions: list[str] = [
"Building Discord Bots",
"Full Stack Development",
"Community Management",
"API Development",
"Gaming",
]
self.learning: list[str] = ["C#", "C++", "System Architecture"]
self.projects: dict[str, str | dict[str, str]] = {
"main": "https://disutils.com",
"description": "A dedicated ecosystem enhancing Discord experiences",
"looking_for": "Collaborators, Beta Testers & Community Members",
}
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": ["Full Stack Development", "Bot Development", "API Design", "UX", "Automation"],
}
def current_focus(self) -> list[str]:
return [
"Scaling Disutils Ecosystem",
"Full Stack Web Applications",
"Building Developer Communities",
"Advanced Discord Bot Features",
"Performance Optimization",
]
def daily_routine(self) -> list[str]:
return [
"β Coffee",
"π» Code",
"π₯ Community Management",
"π Iterate on Feedback",
"π± 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)