<?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: Tech Madi</title>
    <description>The latest articles on DEV Community by Tech Madi (@techmadi).</description>
    <link>https://dev.to/techmadi</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F247730%2F4329e53d-6dd2-4540-ba73-9d030d6a4549.jpg</url>
      <title>DEV Community: Tech Madi</title>
      <link>https://dev.to/techmadi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/techmadi"/>
    <language>en</language>
    <item>
      <title>Big Shout  to Zuri </title>
      <dc:creator>Tech Madi</dc:creator>
      <pubDate>Sun, 15 Aug 2021 08:05:02 +0000</pubDate>
      <link>https://dev.to/techmadi/big-shout-to-zuri-i75</link>
      <guid>https://dev.to/techmadi/big-shout-to-zuri-i75</guid>
      <description>&lt;p&gt;&lt;br&gt;
       Thank you Zuri team for giving me a chance to be part of this cohort(Frontend Track).The internship has several  tracks : -&lt;br&gt;
 &lt;/p&gt;
&lt;ul&gt;

       &lt;li&gt;

         Frontend Track
       &lt;/li&gt;
&lt;li&gt;

         Backend Track
       &lt;/li&gt;

       &lt;li&gt;

      Devops Track
       &lt;/li&gt;

       &lt;li&gt;

        Entrepreneurship Track
       &lt;/li&gt;

       &lt;li&gt;

      Digital marketing Track
       &lt;/li&gt;

       &lt;li&gt;

         UI-UX Track
       &lt;/li&gt;

      &lt;/ul&gt;
&lt;br&gt;
   &lt;h2&gt;My Goals for Zuri Internship&lt;/h2&gt;
&lt;br&gt;
         &lt;ul&gt;

           &lt;li&gt;  Be a proficient  Frontend developer (React)&lt;/li&gt;

           &lt;li&gt; Use my skills to solve on the SDG Goals (Sustainable  Development Goals) &lt;/li&gt;

           &lt;li&gt;Improve my soft skills&lt;/li&gt;

           &lt;li&gt;Grow my skills with my team&lt;/li&gt;

         &lt;/ul&gt;
&lt;br&gt;
         &lt;p&gt;As i go along this journey , this will be my guiding tutorials&lt;/p&gt;
&lt;br&gt;
      &lt;ul&gt;

           &lt;li&gt;

               &lt;a href="https://youtu.be/qz0aGYrrlhU"&gt;HTML  and  Css  &lt;/a&gt;
           &lt;/li&gt;

           &lt;li&gt;

               &lt;a href="https://www.youtube.com/watch?v=Qqx_wzMmFeA&amp;amp;t=50s"&gt;Javascript&lt;/a&gt;
           &lt;/li&gt;

           &lt;li&gt;

             &lt;a href="https://youtu.be/_uQrJ0TkZlc"&gt;Python&lt;/a&gt;
           &lt;/li&gt;

           &lt;li&gt;

              &lt;a href="https://youtu.be/TlB_eWDSMt4"&gt;Node js&lt;/a&gt;
           &lt;/li&gt;

           &lt;li&gt;

             &lt;a href="https://www.youtube.com/watch?v=xuB1Id2Wxak&amp;amp;t=4s"&gt;Github&lt;/a&gt;
           &lt;/li&gt;

           &lt;li&gt;

             &lt;a href="https://www.youtube.com/watch?v=c9Wg6Cb_YlU"&gt;Introduction to Figma&lt;/a&gt;
           &lt;/li&gt;

&lt;/ul&gt;
&lt;br&gt;
   &lt;br&gt;
   &lt;br&gt;
     &lt;p&gt;Sign up for the internship      &lt;a href="https://internship.zuri.team"&gt;Zuri Internship&lt;/a&gt;&lt;/p&gt;
&lt;br&gt;
   

</description>
      <category>react</category>
      <category>figma</category>
    </item>
    <item>
      <title>#webDev #VanillaJS</title>
      <dc:creator>Tech Madi</dc:creator>
      <pubDate>Tue, 22 Sep 2020 07:11:36 +0000</pubDate>
      <link>https://dev.to/techmadi/webdev-vanillajs-d9a</link>
      <guid>https://dev.to/techmadi/webdev-vanillajs-d9a</guid>
      <description>&lt;h1&gt;
  
  
  Performance
&lt;/h1&gt;

&lt;p&gt;&lt;b&gt;LuxTech Academy&lt;/b&gt; had a &lt;em&gt;100daysofcode&lt;/em&gt; challenge .I am half of the days and I learned something quite interesting &lt;br&gt;
Every javascript beginner is always told to  master the basics first the exceed to the intermediate level.Something funny is they are not told  how to improve .So today we shall discuss on perfomance on arrays.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Should work with the front of an array or the back of an array?&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Working on the end of an array would boost your performances.&lt;code&gt;push() &amp;amp; pop()&lt;/code&gt; work fast compared to &lt;code&gt;shift() &amp;amp; unshift()&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;When working with &lt;code&gt;shift()&lt;/code&gt;  the following happens:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The element with the index &lt;code&gt;0&lt;/code&gt; is removed&lt;/li&gt;
&lt;li&gt;All elements to be moved to the left&lt;/li&gt;
&lt;li&gt;Update the length property&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;b&gt;The more elements in the array, the more items to move , the more  memory operation to perform&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;As for  &lt;code&gt;push() &amp;amp; pop()&lt;/code&gt; no moving of  array items is involved.&lt;code&gt;pop()&lt;/code&gt; cleans the index and shortens the length&lt;br&gt;
Hence working with the &lt;b&gt;end of an array is more effective&lt;/b&gt;&lt;/p&gt;

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