<?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: Instinct</title>
    <description>The latest articles on DEV Community by Instinct (@instinct).</description>
    <link>https://dev.to/instinct</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%2F351007%2Fa2ef1cd7-b031-4f0a-981f-c83918a0f1fb.jpg</url>
      <title>DEV Community: Instinct</title>
      <link>https://dev.to/instinct</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/instinct"/>
    <language>en</language>
    <item>
      <title>How does handwriting.io work?</title>
      <dc:creator>Instinct</dc:creator>
      <pubDate>Thu, 26 Nov 2020 06:01:09 +0000</pubDate>
      <link>https://dev.to/instinct/how-does-handwriting-io-work-2hj3</link>
      <guid>https://dev.to/instinct/how-does-handwriting-io-work-2hj3</guid>
      <description>&lt;p&gt;I came across this awesome app 😎 &lt;a href="https://handwriting.io/"&gt;handwriting.io&lt;/a&gt;. &lt;br&gt;
It converts &lt;em&gt;text&lt;/em&gt; to &lt;em&gt;handwriting&lt;/em&gt;. ✍🏾&lt;br&gt;
Every instance of the letter you type is different. 😮&lt;br&gt;
I wonder how the developers made this cool app. 🤔&lt;br&gt;
You can test it for yourself 👉🏾 &lt;a href="https://handwriting.io/demo/"&gt;here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>handwriting</category>
    </item>
    <item>
      <title>Working Directory not configuring Visual Studio 2019</title>
      <dc:creator>Instinct</dc:creator>
      <pubDate>Tue, 22 Sep 2020 12:27:00 +0000</pubDate>
      <link>https://dev.to/instinct/working-directory-not-configuring-visual-studio-2019-126h</link>
      <guid>https://dev.to/instinct/working-directory-not-configuring-visual-studio-2019-126h</guid>
      <description>&lt;p&gt;I am creating a django site and I have created django project inside an &lt;strong&gt;app folder of the root directory&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;My folder structure looks like &lt;a href="https://pasteboard.co/JsfcJKO.png"&gt;this&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.
├── .gitignore
├── .travis.yml
├── .vs
│   ├── PythonSettings.json
│   ├── VSWorkspaceState.json
│   ├── launch.vs.json
│   ├── recipe-app-api
│   │   └── v16
│   │       └── .suo
│   └── slnx.sqlite
├── Dockerfile
├── LICENSE
├── README.md
├── app
│   ├── app
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── calc.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   ├── tests.cpython-37.pyc
│   │   │   └── urls.cpython-37.pyc
│   │   ├── calc.py
│   │   ├── settings.py
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   └── manage.py
├── docker-compose.yml
└── requirements.txt
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;I have configured my &lt;code&gt;launch.vs.json&lt;/code&gt; file like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0.2.1"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"defaults"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"configurations"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"python"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"interpreter"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"(default)"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"interpreterArguments"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;""&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"scriptArguments"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;""&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{},&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"nativeDebug"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"webBrowserUrl"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;""&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"project"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"app&lt;/span&gt;&lt;span class="se"&gt;\\&lt;/span&gt;&lt;span class="s2"&gt;manage.py"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"manage.py"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"workingDirectory"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"app"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;The problem still is that &lt;em&gt;Visual Studio 2019&lt;/em&gt; cannot detect that my &lt;code&gt;working directory&lt;/code&gt; is the &lt;code&gt;app&lt;/code&gt; folder. That's why it showing the python &lt;code&gt;import&lt;/code&gt; is &lt;strong&gt;unresolved&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xHC0ZMRg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1600776850514/DVS1WB1J2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xHC0ZMRg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1600776850514/DVS1WB1J2.png" alt="Image of the error"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Am I doing something wrong in the &lt;code&gt;launch.vs.json&lt;/code&gt; file? How can I solve this?&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I am using the latest version of Visual Studio 2019.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>help</category>
      <category>visualstudio</category>
      <category>python</category>
      <category>discuss</category>
    </item>
    <item>
      <title>#discuss Which is the best online LIVE course out there for learning DATA STRUCTURES &amp; ALGORITHMS?</title>
      <dc:creator>Instinct</dc:creator>
      <pubDate>Fri, 12 Jun 2020 13:11:08 +0000</pubDate>
      <link>https://dev.to/instinct/discuss-which-is-the-best-online-live-course-out-there-for-learning-data-structures-algorithms-29d7</link>
      <guid>https://dev.to/instinct/discuss-which-is-the-best-online-live-course-out-there-for-learning-data-structures-algorithms-29d7</guid>
      <description>&lt;p&gt;I wanted to dedicate this month to learning &lt;strong&gt;Data Structures and Algorithms&lt;/strong&gt;. Sadly, I can't find the right course for it. &lt;br&gt;
I searched for some courses in &lt;em&gt;Udemy&lt;/em&gt; and &lt;em&gt;Udacity&lt;/em&gt; but I did not find anthing satisfying.&lt;/p&gt;

&lt;p&gt;Does anyone have any recommedations for this one?&lt;/p&gt;

&lt;p&gt;I would be happy if you could tell me which course you took for learning &lt;em&gt;DSA&lt;/em&gt;.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>help</category>
    </item>
  </channel>
</rss>
