<?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>Forem: Elissa Twizeyimana</title>
    <description>The latest articles on Forem by Elissa Twizeyimana (@twizelissa).</description>
    <link>https://forem.com/twizelissa</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%2F646368%2Fcc7325d7-762b-48dd-b974-7e5c6bbac97b.jpg</url>
      <title>Forem: Elissa Twizeyimana</title>
      <link>https://forem.com/twizelissa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/twizelissa"/>
    <language>en</language>
    <item>
      <title>Understand synchronous Vs asynchronous code in Js</title>
      <dc:creator>Elissa Twizeyimana</dc:creator>
      <pubDate>Wed, 21 Sep 2022 22:43:14 +0000</pubDate>
      <link>https://forem.com/twizelissa/understand-synchronous-vs-asynchronous-code-in-js-3pb6</link>
      <guid>https://forem.com/twizelissa/understand-synchronous-vs-asynchronous-code-in-js-3pb6</guid>
      <description>&lt;p&gt;&lt;strong&gt;Synchronous code&lt;/strong&gt; runs step by step where each step has to wait for previous one to be executed.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log("Hello Friends");
console.log("Hello");
console.log("Nice to meet you");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here each line will execute then next until all finish.&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%2F7fxagfvnrmbervp2riig.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%2F7fxagfvnrmbervp2riig.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;But for asynchronous code&lt;/strong&gt; it doesn't respect order stuff ,it get executed out of sequence.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log("Hello");
setTimeout(()=&amp;gt;console.log("Wait for 3 Second"),3000);
console.log("See you again");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;First line will execute and last while for second one it has to wait for 3seconds to it will execute last.&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%2Ff2kd2v34xwu7ptzn5wo4.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%2Ff2kd2v34xwu7ptzn5wo4.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
I'm grateful that you took the time to read my writing, and I hope it will help you develop. Let's collaborate to brighten the future. All of my primary profiles are available on &lt;a href="https://github.com/twizelissa" rel="noopener noreferrer"&gt;My Github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How to Enable github copilot for free to students</title>
      <dc:creator>Elissa Twizeyimana</dc:creator>
      <pubDate>Thu, 30 Jun 2022 11:43:18 +0000</pubDate>
      <link>https://forem.com/twizelissa/how-to-enable-github-copilot-for-free-as-student-4kal</link>
      <guid>https://forem.com/twizelissa/how-to-enable-github-copilot-for-free-as-student-4kal</guid>
      <description>&lt;p&gt;Hello everyone ,In this blog we are going to see how to enable github copilot for free as student &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Requirement&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Be currently enrolled in a degree or diploma granting course of study such as a high school, secondary school, college, university, homeschool, or similar educational institution.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Have a verifiable school-issued email address or upload documents that prove your current student status.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Have a GitHub personal account&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Be at least 13 years old&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Without futher delay let get started ,first you need to head to &lt;a href="https://education.github.com/" rel="noopener noreferrer"&gt;github Education&lt;/a&gt; then you will see signin button at top right corner hit it and enter you github username and passowrd.&lt;/p&gt;

&lt;p&gt;After login in you should see landing page of github education 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%2F08vejnq8dj5p2dphdt1y.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%2F08vejnq8dj5p2dphdt1y.PNG" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;go to benefits down little bit and choose student in given option.&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%2Fziqan5zcvgec115trj2u.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%2Fziqan5zcvgec115trj2u.PNG" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will  be asked to select you gmail account and name of you school then  you have to enter what you will do with your github you can say like &lt;em&gt;I will use github contributing to open source and coding class projects&lt;/em&gt;&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%2Febm867baeue9anjb7c85.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%2Febm867baeue9anjb7c85.png" alt="Image description"&gt;&lt;/a&gt;&lt;br&gt;
then &lt;strong&gt;Continue&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;The next page you will be asked to upload document which show prove that you are student either be student card or anything mentioned and &lt;strong&gt;here you have to be careful&lt;/strong&gt; because image of you card have to visible and clearly showing how long it will stay valid!&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%2Fm862vtr6syoqiiocefnu.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%2Fm862vtr6syoqiiocefnu.png" alt="Image description"&gt;&lt;/a&gt;&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%2Fc5tti4nfv5fiq5ggtnz3.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%2Fc5tti4nfv5fiq5ggtnz3.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After submitting you student card you should get response on you email account  welcoming you to github Education.&lt;/p&gt;

&lt;p&gt;By Heading to you github profile you should see something like pro on Hightlight&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%2Fxpucg6n4ct544fe9ogru.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%2Fxpucg6n4ct544fe9ogru.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;on you github Account &lt;/p&gt;

&lt;p&gt;I'm grateful that you took the time to read my writing, and I hope it will help you develop. Let's collaborate to brighten the future. All of my primary profiles are available on &lt;a href="https://github.com/twizelissa" rel="noopener noreferrer"&gt;My GitHub&lt;/a&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
