Skip to content
View DoriDoro's full-sized avatar

Block or report DoriDoro

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
DoriDoro/README.md
class DoriDoro:
    """
    Backend-focused Python Developer with strong ownership over
    Django projects, architecture, and data modeling.
    """

    def __init__(self):
        self.fullname = "Dorothea Reher"
        self.position = "Backend Python Developer "
        self.company = "DeepOpinion (IFOP Group)"

        self.links = {
            "LinkedIn": "https://www.linkedin.com/in/dorothea-reher/",
            "Portfolio": "https://dorothea-reher.com/",
        }

        self.stack = {
            "backend": ["Python", "Django", "Django REST Framework"],
            "databases": {
                "development": ["SQLite"],
                "production": ["PostgreSQL", "Supabase"],
            },
            "deployment": ["AWS", "Render"],
            "tools": [
                "Git",
                "GitHub",
                "GitHub Actions",
                "Docker",
                "Sentry",
            ],
            "frontend": {
                "experience": ["Bootstrap"],
                "collaboration": ["frontend developer", "AI department"],
            },
            "os": ["Linux", "WSL"],
            "editors": ["VS Code"],
        }

        self.responsibilities = [
            "Sole backend developer on multiple projects",
            "Designing backend architecture and database schemas",
            "Building and maintaining REST APIs",
            "Translating business and data requirements into Django models",
            "Collaborating with AI-focused teammates and frontend developers",
            "Owning a full backend module within larger projects",
        ]

        self.skills_and_practices = [
            "Strong debugging and problem-solving skills",
            "Performance optimization (select_related, prefetch_related, annotate)",
            "Proposing and justifying technical solutions",
            "Code ownership with iterative review and demo-based feedback",
            "Manual and Django TestCase-based testing (expanding test coverage)",
        ]

        self.preferences = {
            "likes": ["Backend development", "Data modeling", "Clean architecture"],
            "less_likes": ["Heavy frontend work", "JavaScript"],
        }

        self.future = [
            "Growing backend responsibilities as the team scales",
            "Potential mentoring as the team doubles",
            "Improving testing strategy and backend robustness",
        ]

    def __str__(self):
        return f"{self.fullname} | {self.position} @ {self.company}"


if __name__ == "__main__":
    me = DoriDoro()
    print(me)

Top Langs


Popular repositories Loading

  1. DoriDoro DoriDoro Public

    Config files for my GitHub profile.

  2. django_portfolio django_portfolio Public

    Django Portfolio - Collection of my projects

    Python

  3. felix-blog felix-blog Public

    Blog project - Django

    Python