const magic = () => { return "✨"; };
// Building the future // one commit at a time
SD

Simen Daehlin

Senior Full-Stack Developer
Problem Solver

I'm a product-driven developer who loves solving complex problems with clean, scalable code. Every bug is a puzzle, every challenge is an opportunity to build something better.

14+
Years Experience
1000+
Problems Solved
100+
Students Mentored
25+
Technologies

Real Code, Real Impact

These aren't theoretical examples - they're real optimizations and solutions from my actual work. Each one solved a specific business problem with measurable results.

Django Performance Optimization

Python

Enterprise platform optimization - reduced query time by 85%

The Problem

Database queries were taking 2-3 seconds on the user dashboard with 100K+ posts

My Solution

Optimized Django ORM queries with select_related and prefetch_related

Before (Problematic)

before.py
Slow & Problematic
def get_user_posts(user_id):
    posts = Post.objects.filter(author_id=user_id)
    for post in posts:
        print(f"Author: {post.author.name}")
        print(f"Comments: {post.comments.count()}")
    return posts

After (Optimized)

after.py
Fast & Reliable
def get_user_posts(user_id):
    return Post.objects.filter(author_id=user_id)\
        .select_related('author')\
        .prefetch_related('comments')\
        .order_by('-created_at')

Measured Results

85% faster
Query Time
2.3s0.35s
98% reduction
Database Hits
201 queries3 queries
73% less
Memory Usage
45MB12MB

How We Measured

Measured with Django Debug Toolbar and production monitoring

Real-World Context

This optimization was critical for platform stability with 100K+ posts

Proven Track Record

These examples represent real work from my career - not theoretical code samples. Each optimization solved a specific business problem and delivered measurable value to the companies I've worked with.

Working With Me

I'm the senior developer who makes your team stronger. Here's what colleagues say it's actually like to work with me every day.

What's it like working with me day-to-day?

The teammate who makes your workday better

🔍When you're stuck on a tricky bug

"I'm the person who says 'Let's figure this out together' and actually means it. I love debugging - it's like solving puzzles. We'll pair up, I'll ask good questions, and we'll get to the bottom of it."

What this shows about me:

Curious and patient - I genuinely enjoy the detective work

What teammates say:
"Always up for pairing"
"Asks great questions"
"Actually cares about the team"
"Gets stuff done"
Want me on your team?

I'm looking for a permanent role where I can grow with a great team and build something meaningful together.

Let's Talk

The Bottom Line

I'm not just looking for a job - I'm looking for a team where I can make a real impact. I want to be the developer you're excited to work with, the one who makes hard problems feel manageable, and the teammate you can't imagine losing.

Leadership Experience

Throughout my 14+ year career, I've built high-performing teams, mentored developers, and led technical transformations that deliver measurable results.

10+
Team Members Managed
Led teams across multiple companies
68%
Deployment Time Reduction
Through CI/CD optimization
100+
Students Mentored
At Code Institute since 2018
9 Weeks
Frontend Transformation
Legacy React to Next.js 15

Technical Team Leadership

Led a 5-person backend development team, providing technical task breakdown, architectural guidance, and collaborating with Principal DevOps engineers on platform-level initiatives.

Impact:
Co-architected and led implementation of a new, highly stable and scalable platform

Building Engineering Teams

As the first technical hire, I built and led a development team of 5 developers, defined the initial tech stack and technical vision, and spearheaded recruitment and onboarding.

Impact:
Established the technical foundation for the entire platform from the ground up

Developer Mentorship & Growth

Mentored junior developers through targeted cross-skilling in TypeScript and Next.js, providing technical guidance and constructive code reviews that led to career advancement.

Impact:
Played a key role in a junior developer's promotion to Mid-Level

Process Automation & Efficiency

Identified inefficient manual processes and built automation tools, including a Node.js CLI that streamlined developer onboarding from a week-long process to just hours.

Impact:
Reduced setup time from 5 days to approximately 3 hours

Looking for Technical Leadership?

With experience leading teams and mentoring developers across multiple companies, I bring a proven track record of building high-performing engineering teams.

Professional Experience

I've worked with diverse organizations, from startups to established companies, delivering technical excellence and leadership.

Frontend Transformation

Led complete frontend modernization for photo platform

Next.js 15 migration in 9 weeks

Solutions Engineering

Created developer tools that became widely adopted

Docker CLI tool with 50K+ views

Squad Leadership

Technical leadership during platform crisis

Led team of 5 backend developers

Team Building

Established technical foundation from ground up

Built team as first technical hire

100+
Students Mentored
68%
Deployment Time Reduction
50K+
Blog Post Views

What Colleagues Say

Feedback from the people I've worked with throughout my career.

"Simen's transformation of our frontend was incredible. Not only did he deliver ahead of schedule, but he also mentored our team and established processes that continue to benefit us today."

PM
Product Manager
Product Lead
ClickASnap

"Simen's Docker CLI tool became an essential part of our developer toolkit. His technical writing and community engagement set the standard for our team."

EM
Engineering Manager
Technical Lead
Strapi

"Simen's leadership during our platform crisis was exceptional. He not only solved the technical challenges but also kept the team motivated and productive throughout the migration."

DE
DevOps Engineer
Principal Engineer
Virgin Media

Ready to Hire?

I'm available for senior engineering roles and technical leadership positions. Let's discuss how I can help your team succeed.

Available immediately
Remote or hybrid
Competitive rates

Prefer email? Reach me at hello@simendaehlin.com

Usually respond within 4 hours during business hours