<?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: Isaac Hatilima</title>
    <description>The latest articles on DEV Community by Isaac Hatilima (@isaachatilima).</description>
    <link>https://dev.to/isaachatilima</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%2F478520%2Fb8a89c64-7c05-4ad3-831a-f137eb33164b.jpeg</url>
      <title>DEV Community: Isaac Hatilima</title>
      <link>https://dev.to/isaachatilima</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/isaachatilima"/>
    <language>en</language>
    <item>
      <title>Vue JS</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Wed, 10 Aug 2022 06:44:06 +0000</pubDate>
      <link>https://dev.to/isaachatilima/vue-js-1lcd</link>
      <guid>https://dev.to/isaachatilima/vue-js-1lcd</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I am learning Vue JS as my frontend technology and so far so good. I however have questions so far.&lt;/p&gt;

&lt;p&gt;Having converted an HTML template to Vue App, my Javascript is not working with the single page app approach and so I am reloading on redirection. Would this approach be accepted as an industry standard?&lt;/p&gt;

&lt;p&gt;If anyone has done this before, how do I make my JS work without reloading?&lt;/p&gt;

&lt;p&gt;Any recommendations or guidance will be appreciated.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>vue</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Vue Js Router and Nav CSS</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Sun, 24 Jul 2022 10:15:03 +0000</pubDate>
      <link>https://dev.to/isaachatilima/vue-js-router-and-nav-css-10kg</link>
      <guid>https://dev.to/isaachatilima/vue-js-router-and-nav-css-10kg</guid>
      <description>&lt;p&gt;Hello, I started learning Vue JS and so far so good. What I have currently is an HTML dashboard converted to the Vue App and all is working as expected except for the navigation bar. When I navigate and change my component without page reload the dropdows navigations stop working I have to reload the browser for them to work. All my CSS and JS files are included in the index.html and I also tried them in the main.js but same result. What have I not done?&lt;br&gt;
Thanks in advance.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>vue</category>
    </item>
    <item>
      <title>Learning React JS</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Sun, 18 Apr 2021 13:51:33 +0000</pubDate>
      <link>https://dev.to/isaachatilima/learning-react-js-2ao4</link>
      <guid>https://dev.to/isaachatilima/learning-react-js-2ao4</guid>
      <description>&lt;p&gt;Hello reader,&lt;br&gt;
I have decided to learn react, I have very little knowledge on this. I am planning on building an app as a way of learning. Any recommendations on tutorials I can follwo along with?&lt;/p&gt;

</description>
      <category>react</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Django Rest Framework</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Sat, 16 Jan 2021 00:10:30 +0000</pubDate>
      <link>https://dev.to/isaachatilima/django-rest-framework-41c2</link>
      <guid>https://dev.to/isaachatilima/django-rest-framework-41c2</guid>
      <description>&lt;p&gt;Hi everyone,&lt;br&gt;
I have two models Clients and Users and I have serializers for the two models. If I add depth=1 in my UserSerializer then I can not add a record, but if I remove it then I am able to add a record, what am I doing wrong?&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# My Client Serializer
  class ClientSerializer(serializers.ModelSerializer):
    class Meta:
      model = Clients
      fields = '__all__'
      read_only_fields = ('id','client_public_key')


# My User Serializer
  class UserSerializer(serializers.ModelSerializer):
    class Meta:
      model = Users
      depth = 1
      fields = '__all__'
      read_only_fields = ('id','user_public_key')
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>django</category>
    </item>
    <item>
      <title>Looking for a tutor</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Fri, 15 Jan 2021 17:20:16 +0000</pubDate>
      <link>https://dev.to/isaachatilima/looking-for-a-tutor-3kg1</link>
      <guid>https://dev.to/isaachatilima/looking-for-a-tutor-3kg1</guid>
      <description>&lt;p&gt;Hello everyone,&lt;br&gt;
I have since started teaching myself/ learning Django rest framework. Is anyone out there willing to be my tutor? &lt;/p&gt;

</description>
      <category>django</category>
      <category>python</category>
    </item>
    <item>
      <title>Flask and/or Django</title>
      <dc:creator>Isaac Hatilima</dc:creator>
      <pubDate>Fri, 01 Jan 2021 17:22:44 +0000</pubDate>
      <link>https://dev.to/isaachatilima/flask-and-or-django-1fjg</link>
      <guid>https://dev.to/isaachatilima/flask-and-or-django-1fjg</guid>
      <description>&lt;p&gt;Hello everyone. I have a few questions, &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What are your thoughts on Flask and/or Django? &lt;/li&gt;
&lt;li&gt;Which one do you prefer between the two. &lt;/li&gt;
&lt;li&gt;In your opinion which one is the best? &lt;/li&gt;
&lt;/ol&gt;

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