<?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: imbhanubista</title>
    <description>The latest articles on DEV Community by imbhanubista (@imbhanubista).</description>
    <link>https://dev.to/imbhanubista</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%2F693191%2F0fb28538-9a46-4e2e-bb4b-a58121f8e7b9.png</url>
      <title>DEV Community: imbhanubista</title>
      <link>https://dev.to/imbhanubista</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/imbhanubista"/>
    <language>en</language>
    <item>
      <title>7 websites a developer should definitely check to change their life (trust me):</title>
      <dc:creator>imbhanubista</dc:creator>
      <pubDate>Sun, 21 Aug 2022 02:53:40 +0000</pubDate>
      <link>https://dev.to/imbhanubista/7-websites-a-developer-should-definitely-check-to-change-their-life-trust-me-2dn0</link>
      <guid>https://dev.to/imbhanubista/7-websites-a-developer-should-definitely-check-to-change-their-life-trust-me-2dn0</guid>
      <description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Scribe&lt;br&gt;
Screen recording extension that turns any process into a guide instantly.&lt;br&gt;
🔗 &lt;a href="http://scribe.how/chrome"&gt;http://scribe.how/chrome&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;EditorX&lt;br&gt;
Make your own website with just a few clicks and drag and drop.&lt;br&gt;
You can also write your custom code if you want.&lt;br&gt;
🔗 &lt;a href="https://editorx.com"&gt;https://editorx.com&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Prohura&lt;br&gt;
Divide your projects into steps that clients can follow along.&lt;br&gt;
Prohura simply reduces the loops with your client and keeps your client up to date.&lt;br&gt;
🔗 &lt;a href="http://Prohura.com"&gt;http://Prohura.com&lt;/a&gt; #ad&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Prohura&lt;br&gt;
Divide your projects into steps that clients can follow along.&lt;br&gt;
Prohura simply reduces the loops with your client and keeps your client up to date.&lt;br&gt;
🔗 &lt;a href="http://Prohura.com"&gt;http://Prohura.com&lt;/a&gt; #ad&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sorting Algorithms&lt;br&gt;
Learn sorting algorithms visually and intuitively.&lt;br&gt;
🔗 &lt;a href="https://toptal.com/developers/sorting-algorithms"&gt;https://toptal.com/developers/sorting-algorithms&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Digger&lt;br&gt;
Low code tool that can generate infrastructure for your code in your AWS account. So you can build on AWS without having to learn it.&lt;br&gt;
🔗 &lt;a href="http://digger.dev"&gt;http://digger.dev&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Learn Anything&lt;br&gt;
Search anything here, and it will show you the correct roadmap with all the necessary resources&lt;br&gt;
🔗 &lt;a href="https://learn-anything.xyz"&gt;https://learn-anything.xyz&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;**&lt;/p&gt;

&lt;p&gt;**- &amp;gt; Thanks for checking this out.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&amp;gt; You can follow me for more update ...&lt;/li&gt;
&lt;li&gt;&amp;gt; . I generally write about web development. 😁**
**&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>If you're a programmer, these 10 git commands will save you hours of research🧵👇</title>
      <dc:creator>imbhanubista</dc:creator>
      <pubDate>Thu, 18 Aug 2022 15:28:19 +0000</pubDate>
      <link>https://dev.to/imbhanubista/if-youre-a-programmer-these-10-git-commands-will-save-you-hours-of-research-1nmj</link>
      <guid>https://dev.to/imbhanubista/if-youre-a-programmer-these-10-git-commands-will-save-you-hours-of-research-1nmj</guid>
      <description>&lt;p&gt;Pull from remote overwriting local changes.&lt;/p&gt;

&lt;p&gt;i) git stash (revert and stash changes locally)&lt;br&gt;
ii) git pull (pull from remote normally)&lt;/p&gt;

&lt;p&gt;tip: to retrieve changes, do 'git stash apply'&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Delete only untracked files from working tree&lt;br&gt;
git clean -f -d&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Unstage files from index (but keep the files locally)&lt;br&gt;
git rm --cached&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Undo a merge&lt;br&gt;
i) git checkout branch-name&lt;br&gt;
ii) git log --oneline&lt;br&gt;
iii) git revert -m commit-id&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Remove a file from remote&lt;br&gt;
i) git rm filename (remove file from git)&lt;br&gt;
ii) git commit -m "commit message"&lt;br&gt;
iii) git push&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Undo last n commits&lt;br&gt;
git reset --soft HEAD^n (where n is the number of last commits you want to undo)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;See diff between branches&lt;br&gt;
git diff branch_1..branch_2&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Remove a tag from branch&lt;br&gt;
i) git push origin :refs/tags/tagname&lt;br&gt;
ii) git tag -d&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Rename a branch locally &amp;amp; remote&lt;br&gt;
i) git checkout old-branch&lt;br&gt;
ii) git branch -m new-name&lt;br&gt;
iii) git push origin :old-name new-name&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Move existing, uncommitted work to a new branch&lt;br&gt;
git switch -c  (git 2.3 onwards)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>📌 Spend $0 to learn HTML and CSS. 🧵 3 FREE resources to learn it 👇</title>
      <dc:creator>imbhanubista</dc:creator>
      <pubDate>Wed, 10 Aug 2022 16:51:10 +0000</pubDate>
      <link>https://dev.to/imbhanubista/spend-0-to-learn-html-and-css-3-free-resources-to-learn-it-1gl4</link>
      <guid>https://dev.to/imbhanubista/spend-0-to-learn-html-and-css-3-free-resources-to-learn-it-1gl4</guid>
      <description>&lt;ol&gt;
&lt;li&gt;FreeCodeCamp:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I don't think you need me to tell you how awesome FreeCodeCamp is and this course proves that.&lt;/p&gt;

&lt;p&gt;It is over 300 hours long and will set you up for a great front-end dev career.&lt;/p&gt;

&lt;p&gt;🌍 Check it out here: &lt;br&gt;
(&lt;a href="https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/"&gt;https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;2.** Scrimba:**&lt;/p&gt;

&lt;p&gt;Scrimba is one of my all-time favorite destinations for high-quality courses and once you take this one, you'll know why I love it so much.&lt;/p&gt;

&lt;p&gt;This one also has 5 projects that you can do to cement your knowledge&lt;br&gt;
🌍 Check it out here:&lt;br&gt;
(&lt;a href="https://scrimba.com/learn/htmlandcss"&gt;https://scrimba.com/learn/htmlandcss&lt;/a&gt;)&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Frontend Mentor:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After having learned the syntax, the time is now to practice.&lt;/p&gt;

&lt;p&gt;And this resource is just for that.&lt;/p&gt;

&lt;p&gt;You'll get to work on professional designs and hone your skills.&lt;/p&gt;

&lt;p&gt;🌍 Link: (&lt;a href="https://frontendmentor.io"&gt;https://frontendmentor.io&lt;/a&gt;)&lt;/p&gt;

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