<?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: Manoj Kumar</title>
    <description>The latest articles on DEV Community by Manoj Kumar (@mjmaurya).</description>
    <link>https://dev.to/mjmaurya</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%2F390351%2Fad807c21-5d59-4ae6-abeb-81fab9d3af84.jpg</url>
      <title>DEV Community: Manoj Kumar</title>
      <link>https://dev.to/mjmaurya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mjmaurya"/>
    <language>en</language>
    <item>
      <title>Most Asked JavaScript Interview Questions &amp; Answers</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Sun, 04 Feb 2024 15:11:43 +0000</pubDate>
      <link>https://dev.to/mjmaurya/most-asked-javascript-interview-questions-answers-50p9</link>
      <guid>https://dev.to/mjmaurya/most-asked-javascript-interview-questions-answers-50p9</guid>
      <description>&lt;p&gt;&lt;a href="https://codescript.in/2024/02/02/20-most-asked-javascript-interview-questions-answers/"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr9dm1t4vu1m83lokcubr.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;1. What is JavaScript, and how does it differ from Java?&lt;/strong&gt;&lt;br&gt;
JavaScript is a lightweight, interpreted programming language primarily used for web development. Unlike Java, which is a full-fledged, object-oriented programming language, JavaScript is a scripting language embedded within HTML pages to enhance interactivity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Explain the concept of closures in JavaScript.&lt;/strong&gt;&lt;br&gt;
Closures occur when a function retains access to variables from its outer scope, even after the outer function has finished executing. This allows for the creation of private variables and encapsulation of functionality.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function outerFunction() {
  let outerVariable = 10;

  function innerFunction() {
    console.log(outerVariable);
  }

  return innerFunction;
}

const closureExample = outerFunction();
closureExample(); // Outputs: 10
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. What is the event loop in JavaScript?&lt;/strong&gt;&lt;br&gt;
The event loop manages the execution of code, handling events and executing callbacks. It consists of a message queue, an event loop, and a callback or “message handler.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Describe the differences between let, const, and var.&lt;/strong&gt;&lt;br&gt;
var is function-scoped and hoisted.&lt;br&gt;
let and const are block-scoped, and const does not allow reassignment.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function example() {
  if (true) {
    var x = 5; // Function-scoped
    let y = 10; // Block-scoped
    const z = 15; // Block-scoped and cannot be reassigned
  }

  console.log(x); // Outputs: 5
  console.log(y); // Error: y is not defined
  console.log(z); // Error: z is not defined
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;5. How does prototypal inheritance work in JavaScript?&lt;/strong&gt;&lt;br&gt;
JavaScript uses prototypal inheritance, where objects can inherit properties and methods from other objects. Each object has a prototype chain, and if a property or method is not found in the object, JavaScript looks up the chain until it finds it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function Animal(name) {
  this.name = name;
}

Animal.prototype.sound = function () {
  console.log("Some generic sound");
};

function Dog(name, breed) {
  Animal.call(this, name);
  this.breed = breed;
}

Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.constructor = Dog;

Dog.prototype.sound = function () {
  console.log("Bark!");
};

const myDog = new Dog("Buddy", "Labrador");
myDog.sound(); // Outputs: Bark!```




&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;a href="https://codescript.in/2024/02/02/20-most-asked-javascript-interview-questions-answers"&gt;20 Most Asked JavaScript Interview Questions &amp;amp; Answers&lt;/a&gt;
&lt;/h2&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>I Created Responsive Blog Website Using React, NodeJS, and MongoDB </title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Fri, 04 Jun 2021 10:05:16 +0000</pubDate>
      <link>https://dev.to/mjmaurya/i-created-responsive-blog-website-using-react-nodejs-and-mongodb-5bh0</link>
      <guid>https://dev.to/mjmaurya/i-created-responsive-blog-website-using-react-nodejs-and-mongodb-5bh0</guid>
      <description>&lt;p&gt;I written many blog on different Website. But now I created a Blog Website using React, NodeJS, and MongoDB.&lt;/p&gt;

&lt;p&gt;I created Frontend of Website using React, Created API using NodeJS, and used MongoDB Atlas for storing blog data and Articles.&lt;/p&gt;

&lt;p&gt;In this website the is functionality to filter articles using tag name. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--h8jx7TyA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ej0knkij34azggji5v4s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--h8jx7TyA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ej0knkij34azggji5v4s.png" alt="Articles"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://yourarticle.herokuapp.com/"&gt;Live Demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I Deployed it on Heroku.&lt;/p&gt;

&lt;p&gt;How is the Website?&lt;br&gt;
And&lt;br&gt;
Please Let me Know if any change I need to do.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>react</category>
      <category>node</category>
      <category>mongodb</category>
    </item>
    <item>
      <title>I Created a Responsive Portfolio Website Using HTML, CSS, Bootstrap, and JavaScript-Updated</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Wed, 25 Nov 2020 09:29:02 +0000</pubDate>
      <link>https://dev.to/mjmaurya/responsive-portfolio-website-using-html-css-bootstrap-and-javascript-updated-3mp5</link>
      <guid>https://dev.to/mjmaurya/responsive-portfolio-website-using-html-css-bootstrap-and-javascript-updated-3mp5</guid>
      <description>&lt;p&gt;I already had created my portfolio from scratch using HTML, CSS, Bootstrap, and javascript. But this time I have updated my portfolio with attractive and responsive UI.&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%2Fi%2F4lrrr4cvsllk99nao3c4.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%2Fi%2F4lrrr4cvsllk99nao3c4.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tell me, what amazes you? What should I change?&lt;/p&gt;

&lt;p&gt;Here is the link to the portfolio:&lt;a href="http://manojcse.me" rel="noopener noreferrer"&gt;http://manojcse.me&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Your feedback will be very important to me. It will help to enhance my development skill.&lt;/p&gt;

&lt;p&gt;If you liked the style of the button and want to use it, then visit here :&lt;a href="http://www.manojcse.me/mjbutton.html" rel="noopener noreferrer"&gt;MJBUTTON&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you don't know web technology or don't have time to create your portfolio from scratch. No Problem! I have created a tool for you it will create your portfolio with in 5 minutes without any coding. &lt;a href="http://codescript.in/ResumeBuilder" rel="noopener noreferrer"&gt;Try It&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How To Become A Microsoft Learn Student Ambassador</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Wed, 28 Oct 2020 18:56:13 +0000</pubDate>
      <link>https://dev.to/mjmaurya/how-to-become-a-microsoft-learn-student-ambassador-41b8</link>
      <guid>https://dev.to/mjmaurya/how-to-become-a-microsoft-learn-student-ambassador-41b8</guid>
      <description>&lt;p&gt;&lt;a href="https://youtu.be/d1x2mJnCeDk"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--M_bZM_JY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jj4iqehgoakld5k8va08.png" alt="How To Become A Microsoft Learn Student Ambassador"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/d1x2mJnCeDk"&gt;Video Link&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mlsa</category>
      <category>azure</category>
      <category>mspartner</category>
      <category>student</category>
    </item>
    <item>
      <title>Activate Azure for Students using GitHub Student Developer Pack.</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Wed, 28 Oct 2020 18:43:22 +0000</pubDate>
      <link>https://dev.to/mjmaurya/activate-azure-for-students-using-github-student-developer-pack-ad4</link>
      <guid>https://dev.to/mjmaurya/activate-azure-for-students-using-github-student-developer-pack-ad4</guid>
      <description>&lt;p&gt;As a student, you can apply for the GitHub Student Developer Pack, which includes offers and benefits from GitHub partners. You can use the GitHub student developer pack to activate your Microsoft Azure account so that you can access the benefits.&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%2Fi%2Fe6v7em9c9l61liqbr627.jpeg" 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%2Fi%2Fe6v7em9c9l61liqbr627.jpeg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How to apply for the GitHub Student Developer Pack
&lt;/h2&gt;

&lt;p&gt;Visit here to get step by step instruction to apply for Github Student Developer Pack. : -&lt;a href="https://dev.to/mjmaurya/how-to-apply-for-the-github-student-developer-pack-15f9"&gt;How to apply for the GitHub Student Developer Pack&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  How to activate Azure from your pack
&lt;/h1&gt;

&lt;p&gt;Once you get the confirmation email for your student developer pack. you need to go back to the Github website using this link &lt;a href="https://education.github.com/pack/offers" rel="noopener noreferrer"&gt;Offers&lt;/a&gt; and avail the benefits.&lt;/p&gt;

&lt;p&gt;There will be many tools available so you need to scroll down and find Microsoft Azure. Click to generate your unique code.&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%2Fi%2F30xk9btv14jhdb1rzby9.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%2Fi%2F30xk9btv14jhdb1rzby9.png" alt="unique code"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;OR&lt;/p&gt;

&lt;p&gt;Click on Get access by connecting your GitHub account on Microsoft Azure&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%2Fi%2Fkbp2w2ag4cb0fq8vyfgt.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%2Fi%2Fkbp2w2ag4cb0fq8vyfgt.png" alt="unique code"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now go to the Microsoft website and click on the “Activate Now” button where you’ll get a prompt to sign in. And sign in with your existing Microsoft account or sign in with GitHub.&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%2Fi%2Fsexp1ouywzxg640i0nrx.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%2Fi%2Fsexp1ouywzxg640i0nrx.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enter your details and you’ll see a page 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%2Fi%2Fbztm2cn60w81avqggxfo.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%2Fi%2Fbztm2cn60w81avqggxfo.png" alt="Enter your details"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the dropdown icon and select the Verification code. Copy your verification code from your Git website and paste it here.&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%2Fi%2F8x6klbbzqslfzan99cah.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%2Fi%2F8x6klbbzqslfzan99cah.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can now access your Azure account.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you have not Verification code, Then go to contact and write your issue.&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Sample:&lt;br&gt;
Hi Microsoft&lt;br&gt;
I’m a Github student developer pack member, and I’m trying to activate my azure account but I have not received any verification code. Please provide me the Verification Code.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You will get a mail from Microsoft Support&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%2Fi%2F6ps9k7n6y7y9o1jwepyo.jpeg" 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%2Fi%2F6ps9k7n6y7y9o1jwepyo.jpeg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reply to this mail with the required details then you will get the activation code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If You have any doubt feel free to contact me.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://twitter.com/gcssmanoj" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/in/mjmaurya/" rel="noopener noreferrer"&gt;Linkdin&lt;/a&gt;&lt;/p&gt;

</description>
      <category>azure</category>
      <category>microsoft</category>
      <category>github</category>
      <category>cloud</category>
    </item>
    <item>
      <title>How to apply for the GitHub Student Developer Pack.</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Wed, 28 Oct 2020 18:24:25 +0000</pubDate>
      <link>https://dev.to/mjmaurya/how-to-apply-for-the-github-student-developer-pack-15f9</link>
      <guid>https://dev.to/mjmaurya/how-to-apply-for-the-github-student-developer-pack-15f9</guid>
      <description>&lt;p&gt;You can get ahead in your career and access the best developer tools used in the industry, for free, with the GitHub Student Developer Pack (the Pack). The Pack is open to every student 13 years or older in a degree-granting program, and they are committed to helping every student — no matter where you are.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Most students apply for the Pack using their school-issued email address. However, students whose schools don’t provide email addresses are able to apply for the Pack using their dated student ID.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How to apply for the GitHub Student Developer Pack
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Visit &lt;a href="https://education.github.com/" rel="noopener noreferrer"&gt;GitHub Education&lt;/a&gt; and click Get benefits in the top-right corner.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Then click on Get Pack&lt;/li&gt;
&lt;/ul&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%2Fi%2Fegro7rz1kstm7lf3w3w6.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%2Fi%2Fegro7rz1kstm7lf3w3w6.png" alt="Student Developer Pack"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;And login with Your Git hub Account&lt;/li&gt;
&lt;/ul&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%2Fi%2Fxtx1qli1cfjpul12zfmc.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%2Fi%2Fxtx1qli1cfjpul12zfmc.png" alt="Login Page"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Under “Which best describes your academic status?”, select Student.&lt;/strong&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%2Fi%2Fle9oea64oxjzmwghx24z.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%2Fi%2Fle9oea64oxjzmwghx24z.png" alt="Student"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Then, complete one of the following:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you have a school-issued email, select (or add it).&lt;/li&gt;
&lt;/ul&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%2Fi%2F7slxi9n7vradz94ijkqn.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%2Fi%2F7slxi9n7vradz94ijkqn.png" alt="school-issued email"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you don’t have a school-issued email, follow the prompts to fill out additional information. You’re still eligible even if you only have a personal Gmail address, as long as you can provide alternative documentation to verify your current student status.&lt;/li&gt;
&lt;/ul&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%2Fi%2F31cj3clcma76lbayyr2v.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%2Fi%2F31cj3clcma76lbayyr2v.png" alt="verify your current student status"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;OR&lt;br&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%2Fi%2Fmhaww6ddv521w8pycku6.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%2Fi%2Fmhaww6ddv521w8pycku6.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The next step is to add your college name.&lt;/strong&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%2Fi%2Fh59l5k7i7jv3fnb9llhu.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%2Fi%2Fh59l5k7i7jv3fnb9llhu.png" alt="college name"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The last step is to describe the purpose of how do you plan to use Github.&lt;/strong&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%2Fi%2Fok3h80dbp0dbu4na4oc2.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%2Fi%2Fok3h80dbp0dbu4na4oc2.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Verify your application details, and click on “Submit your Information”.&lt;/strong&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%2Fi%2F8z2cpzig2ypwsvf7coeo.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%2Fi%2F8z2cpzig2ypwsvf7coeo.png" alt="Alt Text"&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%2Fi%2Fi2nx15jg4tgvcn13qxwg.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%2Fi%2Fi2nx15jg4tgvcn13qxwg.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Approximately two weeks after submission of the application.&lt;/strong&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%2Fi%2F5k8n0ekw9058ts80hj3i.jpeg" 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%2Fi%2F5k8n0ekw9058ts80hj3i.jpeg" alt="Good news"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Common Questions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. My school does not provide student emails or IDs. What can I submit to prove that I’m a student?
&lt;/h3&gt;

&lt;p&gt;GitHub will consider any documentation you provide. If they cannot accept your uploaded proof on your first attempt, you will receive an email asking you to submit supplementary information.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. My application wasn’t accepted. What should I do?
&lt;/h3&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%2Fi%2Flnphwsp0o4l604oq2dz2.jpeg" 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%2Fi%2Flnphwsp0o4l604oq2dz2.jpeg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You may need to provide additional documentation before they can approve your application. A common problem is that the uploaded proof was undated, or the photo was too blurry. Regardless of the reason, they will try to provide context so that your next application has a greater chance of success.&lt;/p&gt;

</description>
      <category>github</category>
      <category>studentdeveloperpack</category>
      <category>softwaredevelopment</category>
      <category>softwaretesting</category>
    </item>
    <item>
      <title>What I Learned From Hacktoberfest</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Sat, 17 Oct 2020 15:34:39 +0000</pubDate>
      <link>https://dev.to/mjmaurya/what-i-learned-from-hacktoberfest-1i10</link>
      <guid>https://dev.to/mjmaurya/what-i-learned-from-hacktoberfest-1i10</guid>
      <description>&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%2Fi%2Fwadbdaj71ykq3dytevxv.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%2Fi%2Fwadbdaj71ykq3dytevxv.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned From Hacktoberfest
&lt;/h2&gt;

&lt;p&gt;It was a great experience for me as a student. I explored many skills such intro to open source, etc.&lt;br&gt;
Overall it was a great experience for me.. Thanks DigitalOcean Hacktoberfest Community&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
    </item>
    <item>
      <title>Portfolio Website Builder - Build Your Portfolio Within 10 minutes Without Coding</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Sat, 29 Aug 2020 21:22:02 +0000</pubDate>
      <link>https://dev.to/mjmaurya/portfolio-website-builder-build-your-portfolio-within-10-minutes-without-coding-6o9</link>
      <guid>https://dev.to/mjmaurya/portfolio-website-builder-build-your-portfolio-within-10-minutes-without-coding-6o9</guid>
      <description>&lt;p&gt;You need a resume that you can update and share at any given moment. On top of that, potential employers should also be able to find you online with a quick search of your name. Having a well-designed CV website that conveys your personality sends a clear message to recruiters that you are serious about your career.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why You Should Create a Personal Website ASAP
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;A personal website helps recruiters find you much more easily.&lt;/li&gt;
&lt;li&gt;By having a personal website, you'll gain a competitive advantage.&lt;/li&gt;
&lt;li&gt;A personal website gives you the freedom to be creative.&lt;/li&gt;
&lt;li&gt;Having a personal website helps you acquire new skills.&lt;/li&gt;
&lt;li&gt;Having a personal website will boost your chances of landing a job&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GsgtixB3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://j.gifs.com/gZojQZ.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GsgtixB3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://j.gifs.com/gZojQZ.gif" alt="Input"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So I came up with an amazing tool to make this an easy experience.&lt;br&gt;
&lt;strong&gt;Resume Website Builder&lt;/strong&gt; tool provides a beautiful UI to create a Resume website (Portfolio) in an easy and efficient way.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Just fill some details like Name, About, Education, Experiences, Skills, etc With a Simple and attractive UI.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click on the submit button to create your resume Website.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click on Show/Hide Code Button and copy your website code by &lt;br&gt;
clicking on Click to copy button&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BmqSgA9M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://j.gifs.com/ANZG97.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BmqSgA9M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://j.gifs.com/ANZG97.gif" alt="Input"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀Try it out:&lt;a href="http://www.codescript.run/"&gt;Live Demo&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How it Works &lt;a href="https://youtu.be/HMUmI9kfSDc"&gt;Watch Video&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Currently It has only one theme but I'm working hard I will come with new multiple themes ASAP.&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;If you like the tool, show some love by leaving a star on the &lt;a href="https://github.com/mjmaurya/resume-website-builder"&gt;GitHub repository&lt;/a&gt;.&lt;/strong&gt;
&lt;/h4&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>showdev</category>
      <category>python</category>
    </item>
    <item>
      <title>Deploy a machine learning model using flask</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Fri, 21 Aug 2020 16:57:25 +0000</pubDate>
      <link>https://dev.to/mjmaurya/deploy-a-machine-learning-model-using-flask-50m4</link>
      <guid>https://dev.to/mjmaurya/deploy-a-machine-learning-model-using-flask-50m4</guid>
      <description>&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%2Fuser-images.githubusercontent.com%2F45433443%2F90904255-a946d500-e3ec-11ea-9a53-d28d5d81de75.gif" 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%2Fuser-images.githubusercontent.com%2F45433443%2F90904255-a946d500-e3ec-11ea-9a53-d28d5d81de75.gif" alt="Disease-Prediction"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;As a beginner in machine learning, it might be easy for anyone to get enough resources about all the algorithms for machine learning and deep learning but when I started to look for references to deploy ML model to production I did not find really any good resources which could help me to deploy my model as I am very new to this field. So, when I succeeded to deploy my model using Flask on Heroku, I decided to write an article to help others to simply deploy their model. I hope it will help:)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dpredict.herokuapp.com/" rel="noopener noreferrer"&gt;Live Demo&lt;/a&gt;&lt;br&gt;
In this article, we are going to use simple logistic regression algorithm with scikit-learn for simplicity, we will use Flask as it is a very light web framework. We will create two files,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;model.py&lt;/li&gt;
&lt;li&gt;app.py&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In a model.py file, we will develop and train our model, in an app.py, we will code to handle POST requests and return the results.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;model.py&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In this file, we will develop our ML model and train it. We will predict the heart disease of a person on the Basis of Symptoms. You can find the dataset &lt;a href="https://github.com/mjmaurya/heart-disease-predictor/blob/master/heart-data.csv" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import pandas as pd
import sys
import numpy as np
import pickle
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Importing the libraries that we are going to use to develop our model. NumPy and pandas to manipulate the matrices and data respectively, sklearn.model_selection for splitting data into train and test set and sklearn.linear_model to train our model using LogisticRegression. pickle to save our trained model to the disk.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;df=pd.read_csv('heart-data.csv')
x=df.drop('target', axis=1)
y=df['target']
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We have imported the dataset using pandas and separated the features and label from the dataset.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;train_x,valid_x,train_y,valid_y=train_test_split(x,y,test_size=0.3,random_state=35)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this section, we have split our data into train and test size of 0.70 and 0.30 respectively using train_test_split from sklearn.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;logr=LogisticRegression()
logr.fit(train_x,train_y)
result=logr.predict(valid_x)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The object is instantiated as a logr of the class LogisticRegression() and trained using tarin_x and train_y. Latter the predicted results are stored in the result.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pickle.dump(logr,open('model.pkl','wb'))
model=pickle.load(open('model.pkl','rb'))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We will save our trained model to the disk using the pickle library. Pickle is used to serializing and de-serializing a Python object structure. In which python object is converted into the byte stream.&lt;/p&gt;

&lt;p&gt;In our case, we want to save our model so that it can be used by the server. So we will save our object logr to the file named model.pkl.&lt;/p&gt;

&lt;p&gt;Here, our model.py is ready to train and save the model. The whole code of model.py is as follows.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Importing the libraries
import pandas as pd
import sys
import numpy as np
import pickle
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LogisticRegression

# Importing the dataset
df=pd.read_csv('heart-data.csv')
df.rename(columns={"class":"target"},inplace=True)
df['target'].replace(['absent','present'],[0,1],inplace=True)
df=pd.get_dummies(df)
x=df.drop('target', axis=1)
y=df['target']
#Splitting the dataset into the Training set and Test set
train_x,valid_x,train_y,valid_y=train_test_split(x,y,test_size=0.3,random_state=35)

# Fitting Simple Linear Regression to the Training set
logr=LogisticRegression()
logr.fit(train_x,train_y)
pickle.dump(logr,open('model.pkl','wb'))
model=pickle.load(open('model.pkl','rb'))

# Predicting the Test set results
result=model.predict(valid_x)
print(result)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2.app.py&lt;/p&gt;

&lt;p&gt;In this file, we will use the flask web framework to handle the POST requests that we will get from the UX.&lt;/p&gt;

&lt;p&gt;Importing the methods and libraries that we are going to use in the code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;from flask import Flask
from flask import render_template,redirect,request
import pandas as pd
import sys
import numpy as np
import pickle
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;In the following section of the code, we have created the instance of the Flask() and loaded the model into the model.&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;app=Flask(__name__)

model=pickle.load(open('model.pkl','rb'))
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here, we have a method result(). In which resut method gets the data from the form passed by the users. model.predict() method takes input from the form and converts it into 2D numpy array the results are stored into the variable named result and we return this variable.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@app.route("/result", methods = ['POST', 'GET'])
def result():
    if request.method=='POST':
#geting data from html form
        age=request.form["age"]
        .
        .
# after geting data appending in a list
        lst=list()
        lst.append((age))
        lst.append((sex))
        lst.append((chest))
        lst.append((resting_blood_pressure))
        lst.append((serum_cholestoral))
        lst.append((fasting_blood_sugar))
        lst.append((resting_electrocardiographic_results))
        lst.append((maximum_heart_rate_achieved))
        lst.append((exercise_induced_angina))
        lst.append((oldpeak))
        lst.append((slope))
        lst.append((number_of_major_vessels))
        lst.append((thal))
# converting list into 2 D numpy array
        ans=model.predict([np.array(lst,dtype='int64')])
        result=ans[0]
        return render_template("result.html",result=result)

    else:
        return render_template("index.html")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Finally, we will run our app by the following code section. Here I have used port 5000 and have set debug=True since if we get any error we can debug it and solve it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
if __name__=='__main__':
    app.run(port=5000,debug=True)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can find all the coding in my Github repository, &lt;a href="https://github.com/mjmaurya/heart-disease-predictor" rel="noopener noreferrer"&gt;heart-disease-predictor&lt;/a&gt;.&lt;br&gt;
Don’t hesitate to flow your ideas in the comment section below.&lt;/p&gt;

&lt;p&gt;Thank you :)&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>flask</category>
      <category>datascience</category>
    </item>
    <item>
      <title>I Created a Responsive Portfolio Website Using HTML, CSS, Bootstrap, and JavaScript</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Fri, 03 Jul 2020 22:30:43 +0000</pubDate>
      <link>https://dev.to/mjmaurya/i-created-a-responsive-portfolio-website-using-html-css-bootstrap-and-javascript-2in9</link>
      <guid>https://dev.to/mjmaurya/i-created-a-responsive-portfolio-website-using-html-css-bootstrap-and-javascript-2in9</guid>
      <description>&lt;p&gt;I already had a portfolio but it was created by others. But now have created my portfolio from scratch using HTML, CSS, Bootstrap, and JavaScript.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--37arYLyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/oaa09vbgr9dqhbt3pq94.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--37arYLyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/oaa09vbgr9dqhbt3pq94.png" alt="Alt Text" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tell me, what amazes you? What should I change?&lt;/p&gt;

&lt;p&gt;Here is the link to the portfolio:&lt;a href="https://mjmaurya.github.io"&gt;https://mjmaurya.github.io&lt;/a&gt;&lt;br&gt;
                                   OR&lt;br&gt;
                                   &lt;a href="https://manojcse.netlify.app"&gt;https://manojcse.netlify.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Your feedback will be very important to me. It will help to enhance my development skill.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How to install Flutter, Configure with Android Studio, and Create a Simple App.</title>
      <dc:creator>Manoj Kumar</dc:creator>
      <pubDate>Wed, 20 May 2020 08:54:00 +0000</pubDate>
      <link>https://dev.to/mjmaurya/how-to-install-flutter-configure-with-android-studio-and-create-a-simple-app-5g12</link>
      <guid>https://dev.to/mjmaurya/how-to-install-flutter-configure-with-android-studio-and-create-a-simple-app-5g12</guid>
      <description>&lt;h2&gt;
  
  
  System requirements
&lt;/h2&gt;

&lt;p&gt;To install and run Flutter, your development environment must meet these minimum requirements:&lt;br&gt;
Operating System: Windows 7 SP1 or later (64-bit)&lt;br&gt;
Disk Space: 400 Mb (Except disk space of IDE/tools)&lt;br&gt;
Tools: Flutter depends on these tools being available in your environment.&lt;br&gt;
Windows PowerShell&lt;br&gt;
Git for Windows&lt;/p&gt;

&lt;h2&gt;
  
  
  Get the Flutter SDK
&lt;/h2&gt;

&lt;p&gt;Step 1- Go to URL &lt;a href="https://flutter.dev/docs/get-started/install/windows"&gt;https://flutter.dev/docs/get-started/install/windows&lt;/a&gt; and download the latest Flutter SDK.&lt;br&gt;
Step 2- Unzip the zip file and place the contained flutter in the installation location for the Flutter SDK (For example, C:/src/flutter; do not install FLutter in a directory like C:/Program Files/ that requires relevant privileges).&lt;br&gt;
Step 3- Update your path&lt;br&gt;
From the Start search bar, enter ‘env’ and select “Edit environment variables for your account”.&lt;br&gt;
Under User variable check an entry called Path.&lt;br&gt;
Under Path click on the new tab and append the full path to flutter/bin. (Your full path should be like C:/src/flutter/bin).&lt;/p&gt;

&lt;h2&gt;
  
  
  Android Setup
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Install Android Studio
&lt;/h3&gt;

&lt;p&gt;Download and install Android Studio.&lt;br&gt;
Start Android Studio, and go through the ‘Android Studio Setup Wizard’. This installs the latest Android SDK, Android SDK Command-line Tools, and Android SDK Build-Tools, which are required by Flutter when developing for Android.&lt;/p&gt;

&lt;h4&gt;
  
  
  Install the Flutter and Dart plugins
&lt;/h4&gt;

&lt;p&gt;Open Android Studio.&lt;br&gt;
Click Configure&amp;gt;Plugins.&lt;br&gt;
Select the Fluter plugin and click install.&lt;br&gt;
Click yes when prompted to install the Dart plugin.&lt;br&gt;
Restart Android Studio.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a Hello World app
&lt;/h2&gt;

&lt;p&gt;Open Android Studio.&lt;br&gt;
Select Start a new Flutter project.&lt;br&gt;
Select the Flutter application and click next.&lt;br&gt;
Enter Project name&lt;br&gt;
Setup Flutter SDK path and Project location.&lt;br&gt;
Click next.&lt;br&gt;
Enter your Company Domain(com.example.helloapp) and click finish.&lt;br&gt;
Run applications on your phone or emulator.&lt;/p&gt;

&lt;h5&gt;
  
  
  Thank You, I hope it will help You.
&lt;/h5&gt;

</description>
      <category>flutter</category>
      <category>android</category>
      <category>ios</category>
      <category>development</category>
    </item>
  </channel>
</rss>
