<?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: Anderson Matheus Lemke</title>
    <description>The latest articles on DEV Community by Anderson Matheus Lemke (@matheuslemke).</description>
    <link>https://dev.to/matheuslemke</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%2F151895%2Fabed37c4-ab37-4dee-8ad9-d80299b1f37f.jpeg</url>
      <title>DEV Community: Anderson Matheus Lemke</title>
      <link>https://dev.to/matheuslemke</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matheuslemke"/>
    <language>en</language>
    <item>
      <title>Eisenhower Matrix: How to stop being a Firefighter and become a Strategist</title>
      <dc:creator>Anderson Matheus Lemke</dc:creator>
      <pubDate>Thu, 30 Jan 2025 21:41:48 +0000</pubDate>
      <link>https://dev.to/matheuslemke/eisenhower-matrix-how-to-stop-being-a-firefighter-and-become-a-strategist-bhk</link>
      <guid>https://dev.to/matheuslemke/eisenhower-matrix-how-to-stop-being-a-firefighter-and-become-a-strategist-bhk</guid>
      <description>&lt;p&gt;Hey dev! Tired of constantly putting out fires at work? That endless cycle of &lt;em&gt;"needed for yesterday"&lt;/em&gt;, meetings that should’ve been an email, and bugs that pop up just as you’re about to close VS Code (now it's Cursor)? &lt;strong&gt;Relax, you’re not alone.&lt;/strong&gt; The solution might lie in a tool created by a 1950s general (yes, Eisenhower). And no, this isn’t another boring productivity post. It’s about &lt;strong&gt;how to stop being a hostage to chaos and prioritize like a boss&lt;/strong&gt;.  &lt;/p&gt;




&lt;h2&gt;
  
  
  What’s the Eisenhower Matrix?
&lt;/h2&gt;

&lt;p&gt;The matrix is your &lt;strong&gt;&lt;code&gt;git rebase&lt;/code&gt; for life&lt;/strong&gt;: it helps organize tasks into 4 categories based on two criteria:  &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Is it important?&lt;/strong&gt; → Contributes to your &lt;em&gt;long-term goals&lt;/em&gt; (e.g., learning a new stack, refactoring legacy code).
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Is it urgent?&lt;/strong&gt; → Needs to be solved &lt;em&gt;right now&lt;/em&gt; (e.g., the client spammed Slack, the server crashed).
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Behold the &lt;strong&gt;magic matrix&lt;/strong&gt;:  &lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Urgent&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Not Urgent&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Important&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Quadrant 1&lt;/strong&gt; (🔥 Fire)&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Quadrant 2&lt;/strong&gt; (💎 Gold)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Not Important&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Quadrant 3&lt;/strong&gt; (🔔 Distraction)&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Quadrant 4&lt;/strong&gt; (☠️ Procrastination)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Let’s break this down with some examples!&lt;/p&gt;




&lt;h2&gt;
  
  
  Quadrant 1: The Fire 🔥 (Urgent + Important)
&lt;/h2&gt;

&lt;p&gt;These are &lt;strong&gt;legit emergencies&lt;/strong&gt;:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Production server throwing a &lt;code&gt;500 Internal Server Error&lt;/code&gt;.
&lt;/li&gt;
&lt;li&gt;Client found a critical bug in the feature you shipped yesterday.
&lt;/li&gt;
&lt;li&gt;Your manager asks you to present the sprint review in 10 minutes (and you haven’t opened PowerPoint yet).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to handle it?
&lt;/h3&gt;

&lt;p&gt;Do it immediately, but &lt;strong&gt;beware&lt;/strong&gt;: if you live here, your project is stuck in crisis mode. Like that team that uses &lt;code&gt;try-catch&lt;/code&gt; for everything but never prevents errors.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quadrant 2: The Gold 💎 (Not Urgent + Important)
&lt;/h2&gt;

&lt;p&gt;This is the &lt;strong&gt;secret sauce of productive devs&lt;/strong&gt;. These tasks don’t scream but level up your game:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Learning Docker to improve your deploys.&lt;/li&gt;
&lt;li&gt;Refactoring that component only you understand (before it becomes a nightmare).&lt;/li&gt;
&lt;li&gt;Taking a system architecture course to stop making headache-inducing decisions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why do devs ignore this?
&lt;/h3&gt;

&lt;p&gt;Because there’s no pressure. It’s easy to delay what’s important if no one’s breathing down your neck. But investing time here &lt;strong&gt;reduces fires in Quadrant 1&lt;/strong&gt;. It’s like writing tests: effort now, lifesaver later.  &lt;/p&gt;




&lt;h2&gt;
  
  
  Quadrant 3: The Distraction 🔔 (Urgent + Not Important)
&lt;/h2&gt;

&lt;p&gt;These are &lt;strong&gt;"fake emergencies"&lt;/strong&gt; that drain your energy:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Meetings that could’ve been a quick "ok" in chat.
&lt;/li&gt;
&lt;li&gt;Work WhatsApp group notifications at 10 PM.
&lt;/li&gt;
&lt;li&gt;That coworker who always asks for help with something they could open a thread and look for team help.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to handle it?
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Delegate or ignore.&lt;/strong&gt; Seriously. If you spend all day reacting to others’ "urgencies," you become a &lt;strong&gt;reactive dev&lt;/strong&gt;, like a bot that only runs on a &lt;code&gt;POST&lt;/code&gt; request.  &lt;/p&gt;




&lt;h2&gt;
  
  
  Quadrant 4: Procrastination ☠️ (Not Urgent + Not Important)
&lt;/h2&gt;

&lt;p&gt;This is the &lt;strong&gt;junk food of productivity&lt;/strong&gt;:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Infinite social media scrolling about scrum vs kanban debates.
&lt;/li&gt;
&lt;li&gt;Watching your tenth React tutorial without touching the code.
&lt;/li&gt;
&lt;li&gt;Arguing on Discord about which framework is best while your project gathers dust.
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to handle it?
&lt;/h3&gt;

&lt;p&gt;Delete it. Seriously. If it doesn’t add value, &lt;strong&gt;it doesn’t deserve your time&lt;/strong&gt;. Unless it’s intentional downtime—then fine (but be honest: is it leisure or procrastination?).  &lt;/p&gt;




&lt;h2&gt;
  
  
  Pro Tips for Devs: Automate Quadrant 2
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Daily update ritual&lt;/strong&gt;: Review tasks daily.

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;Did any task change quadrants?&lt;/em&gt; Example: That database migration task moved from Quadrant 2 to 1 because the deadline got bumped.
&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Can you delete Quadrant 3 or 4 tasks?&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Block time on your calendar&lt;/strong&gt; for Quadrant 2 (e.g., 2 hours daily for learning or refactoring).
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Learn to say "no"&lt;/strong&gt; to others’ emergencies (yes, even to the PM who wants everything yesterday).
&lt;/li&gt;
&lt;li&gt;Use tools like &lt;a href="https://ticktick.com/features" rel="noopener noreferrer"&gt;TickTick&lt;/a&gt;. TickTick widget on desktop/phone keep the matrix visible and lets you categorize by priority.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Conclusion: Be the Proactive Dev, Not the Firefighter
&lt;/h2&gt;

&lt;p&gt;The Eisenhower Matrix isn’t about working harder—it’s about &lt;strong&gt;working with purpose&lt;/strong&gt;. If you want to escape crisis mode, start investing in Quadrant 2. Remember: &lt;strong&gt;what you do today determines whether tomorrow you’ll have time for coffee or another fire to put out&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let’s Chat!
&lt;/h2&gt;

&lt;p&gt;Got questions, tips, or stories about how you’ve used the matrix in your dev life? &lt;strong&gt;Drop a comment below!&lt;/strong&gt; I love talking out about productivity and chaos-free strategies.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>career</category>
      <category>management</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
