Just a guy from Missouri who loves building Discord bots and hanging out with cool people online π
π Current Projects & Milestones
- Disutils Team β Some awesome people making Discord better GitHub
- Disckit β A package that makes Discord.py bot development suck less GitHub
- Ignited Hosting β Fast servers without the BS Website
- π My bots are now in 600+ servers (still can't believe it!)
- π€ Built 2 bots that people actually use
- π Made it to Top.gg front page (for a bit, but hey, it counts!)
class Developer:
def __init__(self) -> None:
self.name = "RejectModders"
self.role = "Discord Dev & Disutils Owner"
self.location = "Missouri"
self.passions = ["Building Discord Bots", "Gaming", "Friends"]
self.learning = ["C#", "C++"]
self.projects = {
"main": "https://disutils.com",
"description": "A dedicated group of individuals committed to enhancing and simplifying the Discord experience for all users.",
"looking_for": "Beta Testers & Community Members!",
}
self.fun_fact = "I spend way too much time watching cop videos π"
def technologies_and_skills(self) -> dict:
return {
"frontend": ["HTML", "CSS", "JavaScript"],
"backend": ["Python", "Node.js", "FastAPI", "Express.js"],
"databases": ["PostgreSQL", "SQLite", "MongoDB", "MySQL"],
"tools": ["Docker", "Git", "PyCharm", "WebStorm"],
"interests": ["Bot Development", "API Design", "Coding"]
}
def current_focus(self) -> list[str]:
return [
"Scaling Disutils",
"Building Amazing Communities",
"Learning New Technologies",
]
def daily_routine(self) -> list[str]:
return ["Code", "Coffee", "Community", "Repeat"]
def __str__(self) -> str:
return (
f"Name: {self.name}\n"
f"Role: {self.role}\n"
f"Location: {self.location}\n"
f"Passions: {', '.join(self.passions)}\n"
f"Learning: {', '.join(self.learning)}\n"
f"Projects: {self.projects}\n"
f"Fun Fact: {self.fun_fact}\n"
f"Current Focus: {', '.join(self.current_focus())}\n"
f"Daily Routine: {', '.join(self.daily_routine())}"
)
reject = Developer()
print(reject)