<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Reme Le Hane</title>
    <description>The latest articles on DEV Community by Reme Le Hane (@remejuan).</description>
    <link>https://dev.to/remejuan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F37853%2F891ff6b2-311d-4bb9-9c1e-c6bd41443142.png</url>
      <title>DEV Community: Reme Le Hane</title>
      <link>https://dev.to/remejuan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/remejuan"/>
    <language>en</language>
    <item>
      <title>Three AI Agents, One Spec</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 03 Mar 2026 08:56:00 +0000</pubDate>
      <link>https://dev.to/remejuan/three-ai-agents-one-spec-eog</link>
      <guid>https://dev.to/remejuan/three-ai-agents-one-spec-eog</guid>
      <description>&lt;p&gt;There’s been a steady undercurrent of people switching tools lately. Copilot to Claude. Claude to something else. Codex quietly entering more workflows. A lot of confidence in different directions, often delivered with certainty.&lt;/p&gt;

&lt;p&gt;I had just signed up for Claude to evaluate whether it could realistically replace ChatGPT in my workflow. Copilot already lives inside my IDE and has been solid for a while. ChatGPT fills the thinking space outside it. Codex was new to me, and I hadn’t pushed it beyond small experiments. Rather than rely on opinions, I wanted to see how they behaved when given the same real problem.&lt;/p&gt;

&lt;p&gt;I took a feature from a production side project and gave the exact same specification to all three. No prompt tuning between runs. No follow-up corrections. Just the same instructions, copied and pasted.&lt;/p&gt;

&lt;p&gt;The project itself isn’t the focus, but for context it’s a 3D print cost calculator that’s been live for some time. The feature came directly from user feedback: support multiple materials in a single calculation.&lt;/p&gt;

&lt;p&gt;Modern 3D printers can switch between filament spools mid-print. That means a single object might use two or three different materials. From a costing perspective, the application can no longer assume one material per job. It needs to aggregate several weights, each with its own cost per kilogram, and still produce a stable total.&lt;/p&gt;

&lt;p&gt;Previously, the model was simple: one material, one weight. The new version required introducing a list of material usages, updating the UI to support adding and removing entries, migrating existing saved calculations so nothing broke, adjusting the cost engine to sum across usages, and updating exports and tests to reflect the change. It was a contained but multi-layered change, the kind that forces you to think about backward compatibility before aesthetics.&lt;/p&gt;

&lt;p&gt;All three tools produced coherent implementations. Nothing wildly off target. Nothing unusable. Each of them understood the structure of the problem and translated the specification into working code.&lt;/p&gt;

&lt;p&gt;There was one shared oversight. The feature was meant to be premium only, and none of them added any form of gating. That detail wasn’t in the instructions, so it never appeared in the output. It wasn’t dramatic or surprising, just a straightforward reminder that these systems implement what is written. Anything that lives in your head but not in the spec simply does not exist from their perspective.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Where They Diverged&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Claude wrote the most code and made the broadest structural changes. It introduced immutability into the data model and added supporting packages to enforce that pattern. It also flagged localisation concerns, something the others ignored, although the implementation itself only covered English, ignoring the other 9 languages. The overall feel was of an engineer who prefers improving the surrounding structure while adding the feature, even if that means expanding the footprint of the change.&lt;/p&gt;

&lt;p&gt;Copilot took a more conservative approach. It extended the existing structures rather than reshaping them and stayed close to established conventions in the project. The implementation felt incremental and aligned with what was already there. Tests were adjusted where necessary, but new work was ignored as far as testing was concerned.&lt;/p&gt;

&lt;p&gt;Codex landed somewhere between those two. Its structural footprint was closer to Copilot’s, but the feature felt more complete. The user flow around multiple materials was slightly cleaner, and the test coverage went beyond simply keeping the build green, it updated tests where necessary but also included test for the newly introduced business logic. It did not attempt to modernise the surrounding architecture, but it did seem to push the feature towards a finished state rather than a minimal extension.&lt;/p&gt;

&lt;p&gt;Claude also took noticeably longer to produce its output. Codex and Copilot completed within minutes of each other, while Claude took roughly twice as long. That difference did not materially change the evaluation, but it was visible when running the comparison side by side.&lt;/p&gt;

&lt;p&gt;What stood out over time was less about correctness and more about inclination. Each tool behaved like a different kind of engineer. One leaned towards structural refinement, one towards continuity, and one towards feature completeness. None of them had context about my longer-term intentions for the project, and none of them could weigh architectural disruption against speed of integration in the way a human maintainer does. They simply optimised within the boundaries of the instructions provided.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Decision
&lt;/h2&gt;

&lt;p&gt;In the end, I am not merging any of the branches as they stand. Codex is probably the closest to something I could integrate with minimal additional work, largely because its changes sit comfortably within the existing structure while still delivering a rounded implementation. Restoring a removed widget or adding premium gating is straightforward, and extending localisation properly is manageable. The path to integration feels shorter.&lt;/p&gt;

&lt;p&gt;But the final implementation will be selective. The strongest elements from each approach can be combined, and the business constraints that were never specified can be applied deliberately. That part still belongs to me.&lt;/p&gt;

&lt;p&gt;What this exercise clarified is not which tool is “best.” It is how differently they interpret the same constraints and where they naturally apply effort. Used in isolation, that bias might go unnoticed. Run in parallel, it becomes visible.&lt;/p&gt;

&lt;p&gt;That visibility is useful.&lt;/p&gt;

&lt;p&gt;Instead of choosing a single tool and treating it as the answer, there is value in letting them generate alternative implementations and then integrating intentionally. They can explore branches quickly. I remain responsible for coherence, consistency, and long-term direction.&lt;/p&gt;

&lt;p&gt;That division feels realistic.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>developertools</category>
      <category>softwareengineering</category>
      <category>aiassistants</category>
    </item>
    <item>
      <title>The Space Between Intention and Impact</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 07 Oct 2025 08:26:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-space-between-intention-and-impact-19g2</link>
      <guid>https://dev.to/remejuan/the-space-between-intention-and-impact-19g2</guid>
      <description>&lt;p&gt;It’s been said to me that at times my responses can come across as a “no” first-unintentionally, of course, but real all the same.&lt;/p&gt;

&lt;p&gt;Not long ago, someone on my team shared an idea they were exploring. I began with a caution, meaning to help them avoid a pitfall I’d learned the hard way. I followed up with suggestions and examples from my own experience. From my perspective, the conversation went smoothly. Only later did I learn, through someone else, that it hadn’t landed that way. They felt dismissed.&lt;/p&gt;

&lt;p&gt;That realisation surprised me. I had genuinely believed it was a supportive, collaborative discussion. The truth is, there’s a gap in my self-awareness-a blind spot around how my words or tone might shape someone else’s perception. My intention was to guide, but the impact was to discourage.&lt;/p&gt;

&lt;p&gt;I’ve been working to bridge that gap. Thinking has become my best tool so far-slowing down just long enough to consider how I begin a response, to pause before speaking, to ask a question instead of offering an answer. Curiosity softens the space where instinct once jumped in.&lt;/p&gt;

&lt;p&gt;Lately I’ve also started ending my days with a short “catalytic retro.” Ten to fifteen minutes to quietly revisit the day’s interactions and decisions, asking not just what went well but what landed wrong. Wins tend to speak for themselves. It’s the misses that offer the real insight, if you’re willing to see them.&lt;/p&gt;

&lt;p&gt;That small pause between intention and impact-that’s where growth lives.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: When Accountability Feels Like Blame&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>coachingculture</category>
      <category>selfawareness</category>
      <category>emotionalintelligence</category>
      <category>leadershipdevelopment</category>
    </item>
    <item>
      <title>The Weight of the First Word</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 30 Sep 2025 08:55:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-weight-of-the-first-word-41e8</link>
      <guid>https://dev.to/remejuan/the-weight-of-the-first-word-41e8</guid>
      <description>&lt;p&gt;The opening sentence of any message often carries more weight than everything that follows. I’ve learned this the hard way.&lt;/p&gt;

&lt;p&gt;Recently, a report shared something he wanted to pursue. I was supportive — I really was — but my first response came as a caution. By the time I circled back with encouragement, the damage was done. My intent was positive, but because I led with a warning, it landed as dismissive. If I had simply restructured the order, the conversation would have gone much differently.&lt;/p&gt;

&lt;p&gt;That first sentence doesn’t just start the conversation, it sets the emotional tone. In leadership, where words echo longer than we imagine, that opening matters.&lt;/p&gt;

&lt;p&gt;I’ve become more intentional in 1:1s. Mondays are blocked for them, and I build in prep time before each call. If I roll straight from deep work into a conversation, my attention is split. Reviewing notes and preparing a loose outline helps me switch context and center myself before we begin.&lt;/p&gt;

&lt;p&gt;But no matter how much you plan, conversations have a life of their own. You can only plan your side. A loose structure keeps things anchored, but flow makes it human. The art is knowing when to guide and when to let it breathe — and remembering that the very first thing you say will shape how the rest of it is received.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: The Space Between Intention and Impact&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>leadership</category>
      <category>communication</category>
      <category>feedback</category>
    </item>
    <item>
      <title>When Not Having the Answer Is the Answer</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 23 Sep 2025 08:30:00 +0000</pubDate>
      <link>https://dev.to/remejuan/when-not-having-the-answer-is-the-answer-15kj</link>
      <guid>https://dev.to/remejuan/when-not-having-the-answer-is-the-answer-15kj</guid>
      <description>&lt;p&gt;One of the things I’ve always been comfortable with is admitting when I don’t know something. To me, it’s one of the real distinctions between the more and less experienced engineers — and honestly, people in general.&lt;/p&gt;

&lt;p&gt;When you’re earlier in your career, there’s often a sense that you have to know, that asking questions risks exposing you. The irony is that admitting you don’t know and asking for help are both powerful strengths.&lt;/p&gt;

&lt;p&gt;The best conversations often start with not knowing. You either dive into a discussion that unpacks the problem or you step away to do some research on your own. Both paths are valuable. And when you admit you don’t know, you make space for others to do the same. You’re showing trust, and you’re inviting the so-called “stupid questions” that usually turn out to be the ones everyone was sitting on.&lt;/p&gt;

&lt;p&gt;That’s not to say I don’t have my moments of blurting out the first answer that comes to mind. I think fast, I talk fast, and I’ll sometimes start with a solution and work my way backwards. It can turn into a one-sided monologue if I’m not careful. Over time, though, I’ve learned to make a conscious effort to sit with the question instead.&lt;/p&gt;

&lt;p&gt;Silence can be uncomfortable, but it’s also a tool. It gives both people space to think. Sometimes the other person uses that pause to elaborate further, and suddenly the picture looks completely different than it did when I first thought of an answer.&lt;/p&gt;

&lt;p&gt;So when I don’t have the answer, or even when I think I do, I’ve learned that waiting — not rushing in to fill the gap — is often the best answer of all.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: The Weight of the First Word&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>leadershipdevelopment</category>
      <category>engineeringculture</category>
      <category>growthmindset</category>
    </item>
    <item>
      <title>The Courage to Let Silence Do the Work</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 16 Sep 2025 08:23:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-courage-to-let-silence-do-the-work-17aa</link>
      <guid>https://dev.to/remejuan/the-courage-to-let-silence-do-the-work-17aa</guid>
      <description>&lt;p&gt;Silence can feel heavier than words. In conversations, especially as a leader, there's an instinct to fill every gap, to keep things moving, to show that you're engaged. But I've learned the most valuable moments often come when I do the opposite-when I leave the space open.&lt;/p&gt;

&lt;p&gt;In my 1:1s, I try to pause before responding. It's not about waiting for my turn to speak, but about listening to understand, not just to reply. Sometimes that pause encourages the other person to keep talking, to elaborate in ways they might not have if I'd jumped in too quickly. Other times, it gives me the clarity to respond more thoughtfully-or even the courage to admit I need time before giving an answer.&lt;/p&gt;

&lt;p&gt;When I first joined Loop, someone pointed out that I had a habit of filling silence. Luckily, I caught that before I started running 1:1s with my team. Those meetings aren't meant for my voice to dominate. They're their time, their space. My role is to hold it, not to crowd it.&lt;/p&gt;

&lt;p&gt;As for interpreting silence, context matters. In deeper conversations-whether about growth, progression, or tough questions-silence usually means thought. It's the weight of someone considering their words, reflecting before speaking. I haven't yet experienced it as something negative. More often, it's the quiet before honesty.&lt;/p&gt;

&lt;p&gt;Silence doesn't need to be awkward. It can be an ally. The courage lies in resisting the urge to break it, and instead trusting what it makes possible.&lt;/p&gt;




&lt;p&gt;Next time: When Not Having the Answer Is the Answer&lt;/p&gt;

</description>
      <category>leadership</category>
      <category>activelistening</category>
      <category>growthmindset</category>
      <category>peoplefirst</category>
    </item>
    <item>
      <title>Guiding Without Owning</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Sun, 31 Aug 2025 08:35:00 +0000</pubDate>
      <link>https://dev.to/remejuan/guiding-without-owning-5lc</link>
      <guid>https://dev.to/remejuan/guiding-without-owning-5lc</guid>
      <description>&lt;p&gt;Ownership is powerful. In our team, we lean into it hard - minimal hand-holding, maximum space for people to make their own calls. Most of the time, it works beautifully. But there are edge cases where ownership slips into something else entirely.&lt;/p&gt;

&lt;p&gt;One former teammate stands out in my memory. Brilliant mind, but he often over-engineered his solutions. Feedback came late, after days of work, when the code had sprawled into hundreds of lines across dozens of files. What should have been a simple fix ballooned into a tangle of complexity that testing inevitably sent right back.&lt;/p&gt;

&lt;p&gt;As a lead, this was one of the hardest balancing acts I've faced. I could see where he was veering off course, and the urge to step in was strong. But my instinct is to guide through questions rather than directives. I know if I state an answer outright, my team tends to agree too quickly - and we lose the benefit of their independent thinking.&lt;/p&gt;

&lt;p&gt;Still, accountability doesn't vanish just because you believe in ownership. In one case, after we had already aligned on a simple plan, the “fix” returned days later as a massive rewrite that didn't even solve the root issue. At that point, I had to step in and block the work. He asked me, almost exasp“Whatd, “what do you want me to do?” Not the kind of moment any leader loves, but a reminder: guiding has limits. Sometimes, you have to draw a line.&lt;/p&gt;

&lt;p&gt;That tension is real. Letting people struggle long enough to learn, without letting the team or product suffer. Asking the better question, without abdicating your role. Ownership is a gift, but guidance is still a responsibility. The art is in knowing where one ends and the other must begin.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: The Courage to Let Silence Do the Work&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>leadership</category>
      <category>engineeringleadership</category>
      <category>teamgrowth</category>
      <category>mentorship</category>
    </item>
    <item>
      <title>How to Listen Without Fixing</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 26 Aug 2025 08:27:00 +0000</pubDate>
      <link>https://dev.to/remejuan/how-to-listen-without-fixing-4e7k</link>
      <guid>https://dev.to/remejuan/how-to-listen-without-fixing-4e7k</guid>
      <description>&lt;p&gt;I've always been a fixer. My instinct is to protect, to solve, to step in. A close friend once told me I have “White Knight Syndrome” - I never checked if that's really a thing, but it fits. At my core, I want to take away the struggle, to shield others from it.&lt;/p&gt;

&lt;p&gt;At the same time, I've always been a good listener. My instinct may be to fix, but I've learned over the years that listening doesn't have to mean acting. It doesn't have to mean rushing in with an answer.&lt;/p&gt;

&lt;p&gt;Working as a lead has sharpened this skill. Leadership has taught me the discipline of listening - not to respond, not to solve, but simply to hear and understand. And the more I've practiced it, the more I've realized something: fixing isn't always the solution.&lt;/p&gt;

&lt;p&gt;Listening creates space. It lets me sense when someone simply needs to be heard and when they truly need help. And even then, the best next step often isn't jumping in to fix. It's offering. It's asking. It's letting them decide if they want support, or if they just needed to let something out.&lt;/p&gt;

&lt;p&gt;This is where relationships matter most. Over time, you learn the difference between a quick vent and a real frustration that needs addressing. You start to see when your role is to clear the path and when it's to simply stand beside them while they walk it.&lt;/p&gt;

&lt;p&gt;As leaders, our job is to help our teams be at their best. Some obstacles are visible and easy to remove. Others only come out when someone feels safe enough to share. And in those moments, the best thing we can do is not to fix for them, but to help them fix for themselves. To guide them toward their own solution, to help them own it. Because that's where real growth happens.em toward their own solution, to help them own it. Because that's where real growth happens.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: Guiding Without Owning&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>leadershipgrowth</category>
      <category>activelistening</category>
      <category>teamculture</category>
      <category>peoplefirst</category>
    </item>
    <item>
      <title>The Subtle Art of Asking the Second Question</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 19 Aug 2025 08:04:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-subtle-art-of-asking-the-second-question-394n</link>
      <guid>https://dev.to/remejuan/the-subtle-art-of-asking-the-second-question-394n</guid>
      <description>&lt;p&gt;In 1:1s, whether with my reports or on the rare occasion with my own lead, I’ve noticed something: the safe answer.&lt;/p&gt;

&lt;p&gt;You know the one. It’s in response to “How are you doing?” It’s polite. Acceptable. Technically honest — yet designed to sidestep the real truth. I’ve given that answer myself more times than I can count.&lt;/p&gt;

&lt;p&gt;The thing is, it’s a perfectly fine question, but it’s also incredibly easy to answer without answering. Over time, once the relationship is built and trust is there, you can often skip straight to the second question. Especially when you can feel that something’s off.&lt;/p&gt;

&lt;p&gt;My go-to? A simple, “OK… so how are you really doing?”&lt;/p&gt;

&lt;p&gt;It’s not wildly different from the first question, but it carries weight. It signals that you’re paying attention, that you see past the surface, and that you actually care enough to ask again. Often, that’s when a short, guarded answer turns into a 5–10 minute conversation.&lt;/p&gt;

&lt;p&gt;It’s also a handy tool when you can sense there’s more to the story, but you don’t yet know enough to ask something more direct.&lt;/p&gt;

&lt;p&gt;I’ve been on the other side of it too. My lead has caught me in that safe-answer moment and asked the second question. Sometimes, to my frustration, because those are usually the moments I want to keep my cards close. But in hindsight, those were also the moments I needed that second question most.&lt;/p&gt;

&lt;p&gt;Sometimes the first question opens the door.&lt;/p&gt;

&lt;p&gt;The second question invites someone to step through it.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time:&lt;/strong&gt; How to Listen Without Fixing&lt;/p&gt;

</description>
      <category>leadershipdevelopment</category>
      <category>effectivecommunication</category>
      <category>activelistening</category>
    </item>
    <item>
      <title>How to Build Teams That Ask Questions Out Loud</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 12 Aug 2025 08:57:00 +0000</pubDate>
      <link>https://dev.to/remejuan/how-to-build-teams-that-ask-questions-out-loud-2nie</link>
      <guid>https://dev.to/remejuan/how-to-build-teams-that-ask-questions-out-loud-2nie</guid>
      <description>&lt;p&gt;A quiet team can feel safe on the surface — no conflict, no interruptions, no awkward moments. But here’s the problem: with a quiet team, you don’t know what you don’t know. When people keep thoughts in their heads, you can miss out on ideas, risks, and opportunities that could change everything.&lt;/p&gt;

&lt;p&gt;Some of the best shifts in perspective I’ve seen have come from what others might call “silly questions.” Even the silliest can spark curiosity, trigger a better solution, or help the group see something they’d missed entirely. But those moments only happen if the questions are spoken out loud.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why teams stay quiet&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;There are plenty of reasons people hesitate to speak up:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;They’re worried about looking unprepared.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;They don’t want to slow things down.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;They’re unsure if their idea is relevant.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;They simply aren’t used to open conversation.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’ve seen this play out firsthand. You ask a group-level question to a quiet team and get… nothing. But a few minutes later, you ask one person directly, and they talk for five minutes — sharing great feedback and fresh insights you would have never heard otherwise.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to get people talking&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The approach will depend on your team, but one of the fastest ways I’ve found to get ideas flowing is to start “picking” on people. Not in a hostile way, but intentionally choosing someone to respond. Start with someone you know will have an opinion — it gives the rest of the team a chance to think, and often sparks others to jump in.&lt;/p&gt;

&lt;p&gt;Even a simple open-ended question like “What are your thoughts?” works better when followed by “Alex, let’s start with you.” It removes the pressure of volunteering and instead gives permission to speak.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lead by example&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the most powerful ways to encourage questions is to ask them yourself — especially when you don’t know the answer. During one of my interviews for my current role, I was asked a technical question. I guessed, but made it clear it was a guess. When they told me I was wrong, I simply asked, “What’s the answer?”&lt;/p&gt;

&lt;p&gt;That moment mattered. It showed I was comfortable not knowing and more interested in learning than in pretending I knew everything. That’s the kind of behavior I want my team to feel safe modeling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Make it normal, not exceptional&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you only encourage questions during special “brainstorm sessions,” people will treat speaking up as an exception. If you do it in every stand-up, review, and retrospective, it becomes part of how the team works. The more normal it feels, the more people will share — and the less you’ll risk losing great ideas to silence.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: The Subtle Art of Asking the Second Question&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>leadershipdevelopment</category>
      <category>teamculture</category>
      <category>collaboration</category>
    </item>
    <item>
      <title>The Tradeoffs of Technical Ownership</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 05 Aug 2025 10:58:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-tradeoffs-of-technical-ownership-47dc</link>
      <guid>https://dev.to/remejuan/the-tradeoffs-of-technical-ownership-47dc</guid>
      <description>&lt;p&gt;Technical ownership sounds great on paper. It means someone cares. Someone is responsible. Someone knows the system inside out.&lt;/p&gt;

&lt;p&gt;But like most things in engineering, it comes with tradeoffs.&lt;/p&gt;

&lt;p&gt;At a previous company, I was the sole owner of two codebases. I'd been hired to rebuild the mobile app into a new framework-originally React-but after some digging, I realized that plan wasn't going to fly. The company pivoted to rebuilding the management console first and revisiting the app later. Eventually, both became my projects. From the ground up. Just me.&lt;/p&gt;

&lt;p&gt;It got to the point where, during a year-end company speech, the CTO half-joked:&lt;/p&gt;

&lt;p&gt;“If Reme gets hit by a bus, we're fucked.”&lt;/p&gt;

&lt;p&gt;Empowering, right?&lt;/p&gt;

&lt;p&gt;It's a strange kind of job security. When you're the only one who understands how things work, you carry a lot of influence. But you also carry a lot of weight. Every bug. Every outage. Every weird edge case in support. Yours. Even when you're not officially on support duty.&lt;/p&gt;

&lt;p&gt;Eventually we did hire additional engineers, but that shift came long after the systems had already been shaped by one person's habits, patterns, and shortcuts. That level of individual ownership is efficient in the short term, but risky in the long run.&lt;/p&gt;

&lt;p&gt;I've seen this play out in other teams and orgs too:&lt;/p&gt;

&lt;p&gt;A single person becomes the go-to. Sometimes they like it. Sometimes they hoard it.&lt;/p&gt;

&lt;p&gt;Other times, they're desperate to share it-but no one wants to learn. That's the real danger.&lt;/p&gt;

&lt;p&gt;Not just the infamous “bus scenario,” but the slow decay of team resilience and growth.&lt;/p&gt;

&lt;p&gt;When ownership becomes isolation, it becomes a bottleneck.&lt;/p&gt;

&lt;p&gt;The only strategy I've seen that actually works?&lt;/p&gt;

&lt;p&gt;The rest of the team has to care.&lt;/p&gt;

&lt;p&gt;Act like a team. Step in. Ask questions. Sit with the owner. Review the PRs. Break the silo intentionally.&lt;/p&gt;

&lt;p&gt;Yes, documentation helps. But it only gets you so far. A lot of the critical knowledge is “muscle memory” you don't even think to write down.&lt;/p&gt;

&lt;p&gt;I had a moment recently where someone posted a support screenshot. No context. No explanation. Just an error.&lt;/p&gt;

&lt;p&gt;But I knew what it was.&lt;/p&gt;

&lt;p&gt;A license error in the CI?&lt;/p&gt;

&lt;p&gt;That's the wrong environment secret getting pulled. I could trace it in my head without even opening the code.&lt;/p&gt;

&lt;p&gt;That's the kind of context you build over time. And the kind that's nearly impossible to transfer through a wiki page.&lt;/p&gt;

&lt;p&gt;Technical ownership is powerful.&lt;/p&gt;

&lt;p&gt;But without support and shared learning, it quietly becomes a liability.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: How to Build Teams That Ask Questions Out Loud&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>technicalownership</category>
      <category>engineeringleadership</category>
      <category>knowledgesharing</category>
    </item>
    <item>
      <title>Why Senior Engineers Don’t Need All the Answers</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 29 Jul 2025 08:25:00 +0000</pubDate>
      <link>https://dev.to/remejuan/why-senior-engineers-dont-need-all-the-answers-598d</link>
      <guid>https://dev.to/remejuan/why-senior-engineers-dont-need-all-the-answers-598d</guid>
      <description>&lt;p&gt;There's this quiet myth in engineering that once you hit “senior,” you'll just know. You'll have all the answers, solve problems on the fly, and be the go-to for anything and everything.&lt;/p&gt;

&lt;p&gt;But here's the truth I've come to learn: I often prefer not to know.&lt;/p&gt;

&lt;p&gt;And honestly, I think that's part of why I landed the job I have today.&lt;/p&gt;

&lt;p&gt;During my technical interview, I hit a question I didn't quite have the answer to. Or maybe I did, somewhere buried in memory, but it didn't feel familiar enough to stand by. So I said what I genuinely felt: “I don't know.” I took a guess, made it clear that it was a guess, and when it turned out to be wrong, I followed up with curiosity: “So what's the actual answer?” That moment, I believe, said more about how I work than any correct response could have.&lt;/p&gt;

&lt;p&gt;Over the years, I've come to value not knowing as a strength. Experience doesn't mean you know everything - it means you've learned how to navigate what you don't. And often, the best ideas, the biggest breakthroughs, and the real “senior” moments come not from brilliance, but from perspective.&lt;/p&gt;

&lt;p&gt;That's why I deeply believe there's no such thing as a stupid question. Some of the most “out there” suggestions have changed the entire trajectory of a project or exposed blind spots no one else saw. A half-baked idea can be the thing that nudges a good solution into a great one.&lt;/p&gt;

&lt;p&gt;I was lucky early in my career to work with leaders who reinforced this mindset. One of the best mentors I've had was obsessed with improvement. I'd complete a task, call him over, and the conversation wasn't “is it done?” It was: “how can we make it better?” That set a tone I still carry with me - not knowing isn't a failure, it's an invitation to explore.&lt;/p&gt;

&lt;p&gt;There's this quiet shift I've noticed that separates junior and intermediate engineers from senior and beyond. It's not the depth of knowledge, it's the comfort with not knowing. The humility to admit it. The willingness to figure it out with others.&lt;/p&gt;

&lt;p&gt;I don't recall explicitly mentoring someone on this, but I do talk about it. Just recently, a new team member shared their fear of sounding stupid. I reassured them that if they had a “stupid” question, it might be the best one we hear all day. I try to live that out too - I'll pitch an idea in a team session, then immediately be the first to tear it down. Because being wrong is fine. Ideas don't have egos. If it's a good idea, it'll hold. If not, we move on better informed.&lt;/p&gt;

&lt;p&gt;When it comes to giving answers, I try not to - at least not right away. I'll usually ask questions, try to guide a bit. That won't work for everyone, but personally, I learn better when nudged than when told. It just sticks more. There's something powerful in discovering a solution for yourself - you learn more, and you remember more. It becomes your insight, not just someone else's instruction.&lt;/p&gt;

&lt;p&gt;Being senior isn't about knowing everything. It's about knowing how to navigate what you don't.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: The Tradeoffs of Technical Ownership&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>engineeringleadership</category>
      <category>growthmindset</category>
      <category>teamculture</category>
      <category>seniorengineer</category>
    </item>
    <item>
      <title>The Problem with Perfect Engineers</title>
      <dc:creator>Reme Le Hane</dc:creator>
      <pubDate>Tue, 22 Jul 2025 08:13:00 +0000</pubDate>
      <link>https://dev.to/remejuan/the-problem-with-perfect-engineers-3jbm</link>
      <guid>https://dev.to/remejuan/the-problem-with-perfect-engineers-3jbm</guid>
      <description>&lt;p&gt;Every engineer has their perfectionist phase. I certainly did. There's a season early in your career where every line of code must be beautiful, every edge case handled, every abstraction future-proofed. That desire to do things “right” feels noble - but over time, experience teaches you that chasing perfection is often just a well-disguised form of avoidance.&lt;/p&gt;

&lt;p&gt;At some point you realize: perfection is the enemy of done.&lt;/p&gt;

&lt;p&gt;That doesn't mean we should write careless code. There's still pride in craftsmanship. But what shifts is your understanding of what done really means. You start seeing the bigger picture - that your work exists in a system with deadlines, dependencies, and a team relying on forward momentum. That no feature will ever be perfect the first time, or even the tenth.&lt;/p&gt;

&lt;p&gt;One of the best things about modern software is that it can change. We can patch. We can refactor. We can iterate. (The gaming industry might abuse this a bit - but that's a separate post.)&lt;/p&gt;

&lt;p&gt;I once worked with a CTO who, during a boardroom code review, threw a snippet onto the big screen and said, “Who wrote this crap?” Then he checked the git blame. “Oh. It was me. Moving along.”&lt;/p&gt;

&lt;p&gt;This was someone with over 40 years of experience, looking at something he wrote six months prior. That moment stuck with me. Even the most seasoned engineers look back on their work and cringe. Not because they were bad - but because they've grown.&lt;/p&gt;

&lt;p&gt;That's what makes perfectionism a trap. It assumes you'll have the clarity and knowledge today that only experience can give you tomorrow.&lt;/p&gt;

&lt;p&gt;Instead, I've come to embrace something more sustainable: progress with intent. A little bit better each time. There's a great blog post about applying the Boy Scout Rule to code - leave it better than you found it &lt;a href="https://dev.to/yeisoncruz16/the-boy-scout-rule-yes-it-applies-to-nodejs-too-11c1"&gt;LINK&lt;/a&gt;. That mindset lets you move, learn, and improve without getting stuck.&lt;/p&gt;

&lt;p&gt;In my own teams, I've learned that perfectionism usually shows up as work taking longer than expected. That doesn't always mean overengineering - sometimes it means someone's struggling and not speaking up. Either way, it's a cue to check in. Especially in remote teams, it's easy to miss the signs until someone's already deep in a rabbit hole.&lt;/p&gt;

&lt;p&gt;One thing that helps is writing. Documentation, planning, solution design - not as overhead, but as clarity. When we slow down enough to think clearly up front, we're less likely to drift later.&lt;/p&gt;

&lt;p&gt;At the end of the day, managing perfectionism is a skill - one we all have to learn. Sometimes we spot it in ourselves. Other times we need a nudge from a teammate or lead to help us zoom out. The goal isn't to lose that eye for quality - it's to make sure it serves momentum, not stalls it.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Next time: Why Senior Engineers Don’t Need All the Answers&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>techleadership</category>
      <category>overengineering</category>
      <category>codequality</category>
      <category>growthmindset</category>
    </item>
  </channel>
</rss>
