<?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: Shweta</title>
    <description>The latest articles on Forem by Shweta (@shweta200126).</description>
    <link>https://forem.com/shweta200126</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%2F497922%2F515368b5-7d98-441e-9056-85bb6a905b5f.jpeg</url>
      <title>Forem: Shweta</title>
      <link>https://forem.com/shweta200126</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/shweta200126"/>
    <language>en</language>
    <item>
      <title>Publish site with Netlify and GitHub repo</title>
      <dc:creator>Shweta</dc:creator>
      <pubDate>Sun, 29 Jan 2023 16:10:03 +0000</pubDate>
      <link>https://forem.com/shweta200126/publish-site-with-netlify-and-github-repo-4169</link>
      <guid>https://forem.com/shweta200126/publish-site-with-netlify-and-github-repo-4169</guid>
      <description>&lt;p&gt;I am writing this because this is the same problem I keep facing again and again when I am deploying a site through GitHub repo and Netlify. &lt;/p&gt;

&lt;p&gt;Here to not the same happening again and smooth process. &lt;/p&gt;

&lt;p&gt;Adding locally hosted code to GitHub &lt;a href="https://docs.github.com/en/get-started/importing-your-projects-to-github/importing-source-code-to-github/adding-locally-hosted-code-to-github#adding-a-local-repository-to-github-using-git" rel="noopener noreferrer"&gt;Using Git&lt;/a&gt;&lt;br&gt;
The GitHub docs explains it simply. &lt;/p&gt;

&lt;p&gt;After choosing the repo from Netlify and starting the deploy process and getting a error, in &lt;strong&gt;build and deploy&lt;/strong&gt; -&amp;gt; &lt;strong&gt;build settings&lt;/strong&gt; -&amp;gt; in &lt;strong&gt;build command&lt;/strong&gt;  write&lt;/p&gt;

&lt;p&gt;&lt;code&gt;CI= npm run build&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fo9j324cdgc45yb8jd7y0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fo9j324cdgc45yb8jd7y0.png" alt="Image description" width="800" height="464"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and it works and the site is deployed!!&lt;/p&gt;

</description>
      <category>performance</category>
      <category>webassembly</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Getting started with React</title>
      <dc:creator>Shweta</dc:creator>
      <pubDate>Sat, 02 Jul 2022 19:17:05 +0000</pubDate>
      <link>https://forem.com/shweta200126/getting-started-with-react-46o1</link>
      <guid>https://forem.com/shweta200126/getting-started-with-react-46o1</guid>
      <description>&lt;p&gt;Running React on my system for the first time was not a great experience, so here I am sharing how to do it quickly for anyone out there wanting to get started with it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Steps:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Install&lt;/strong&gt; nvm (&lt;strong&gt;nvm-setup.exe&lt;/strong&gt;) from here -&amp;gt; (&lt;a href="https://github.com/coreybutler/nvm-windows/releases"&gt;https://github.com/coreybutler/nvm-windows/releases&lt;/a&gt;)
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//Check nvm version
&amp;gt; nvm --version 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Use terminal in administrator mode;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now, Install the LTS version of npm.&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; nvm install latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Check npm version
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; npm --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Install&lt;/strong&gt; Node.js &lt;a href="https://nodejs.org/en/download/"&gt;https://nodejs.org/en/download/&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Check it's version:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; node --version
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;em&gt;Now we can set React application locally, &lt;/em&gt;&lt;br&gt;
Open terminal in VScode and write:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; npx create-react-app my-app

&amp;gt; cd my-app

&amp;gt; npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;(my-app is the name of react project, this can be changed)&lt;/p&gt;

&lt;p&gt;Voila!&lt;br&gt;
The browser will open itself with the react app running, now you can change according to your wants. &lt;/p&gt;

&lt;p&gt;Additionally, write&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;whenever you need to run the application again after you closed the entire code. &lt;/p&gt;

</description>
      <category>react</category>
      <category>beginners</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Day by day experience in Local Hack Day 2021 by MLH</title>
      <dc:creator>Shweta</dc:creator>
      <pubDate>Mon, 18 Jan 2021 05:38:41 +0000</pubDate>
      <link>https://forem.com/shweta200126/day-by-day-experience-in-local-hack-day-2021-by-mlh-2109</link>
      <guid>https://forem.com/shweta200126/day-by-day-experience-in-local-hack-day-2021-by-mlh-2109</guid>
      <description>&lt;p&gt;Day 3 &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Our guild had meeting ,discussions for Day 3 challenges.&lt;/li&gt;
&lt;li&gt;Made a logo.&lt;/li&gt;
&lt;li&gt;Made outfit for Ellie with Inscape &amp;amp; Gimp.(Don't ask why I used both!)
4.Learnt to make sorted list in C language.&lt;/li&gt;
&lt;li&gt;Worked on three team projects and contributed.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Day 4&lt;br&gt;&lt;br&gt;
This is first day I completed all challenges for the day.&lt;/p&gt;

&lt;p&gt;Day 5 &lt;br&gt;
Did guildwork (uk like teamwork) &lt;br&gt;
Participated in cup-stacking, stacked my books to form tower! &lt;br&gt;
Got to learn #emojicode , it was so fun doing this. A little pain for which smily to choose though. &lt;/p&gt;

&lt;p&gt;Day 6 &lt;br&gt;
We made a bot which replies to you back for a certain twitter id u provide. It was so cool when reply came from &lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/nasa"&gt;@nasa&lt;/a&gt;&lt;br&gt;
Python part 3 workshop by &lt;br&gt;
@maradrinksmilk&lt;br&gt;
Learnt about AI through videos (I'd link them below) it's nice to know for fun than school. &lt;br&gt;
Had meetings !!&lt;br&gt;
Gave my STs.&lt;br&gt;
Read a book.&lt;br&gt;
Made my Hackathon brand.&lt;/p&gt;

&lt;p&gt;Day 7 &lt;br&gt;
Our #HTNE team did a meet and we made the project then.&lt;br&gt;
Learnt so many new things !&lt;/p&gt;

&lt;p&gt;At 36th position with 117 pts&lt;/p&gt;

</description>
      <category>mlh</category>
      <category>localhackday</category>
      <category>majorleaguehacking</category>
    </item>
    <item>
      <title>The demos for Local Hack Day projects ! by MLH</title>
      <dc:creator>Shweta</dc:creator>
      <pubDate>Mon, 18 Jan 2021 05:30:19 +0000</pubDate>
      <link>https://forem.com/shweta200126/the-demos-for-local-hack-day-projects-by-mlh-2h0e</link>
      <guid>https://forem.com/shweta200126/the-demos-for-local-hack-day-projects-by-mlh-2h0e</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/ksuBl0fOhoE"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/P3xOGnQSdII"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>mlh</category>
      <category>majorleaguehacking</category>
      <category>localhackday</category>
    </item>
    <item>
      <title>My tutorials for Local Hack Day by MLH</title>
      <dc:creator>Shweta</dc:creator>
      <pubDate>Mon, 18 Jan 2021 05:25:08 +0000</pubDate>
      <link>https://forem.com/shweta200126/my-tutorials-for-mlh-cm</link>
      <guid>https://forem.com/shweta200126/my-tutorials-for-mlh-cm</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/T52ybgcvjrs"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/RjD0Io6qLf0"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>localhackday</category>
      <category>mlh</category>
      <category>majorleaguehacking</category>
    </item>
  </channel>
</rss>
