<?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: Vishal Das (he/him)</title>
    <description>The latest articles on Forem by Vishal Das (he/him) (@kindavishal).</description>
    <link>https://forem.com/kindavishal</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%2F260501%2F64556df5-bdd2-46d3-9291-a946d2d3e438.jpg</url>
      <title>Forem: Vishal Das (he/him)</title>
      <link>https://forem.com/kindavishal</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kindavishal"/>
    <language>en</language>
    <item>
      <title>Making a website using Bootstrap 5 ✨</title>
      <dc:creator>Vishal Das (he/him)</dc:creator>
      <pubDate>Sat, 26 Mar 2022 16:13:18 +0000</pubDate>
      <link>https://forem.com/kindavishal/making-a-website-using-bootstrap-5-3hj</link>
      <guid>https://forem.com/kindavishal/making-a-website-using-bootstrap-5-3hj</guid>
      <description>&lt;p&gt;Mobile-first websites are the standard today; be it your resume or your business website, the chances are that it will be primarily viewed on a smartphone more than any device today. Thanks to Bootstrap 5 (currently v5.1), we can set up a responsive website in less than 5 mins (or more if you are on a comfy couch). Let's build a website using Bootstrap 5 together! Bootstrap 5 is a library that provides power-ups to our plain HTML and JavaScript.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting ready 🤓
&lt;/h2&gt;

&lt;p&gt;Let's talk about what is Bootstrap in the first place? Bootstrap is a CSS framework. It is a collection of different CSS styles like buttons, dropdown menus and umpteen other things. Do you need to know CSS for Bootstrap? Not really. And that is the best part and also the reason why it is so popularly used. &lt;/p&gt;

&lt;p&gt;However, there are some prerequisites to this blog:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You need to know basics of HTML and JavaScript&lt;/li&gt;
&lt;li&gt;You’d obviously need a code editor.
Got these two covered? Let’s dive in deeper 🐬&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We'll be importing the library and using the various components it has to offer to build our website.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Step 1:&lt;/u&gt; Inside your tag, add the following meta tags and link to the CSS. To help you, I've provided you with a starter template.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;!-- This is required by Bootstrap. Without this, you'll see funky and incomplete styling--&amp;gt;
&amp;lt;html lang="en"&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;!-- Required meta tags --&amp;gt;
    &amp;lt;meta charset="utf-8"&amp;gt;
&amp;lt;!-- This ensures proper rendering and touch zooming for all devices --&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1"&amp;gt;

    &amp;lt;!-- Bootstrap CSS --&amp;gt;
    &amp;lt;link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"&amp;gt;
    &amp;lt;title&amp;gt;Hello, world!&amp;lt;/title&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;Hello, world!&amp;lt;/h1&amp;gt;
    &amp;lt;!-- Bootstrap Bundle with Popper --&amp;gt;
    &amp;lt;script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This template will give you a fundamental yet Bootstrap-ed website.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Step 2:&lt;/u&gt; Save the file as ".html"&lt;/p&gt;

&lt;p&gt;&lt;u&gt;Step 3:&lt;/u&gt; Open the file in a browser to view your basic bootstrap-ed website 🎉&lt;/p&gt;

&lt;p&gt;Now that the basic website is up – we can play around with it like adding breakpoints, containers, etc.&lt;/p&gt;

&lt;p&gt;If this excites you, you can learn more about it following the below references:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://getbootstrap.com/docs/5.1/getting-started/introduction/tbootstrap.com"&gt;Introduction · Bootstrap v5.1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.w3cub.com/bootstrap~5/"&gt;Bootstrap 5 Documentation - W3cubDocs&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com/watch?v=6zKLvZSYXmE"&gt;Responsive Food And Restaurant Website Using Bootstrap 5 | Bootstrap 5 Responsive Website Design - YouTube&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Until next time 👋&lt;br&gt;
Vishal - your friendly Community Manager ✨&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Starting your Life at Open Source ✨</title>
      <dc:creator>Vishal Das (he/him)</dc:creator>
      <pubDate>Sun, 05 Jul 2020 15:41:06 +0000</pubDate>
      <link>https://forem.com/kindavishal/starting-your-life-at-open-source-209m</link>
      <guid>https://forem.com/kindavishal/starting-your-life-at-open-source-209m</guid>
      <description>&lt;h5&gt;
  
  
  &lt;em&gt;It has been more than a year now since I've started contributing to Open Source and I can say, the journey has been very delightful&lt;/em&gt; 💖
&lt;/h5&gt;




&lt;p&gt;As a &lt;a href="https://githubcampus.expert/kindavishal/"&gt;GitHub Campus Expert&lt;/a&gt; and a &lt;a href="https://reps.mozilla.org/u/kindavishal/"&gt;Mozilla Rep&lt;/a&gt;, the most asked question that I've come across is, "How do I contribute to Open Source?". I've been in quite a few meetups and conferences, sometimes even as a speaker and talked about "How to get started contributing to open source", "How to use Git and GitHub" and other such topics; but one thing people ask me very rarely, is "Why should we even contribute to Open Source?", maybe they already know the answer or they don't ask it that often however, here's what I think why one should do it!&lt;/p&gt;

&lt;p&gt;I was introduced to Open Source, or more precisely, Linux in the freshmen years in college. The idea at that time was, one who uses Linux in their daily lives, is one hell of a Computer Science geek and that is who we should be too! Quite a bit overrated statement, but that however got the ball rolling for me and I soon switched to Linux against all the odds and comfort of Windows (which I had been using my entire life till that point).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Bb2x4s5P--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/25972ssvnkr8lieifox2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Bb2x4s5P--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/25972ssvnkr8lieifox2.jpg" alt="Photo by Joe Green on Unsplash"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Curiosity se badh kar koi teacher nahi (Curiosity is the Best Teacher)&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Using &lt;a href="https://en.wikipedia.org/wiki/Linux"&gt;Linux&lt;/a&gt; was the point when I learnt that windows too used linux for their servers and this was in fact the most used OS for servers for almost everything in the world that requires running a server and that it was not owned by one company but was rather maintained by people from all over the world! How amazing is that! People from all over the world, making a software together for free, for everyone to use however they wanted to!&lt;/p&gt;

&lt;h2&gt;
  
  
  Yeah well but where monei in this, hmm Vishal? 💸
&lt;/h2&gt;

&lt;p&gt;As computer science engineers, we're taught to learn the skill to write code for which we get paid, that's all they really tell us! But there's so much more to it than that! Imagine you write a piece of code that changed someone's life, gave someone the ability to walk, to write, to see even! Beautiful right? ✨&lt;br&gt;
That is why one should contribute to Open Source! For the greater good, for the love of it and for the community! Now you might say, "That sounds all sparkles and glitters Vishal, but how does it help us? I mean, after all we cannot live our entire life doing things for free can we?". Well, you'd be surprised to know that open source contributors have some of the most well paid jobs in the industry. That's because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Contributing to an open source project helps to improve it based on real-world experience and proven, working solutions&lt;/li&gt;
&lt;li&gt;Contributing to an open source project helps you gain a much deeper knowledge about the software&lt;/li&gt;
&lt;li&gt;Contributing to open source project helps your reputation and can leverage your career&lt;/li&gt;
&lt;li&gt;Contributing to open source projects you are using in your projects lets you better deal with potential risks and plan for the future&lt;/li&gt;
&lt;li&gt;Contributing to open source projects is fun and gives you personal satisfaction&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All those sum to an experience which one can hardly get through traditional schooling! You could be the next &lt;a href="https://wiki.debian.org/DebianMaintainer"&gt;Maintainer of Debian&lt;/a&gt;, the next to be added to &lt;a href="https://www.mozilla.org/credits/"&gt;the Mozilla Credits page&lt;/a&gt; or even the next open source inspiration this world needs right now 🚀&lt;/p&gt;
&lt;h2&gt;
  
  
  The Community 💖
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Jje6OgDn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jvm76zwcakfrcppr9i1y.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Jje6OgDn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jvm76zwcakfrcppr9i1y.jpg" alt="Photo by Mike Erskine on Unsplash"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Contributing to Open Source has not only been as something I wanted to do for the love of it, but also something that helped me grow career-wise. The best part of being part of open source is the community!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Open Source People are the best kind of People 💙&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As a student, being involved in Open Source has been overwhelmingly rewarding for me. Starting from life long friends to mentors, I've got them all throughout this journey, and this only keeps getting better!&lt;/p&gt;
&lt;h2&gt;
  
  
  Great! Vishal, now tell us how do we get involved! 👀
&lt;/h2&gt;

&lt;p&gt;Getting involved can be quite intimidating and overwhelming in the beginning. Finding the right project, the right community, the right way and so on! You could actually fall into this loop of overthinking  and end up never doing it 😫&lt;br&gt;
Nothing to worry about, we've all been there 😌&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;It's always the first step :)&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To help make your first step easier, try completing this fun activity: &lt;a href="https://gitinit.js.org/"&gt;GitInit 💜&lt;/a&gt;&lt;br&gt;
Next, if you're using &lt;a href="https://github.com/"&gt;GitHub&lt;/a&gt;, I suggest that you checkout the &lt;a href="https://github.com/explore/"&gt;Explore Tab&lt;/a&gt; to find out projects of your choice where you can contribute! Every good open source project would have well laid out &lt;code&gt;README.md&lt;/code&gt;, &lt;code&gt;CONTRIBUTOR.md&lt;/code&gt; and &lt;code&gt;Code of Conduct.md&lt;/code&gt;  file, these files tell us how we can contribute to the project and various other important details that we need to know, read them carefully before you jump into making contributions! The &lt;a href="https://opensource.guide/"&gt;Open Source Guides&lt;/a&gt; talks about all the aspects of Open Source, I highly encourage you to give it a read.&lt;br&gt;
You also don't have to be technically sound to contribute to Open Source! There are a lot of amazing projects and developers whom you can buy a coffee and show your support 😄&lt;br&gt;
Checkout the &lt;a href="https://github.com/sponsors/community"&gt;GitHub Sponsors Community 🚀&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You might also like ✨&lt;br&gt;
&lt;/p&gt;
&lt;div class="ltag__link"&gt;
  &lt;a href="/kindavishal" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uV2Gk5ed--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://res.cloudinary.com/practicaldev/image/fetch/s--egWcjPks--/c_fill%2Cf_auto%2Cfl_progressive%2Ch_150%2Cq_auto%2Cw_150/https://dev-to-uploads.s3.amazonaws.com/uploads/user/profile_image/260501/64556df5-bdd2-46d3-9291-a946d2d3e438.jpg" alt="kindavishal image"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="/gh-campus-experts/a-year-as-a-github-campus-expert-32ai" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;A Year as a GitHub Campus Expert ✨&lt;/h2&gt;
      &lt;h3&gt;Vishal Das (he/him) ・ May 12 ・ 4 min read&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#github&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#community&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#devrel&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;





&lt;p&gt;If you've made it this far, I hope you make too do your part for Open Source soon! Thanks for the read 💛&lt;br&gt;
Until next time,&lt;br&gt;
Vishal&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>newbie</category>
      <category>beginners</category>
      <category>life</category>
    </item>
    <item>
      <title>A Year as a GitHub Campus Expert ✨</title>
      <dc:creator>Vishal Das (he/him)</dc:creator>
      <pubDate>Tue, 12 May 2020 17:41:49 +0000</pubDate>
      <link>https://forem.com/gh-campus-experts/a-year-as-a-github-campus-expert-32ai</link>
      <guid>https://forem.com/gh-campus-experts/a-year-as-a-github-campus-expert-32ai</guid>
      <description>&lt;p&gt;Let me start off by saying, I was &lt;em&gt;simply&lt;/em&gt; hoping from one link to another on GitHub and landed on the Education site, what happened next is what this story is about 😊&lt;/p&gt;

&lt;p&gt;Last February I attended GitHub's first meetup in India, &lt;a href="https://twitter.com/kindavishal/status/1228279778630725633" rel="noopener noreferrer"&gt;The GitHub India Meetup&lt;/a&gt; with my fellow Campus Experts and Alumnus. I will forever cherish that event. During a random conversation with &lt;a href="//twitter.com/khushbooverma_/"&gt;Khushboo&lt;/a&gt;, I realized I had been a CE for a year! So here's my story behind that journey and probably something for you to take away as well 🙂&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;The Pilot&lt;/em&gt;
&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%2F0giu86rg5sag8yvbzdoa.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%2F0giu86rg5sag8yvbzdoa.png" alt="GitHub Campus Experts Landing Page"&gt;&lt;/a&gt;&lt;br&gt;
I am not sure but I think I applied for the program back in August 2018. I was a CSE sophomore student then (a very average one), by the time I was applying for this, I had already been rejected from various other student programs, internships, etc. at this point, I had overcome the fear of getting rejected \o/&lt;br&gt;
Did I feel overwhelmed while applying? No! I simply knew that I wanted to do this and was genuine about why I wanted to, in my application. If you're someone who feels they shouldn't apply because they aren't ready for it, well.. I made it! So can you :)&lt;br&gt;
It took around 2-3 months until I heard back from the team and like everyone applying, I understand the anxiety you face and the patience it takes during that period, it takes time to review that many (~1k or more) applications but it's worth it :)&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;The Launch&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;By this time I was used to check my mails more than the apps Haha! Yeah, that actually happens when you've applied for too many things 😅&lt;br&gt;
I remember this day very clearly, I woke up from my evening nap :p and checked the mail and there it was, I had been accepted for the training! Naturally, I didn't think this was true so I refreshed my mail, read the mail at-least a hundred time (not really, but you geddit). My happiness knew no bounds, for the first time ever, I had been accepted for a program and that too by GitHub! 🥳&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;The Flight&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;As much excited as I was, I couldn't wait to begin the training and learn everything that the program had to offer me! Heads up, I learned a hell lot and I still do everyday from the community. For those of you who don't know what GitHub Campus Experts is about, in short it trains you to lead communities better in your campus. And you maybe able to relate it to the roles of DevRels in the corporate, they are gems for any organization and CEs are nothing less for their communities! I learned about Inclusion, Fear of Missing Out, Diversity, Safe Spaces, Accessibility and many more realities that I never knew existed! During the training, I had created a community in my thoughts, a community that was accessible to all, one that was inclusive to everyone while making it a safe space for everyone to take part in and made sure no one feels left out. As of today, that community goes by &lt;a href="https://twitter.com/MozPunjab" rel="noopener noreferrer"&gt;Mozilla Punjab&lt;/a&gt; 💖&lt;br&gt;
It took me around 4 months to complete the training and on-boarding &lt;em&gt;(this is variable, please don't compare with yours)&lt;/em&gt;, before I became a CE officially on February 2019 🎉&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;The Journey&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;The training had not only helped me learn how communities work and how to make them better, but also helped me overcome imposter syndrome, get out of my comfort zone and meet new people, represent my community at other events, meetups, conferences, the list keeps extending with time! The best thing about being a CE are the people you meet and know.&lt;br&gt;
I've had times when I needed personal advises, suggestions or simply someone to help me out and the people there are always so welcoming and supporting that I never felt that I had to search another place for me, they're extremely sweet 🍰&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;The Future&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;Since GCE happened to me, I have also been a Mozillian for more than a year now and recently became a &lt;a href="https://reps.mozilla.org/u/kindavishal/" rel="noopener noreferrer"&gt;MozRep&lt;/a&gt; officially! As of today, the community of my thoughts which began with a sweet bunch of 5 folks, now is a family of more than 100+ Mozillians and it just keeps growing! I keep studying the needs and struggles of my community members, solve them with the help of a beautiful team of people who started or joined me along in this journey and team up with fellow GCEs, Mozillians and other Community Leaders to bring our communities together to help a larger group of people and help bubble up the most marginalized group of people while helping everyone on the way!&lt;/p&gt;

&lt;p&gt;If you're looking to apply for GitHub Campus Experts, check &lt;a href="https://githubcampus.expert/" rel="noopener noreferrer"&gt;GitHub Campus Experts&lt;/a&gt;! Good Luck 😊&lt;/p&gt;

&lt;p&gt;Until next time folks! 👋&lt;br&gt;
Vishal&lt;/p&gt;

</description>
      <category>github</category>
      <category>community</category>
      <category>devrel</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
