<?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: Adam Holwerda</title>
    <description>The latest articles on DEV Community by Adam Holwerda (@adamholwerda).</description>
    <link>https://dev.to/adamholwerda</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%2F145345%2F23540a1d-23ae-4ba9-9eeb-dc471181b3e3.jpeg</url>
      <title>DEV Community: Adam Holwerda</title>
      <link>https://dev.to/adamholwerda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adamholwerda"/>
    <language>en</language>
    <item>
      <title>You Can Develop Every Idea You Have - Here's How</title>
      <dc:creator>Adam Holwerda</dc:creator>
      <pubDate>Thu, 24 Jun 2021 04:52:37 +0000</pubDate>
      <link>https://dev.to/adamholwerda/you-can-develop-every-idea-you-have-here-s-how-3jfi</link>
      <guid>https://dev.to/adamholwerda/you-can-develop-every-idea-you-have-here-s-how-3jfi</guid>
      <description>&lt;p&gt;Maybe this is obvious from the post title, but I'm a firm believer in attempting to develop every idea I ever have, in some way or other. That could be a napkin with a drawing on it, a slip of paper, a note on my phone, a Balsamiq wireframe.&lt;/p&gt;

&lt;p&gt;I have a binder filled with ideas for UX and UI ideas. A web application that displays documents by mimicking an envelope opening. A Netflix-style content library that works like a dry-cleaning rack. Dioramas with controllable puppets performing on tiny stages. A smorgasbord of skeuomorphic schematics that would disgust Jony Ive. All because I make it a point to write down anything that occurs to me as a development idea, good or not.&lt;/p&gt;

&lt;p&gt;I've also got a healthy influx of new ideas. Anybody who knows me would probably tell you this influx is &lt;strong&gt;too healthy&lt;/strong&gt;. But new ideas can't be stopped. They're the culmination of being alive and awake, of collecting and creating things, and I have a hard time putting them aside. New ideas are often so interesting to me that I have no choice but to drop everything in order to pursue New Priority One, if only for a few minutes or hours.&lt;/p&gt;

&lt;p&gt;This seems like an unfortunate dilemma. "Sucks for that guy with all the ideas," you might be thinking, "he'll never have time to finish them all."&lt;/p&gt;

&lt;p&gt;And you're right. I can't finish every idea. But there's something else I can do that allows me to finish &lt;em&gt;any&lt;/em&gt; idea, now or in the future.&lt;/p&gt;

&lt;p&gt;What's that thing? I can start each idea &lt;em&gt;on a development path.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What does that path look like? Well, it could look like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpdikmeeyb4dd0anseeiz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpdikmeeyb4dd0anseeiz.png" alt="Screen Shot 2021-06-23 at 6.03.17 PM"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I can write a paragraph and draw a sketch of something, and I can throw that in a binder. At any point in the future I can pick up that sketch or description and push the idea further along the development path. I can use the sketch to make a Codepen or Codesandbox or Glitch project. I like starting in one of these programs rather than a "folder-spun" project using a command line boilerplate like &lt;code&gt;npx create-react-app my-app&lt;/code&gt; or &lt;code&gt;npx create-next-app my-app&lt;/code&gt; for a few different reasons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Web apps like Glitch/Codepen/Codesandbox give you a development environment you can immediately access from anywhere, not just your development machines.&lt;/li&gt;
&lt;li&gt;You can work on aspects of your app quicker than you might get to having to spin one up, and live-coding is a breeze with all of your changes recompiling and being shown to you in a window as you work.&lt;/li&gt;
&lt;li&gt;Each project has a fullscreen view accessible via URL from the jump, so if you're working for a client or just on a new project, you can have a working link to it that's available from &lt;strong&gt;day one&lt;/strong&gt;. This is not only an advantage, &lt;em&gt;it feels like magic&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;It ensures you're not wasting time on tooling or version controlling or deployment pipelines for projects that ultimately aren't worth pursuing.&lt;/li&gt;
&lt;li&gt;Quick and dirty, find out if your idea works, and if it's worth further development, you can always export your project and start a git repo to make it "more real."&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If an idea is "worthy" (usually I define this by the amount of time I'm spending working on it, and if the amount of code I'm writing is getting to the point where the web application is having a slower time building it,) I'll start keeping track of it in a version controlled repository associated with my Github account.&lt;/p&gt;

&lt;p&gt;If an idea is not "worthy" I abandon it at and leave it for a future me to do something with (or not). There's no point working on projects that don't excite you or just for the purpose of "code complete" - I know developers who've worked on the same codebase for years and never came close to being "code complete" - it's a goal you can save for the projects of yours that are closest to you over time.&lt;/p&gt;

&lt;p&gt;With Codepen, you can download a ZIP folder of your files (sans &lt;code&gt;node_modules&lt;/code&gt;) and &lt;code&gt;git init&lt;/code&gt; inside an unzipped version (maybe you move it to your &lt;code&gt;~/apps&lt;/code&gt; folder or something first) and start that way. &lt;/p&gt;

&lt;p&gt;With Codesandbox, there's an integration with Github that lets you start a new repo with your project right from there (pictured below).&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs1cmxrs4w1ne8royohyn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs1cmxrs4w1ne8royohyn.png" alt="Screen Shot 2021-06-23 at 11.58.11 PM"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;With Glitch, to download your project:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open the project editor.&lt;/li&gt;
&lt;li&gt;Go to the lower left corner of the editor and click Tools.&lt;/li&gt;
&lt;li&gt;Click Git, Import and Export.&lt;/li&gt;
&lt;li&gt;Click Download Project.&lt;/li&gt;
&lt;li&gt;If your browser asks you to confirm or save, click OK.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.glitch.com%2Ff914e085-7333-414f-bfc4-af653a7b139c%252FDownload%2520Project.gif%3Fv%3D1579022469956" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn.glitch.com%2Ff914e085-7333-414f-bfc4-af653a7b139c%252FDownload%2520Project.gif%3Fv%3D1579022469956"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;as is documented &lt;a href="https://help.glitch.com/kb/article/26-how-can-i-download-or-backup-my-glitch-project/" rel="noopener noreferrer"&gt;here&lt;/a&gt;. There's also a way to &lt;a href="https://help.glitch.com/kb/article/27-can-i-export-my-project-to-github/" rel="noopener noreferrer"&gt;export your project to GitHub&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What does this work for?
&lt;/h2&gt;

&lt;p&gt;You might be thinking to yourself, "Adam, I make Node applications."&lt;/p&gt;

&lt;p&gt;Cool. &lt;a href="https://www.saashub.com/requirebin-alternatives" rel="noopener noreferrer"&gt;There are a bunch of web-based tools for creating a node-like environment in the browser&lt;/a&gt;, and you can do your early development there:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqqgf6abc4mp2b9u26zgs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqqgf6abc4mp2b9u26zgs.png" alt="Screen Shot 2021-06-24 at 12.07.29 AM"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Not a Javascript developer? No problem. Chances are there's an environment or a sandbox web application for your code flavor. Maybe your favorite language is Text. Then you might want to know about &lt;a href="https://txtfiddle.com/" rel="noopener noreferrer"&gt;TxtFiddle&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;What's your experience with tools like this? What's your strategy for keeping track of all your UX/UI/App ideas? If you have your own thoughts on all of this, leave a comment below. I'm always interested.&lt;/p&gt;

&lt;h3&gt;
  
  
  TL;DR:
&lt;/h3&gt;

&lt;p&gt;What if every idea had an optionally finishable path? That's the thought behind Develop Every Idea. You don't know if any new Eureka! moment is a good idea, a bad idea, if you're going to spend half an hour on it or a month. That's why it's important to future-proof your mental content and put each idea on a development track. Don't limit your future self by deciding an idea is bad now. Record it, and leave it for a later, more discerning you.&lt;/p&gt;

&lt;p&gt;Don't worry. If it's a great idea, you'll make it great! Trust the accumulation, and trust yourself to learn and grow.&lt;/p&gt;

&lt;p&gt;I do.&lt;/p&gt;




&lt;p&gt;I'm Adam, a web developer, self-published fiction author, and a sometimes somewhat humorous public speaker. I'm new to Dev, and you can follow me &lt;a href="https://dev.to/adamholwerda"&gt;here&lt;/a&gt; or on Twitter &lt;a href="https://twitter.com/adamholwerda" rel="noopener noreferrer"&gt;@adamholwerda&lt;/a&gt;. I look forward to hearing from you!&lt;/p&gt;

</description>
      <category>codepen</category>
      <category>codesandbox</category>
      <category>glitch</category>
      <category>productivity</category>
    </item>
    <item>
      <title>13 Things To Check When Your Code Isn't Running</title>
      <dc:creator>Adam Holwerda</dc:creator>
      <pubDate>Mon, 14 Jun 2021 18:41:13 +0000</pubDate>
      <link>https://dev.to/adamholwerda/13-things-to-check-when-your-code-isn-t-running-1ho6</link>
      <guid>https://dev.to/adamholwerda/13-things-to-check-when-your-code-isn-t-running-1ho6</guid>
      <description>&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--zBjhX1WI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1399795414392508417/JICxt-Nu_normal.jpg" alt="Aidan Skinner profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Aidan Skinner
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @aidanskinner
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      21 years down 'code mines and I'm still losing time to "this code is the not the code that is running"
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      17:57 PM - 14 Jun 2021
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1404498365539393538" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1404498365539393538" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1404498365539393538" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;We've all been there. Some of us live there. You made code changes, and they aren't appearing in the compiled code, the locally-running web environment, or somewhere else you expect them to appear. I'll be using this list to save myself time in the future, and will be adding to it. Leave a comment with your own "Thing to Check" and I might add it!&lt;/p&gt;

&lt;h1&gt;
  
  
  Do you need to blow away a build folder?
&lt;/h1&gt;

&lt;p&gt;I recently ran into an issue where a Typescript-compiled &lt;code&gt;./built&lt;/code&gt; folder used to generate a production build wasn't deleting old/renamed files (in the case of a folder restructure or renaming). So what ended up happening was, &lt;code&gt;./stores/SomeStore.js&lt;/code&gt; and &lt;code&gt;./stores/SomeStore/index.js&lt;/code&gt; were both files that existed in &lt;em&gt;the build folder&lt;/em&gt;, but not my project. I'd make changes to &lt;code&gt;./stores/SomeStore/index.ts&lt;/code&gt; but when I built for production, the application was still being built with &lt;code&gt;./stores/SomeStore.js&lt;/code&gt;, and none of my code changes showed up in the application until I deleted &lt;code&gt;.built&lt;/code&gt; and added a deletion step to my build process.&lt;/p&gt;

&lt;h1&gt;
  
  
  Did you make changes in a build folder?
&lt;/h1&gt;

&lt;p&gt;Build folders often hold compiled versions of source folder code. If you're searching for code in your project and haven't excluded build folders from search, you can easily make the mistake of editing code that will just be overwritten by the source code when you build.&lt;/p&gt;

&lt;h1&gt;
  
  
  Are you "host filed"?
&lt;/h1&gt;

&lt;p&gt;Are you thinking you're on a live version of an app because the URL shows that? But really you've host-filed yourself and you're proxying your local? Maybe it's time to &lt;code&gt;vi /etc/hosts&lt;/code&gt; and check.&lt;/p&gt;

&lt;h1&gt;
  
  
  Environment variables obscuring debugging or removing your change?
&lt;/h1&gt;

&lt;p&gt;Maybe you can't see your code change because logging is turned off in certain builds, or something.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZWZ01aV---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1057705412240130048/DhB14eVt_normal.jpg" alt="Eliezer Steinbock (FrontWork.dev) profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Eliezer Steinbock (FrontWork.dev)
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @elie2222
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Incredibly annoying when the bug is having set the wrong environment variable. Seems to happen a fair amount 😭&lt;br&gt;&lt;br&gt;Any tips for catching these sooner? Often a case of something working locally/in testing but not in staging/prod because env vars are different.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      20:31 PM - 01 Nov 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1322999774027653125" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1322999774027653125" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1322999774027653125" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Do you have multiple tabs/windows of the same App open, in different environments?
&lt;/h1&gt;

&lt;p&gt;Have you ever refreshed, over and over, the &lt;em&gt;staging&lt;/em&gt; version of an app, when what you meant to check was your &lt;em&gt;local&lt;/em&gt;?&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--_kYz6dFs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1172658688454287366/tjLDJMrm_normal.jpg" alt="Josh Deltener profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Josh Deltener
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @joshdeltener
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      I just spent 20 minutes wondering why my code wasn't working, just to find out I was looking at staging instead of local dev.  Ug.  &lt;a href="https://twitter.com/hashtag/toomanytabs"&gt;#toomanytabs&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/coffee"&gt;#coffee&lt;/a&gt; &lt;a href="https://twitter.com/hashtag/itsmonday"&gt;#itsmonday&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      19:51 PM - 20 Jul 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1285301288012582921" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1285301288012582921" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1285301288012582921" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Are you in the right terminal window/folder?
&lt;/h1&gt;

&lt;p&gt;Some code needs to be run at a particular path, or from a terminal that has access and permissions to certain tools. Sometimes you have to &lt;code&gt;touch&lt;/code&gt; a certain file to trigger a change, or you might have to spin up a new terminal.&lt;/p&gt;

&lt;h1&gt;
  
  
  Is there a delay in the view?
&lt;/h1&gt;

&lt;p&gt;Does the code take a while to build after every change? Are you using a viewer that doesn't refresh the data source?&lt;br&gt;
&lt;/p&gt;
&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--wkeV9xyp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1389766211291000835/xJ_YnqNg_normal.jpg" alt="Laurie profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Laurie
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        &lt;a class="mentioned-user" href="https://dev.to/laurieontech"&gt;@laurieontech&lt;/a&gt;

      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Not me thinking the mutation didn't work but it's really a database viewer with a delay showing the updated table 😭
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      17:37 PM - 14 Jun 2021
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1404493209691111425" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1404493209691111425" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1404493209691111425" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Did you save the file before building?
&lt;/h1&gt;

&lt;p&gt;I can't tell you how many times I've rebuilt a project looking for an expected code change before noticing I haven't even saved the file I changed.&lt;br&gt;
&lt;/p&gt;
&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--i0EKxjRP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1333953843953070080/3M2YYmqc_normal.jpg" alt="Molly Struve 🦄 profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Molly Struve 🦄
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @molly_struve
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Code won't work? Did you try saving the file?&lt;br&gt;&lt;br&gt;Your welcome.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      18:26 PM - 22 Sep 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1308472663531192320" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1308472663531192320" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1308472663531192320" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Making changes in the right branch? In the right file? In the right folder?
&lt;/h1&gt;

&lt;p&gt;Maybe you've made a change in a feature branch but built the develop branch. Maybe you're working on a file with the right name, but you're in the wrong directory/at the wrong route. Maybe you're literally looking at the wrong file.&lt;br&gt;
&lt;/p&gt;
&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--MJpyObdh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1066733730159562752/GlAGeRiX_normal.jpg" alt="Anand Sriraman profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Anand Sriraman
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @anandsriraman
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      &lt;a href="https://twitter.com/molly_struve"&gt;@molly_struve&lt;/a&gt; I've been guilty of spending hours wondering why my code in &lt;a href="https://t.co/w9csSQ0RDb"&gt;test3.py&lt;/a&gt; isn't working, then realising I was running &lt;a href="https://t.co/XDkOVhgVuC"&gt;test2.py&lt;/a&gt; all along 😅
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      19:29 PM - 22 Sep 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1308488702075654144" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1308488702075654144" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1308488702075654144" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Does your code change require other database or authentication changes?
&lt;/h1&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--eT4UrzDB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1341801134428708865/YZ3xJI6d_normal.jpg" alt="Mouse profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Mouse
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @mousedotexe
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Me: deploys to AWS&lt;br&gt;Me, five minutes later: "why isn't my pipeline running?"&lt;br&gt;AWS: "Where is my MFA code, father? I crave authentication"
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      15:40 PM - 18 Dec 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1339958678259167233" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1339958678259167233" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1339958678259167233" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Did you misspell something?
&lt;/h1&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--ri4wPtDV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1289906530729562112/yZC3N8sG_normal.jpg" alt="Fluffy Walkerr profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Fluffy Walkerr
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @fluffywalkerr
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Sat for 20 minutes trying to figure out why my code isn't running, I spelt append with 3 p's
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      16:41 PM - 29 Oct 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1321854616624111616" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1321854616624111616" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1321854616624111616" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--4lWxudNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/605664941794832385/jITxs1-M_normal.jpg" alt="Árni St. Sigurðsson profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Árni St. Sigurðsson
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @beltiras
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      &lt;a href="https://twitter.com/stebets"&gt;@stebets&lt;/a&gt; Once took a colleague 5 minutes to spot a wrong case of a single letter in an environment variable name in a script. I had been looking for why the build didn't end up in the right place for 5 hours. 🤦‍♂️
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      04:47 AM - 22 Apr 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1252821204118851588" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1252821204118851588" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1252821204118851588" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Did you push your code?
&lt;/h1&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--rAXXrw8k--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1336376454968434691/XNtAlccY_normal.jpg" alt="fraq profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        fraq
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @0xfraq
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      "WHY ISN'T MY BUILD RUNNING? WHY DO YOU HATE ME?"&lt;br&gt;"Oh, I forgot to push my code"
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      21:31 PM - 31 Jul 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1156678847972163584" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1156678847972163584" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1156678847972163584" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;h1&gt;
  
  
  Are you checking build output but assuming build succeeded?
&lt;/h1&gt;

&lt;p&gt;Maybe the build failed and you're still looking at the old application. It's happened to me.&lt;/p&gt;

&lt;p&gt;If one of these ended up getting you unstuck, or you have your own Thing to Check, leave it below!&lt;/p&gt;




&lt;p&gt;I'm Adam, a web developer, self-published fiction author, and a sometimes somewhat humorous public speaker. I'm new to Dev, and you can follow me &lt;a href="https://dev.to/adamholwerda"&gt;here&lt;/a&gt; or on Twitter &lt;a href="https://twitter.com/adamholwerda"&gt;@adamholwerda&lt;/a&gt;. I look forward to hearing from you!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
