<?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: Joe Pool</title>
    <description>The latest articles on DEV Community by Joe Pool (@jp2code).</description>
    <link>https://dev.to/jp2code</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%2F544890%2F46ea0620-683e-474e-9b25-4dece9997e64.jpeg</url>
      <title>DEV Community: Joe Pool</title>
      <link>https://dev.to/jp2code</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jp2code"/>
    <language>en</language>
    <item>
      <title>Debug React</title>
      <dc:creator>Joe Pool</dc:creator>
      <pubDate>Wed, 13 Apr 2022 18:02:45 +0000</pubDate>
      <link>https://dev.to/jp2code/debug-react-4dii</link>
      <guid>https://dev.to/jp2code/debug-react-4dii</guid>
      <description>&lt;p&gt;I have to debug a website built with React (16.12.0 per the package.json file).&lt;/p&gt;

&lt;p&gt;When the Customer clicks "Next" in the process, the next page loads with the bottom of the page shown instead of the top.&lt;/p&gt;

&lt;p&gt;The problem is that there is no React.js page that is loaded. I'm still on the same page and the URL hasn't changed, so I can't step through the OnLoad event.&lt;/p&gt;

&lt;p&gt;I set a breakpoint on the mouse click() event in Chrome, but it ends with a call to an anonymous "await function" that I cannot find where it is created.&lt;/p&gt;

&lt;p&gt;Work told me to watch some training videos on React.js, but those are too basic.&lt;/p&gt;

&lt;p&gt;Does anyone know what I could look for?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How do I remove a TAB from text that is pasted in from the clipboard?</title>
      <dc:creator>Joe Pool</dc:creator>
      <pubDate>Mon, 11 Jan 2021 21:12:37 +0000</pubDate>
      <link>https://dev.to/jp2code/how-do-i-remove-a-tab-from-text-that-is-pasted-in-from-the-clipboard-38gj</link>
      <guid>https://dev.to/jp2code/how-do-i-remove-a-tab-from-text-that-is-pasted-in-from-the-clipboard-38gj</guid>
      <description>&lt;p&gt;I think I am failing on my regular expression, the best I can tell.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    $(document).ready(function() {
      $('input').bind('paste', function() {
        setTimeout(function() {
          var obj = ('input').val();
          var text = obj.replace('^[a-zA-Z0-9\\-\\s]+$', ' ');
          $('input').val(text);
        });
      });
    });
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;I have made a fiddle here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jsfiddle.net/jp2code/5enmojb2/20/"&gt;https://jsfiddle.net/jp2code/5enmojb2/20/&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Looking for Angular Debugging Help</title>
      <dc:creator>Joe Pool</dc:creator>
      <pubDate>Mon, 21 Dec 2020 22:54:18 +0000</pubDate>
      <link>https://dev.to/jp2code/looking-for-angular-debugging-help-19oa</link>
      <guid>https://dev.to/jp2code/looking-for-angular-debugging-help-19oa</guid>
      <description>&lt;p&gt;I am looking for a good place to post questions about Angular development and structure that I can't seem to grasp from tutorials alone.&lt;/p&gt;

&lt;p&gt;I can't seem to ask basic questions about web development on StackOverflow.com because my reputation is too high. I get a few downvotes, and nobody looks at my questions.&lt;/p&gt;

&lt;p&gt;We have a big project here that we are taking over, and I need a way to just get questions. It seems odd that I haven't found any decent forums on Angular.&lt;/p&gt;

&lt;p&gt;Right now, I am trying to import data to create Entities. The button calls a javascript compare routine that is throwing out the message, "Error: Related Entity 'Physical Location' used by Reference Field 'Physical Location' does not exist in Target. Create Related Entity in Target and try again." What table is it talking about? How do I step into the code to see what it is doing?&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;package.json&lt;/code&gt; file shows "version": "0.0.0", but I know it isn't that. The TypeScript is compiled to JavaScript and used in our Visual Studio 2019 project by Razor, ASP.NET and MVC - none of which I excel at. Most of the files are logically arranged, but there are lots of files that seem way too hard to find.&lt;/p&gt;

&lt;p&gt;Where is a good place to go for help, not tutorials?&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
