<?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: hmble</title>
    <description>The latest articles on DEV Community by hmble (@hmble).</description>
    <link>https://dev.to/hmble</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%2F152256%2F20bbc8ef-b3fc-45d5-a1c4-1516cf1234c1.jpeg</url>
      <title>DEV Community: hmble</title>
      <link>https://dev.to/hmble</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hmble"/>
    <language>en</language>
    <item>
      <title>How to add changes to previous git commit ?</title>
      <dc:creator>hmble</dc:creator>
      <pubDate>Wed, 18 Nov 2020 04:52:00 +0000</pubDate>
      <link>https://dev.to/hmble/how-to-add-changes-to-previous-git-commit-1f9h</link>
      <guid>https://dev.to/hmble/how-to-add-changes-to-previous-git-commit-1f9h</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--knLndFoy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://source.unsplash.com/YSVI6tLRrz4" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--knLndFoy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://source.unsplash.com/YSVI6tLRrz4" alt="Unsplash image"&gt;&lt;/a&gt;&lt;br&gt;
 &lt;em&gt;Photo by&lt;/em&gt; &lt;a href="https://source.unsplash.com/YSVI6tLRrz4"&gt;Rod Long&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sooo aapne koi changes commit kiye aur ab aapko us commit me aur changes add karne hai, well lets use magic of git.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ git commit --amend --no-edit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Explanation
&lt;/h2&gt;

&lt;p&gt;This command adds staged changes to previous commit without editing commit message.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;NOTE :&lt;/strong&gt;&lt;br&gt;
Previous commit me changes amend karne se us commit ka &lt;code&gt;&amp;lt;sha&amp;gt;&lt;/code&gt; change hota hai.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I know this is a short blog but I am trying to keep myself consistent to write a blog each day. I'll be glad if mai aapki help kar paaya to.&lt;/p&gt;

&lt;p&gt;Feel free to say hi &lt;a href="https://twitter.com/hmbledev"&gt;@hmbledev&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>hindi</category>
      <category>git</category>
    </item>
    <item>
      <title>How to use rename unix utility command ?</title>
      <dc:creator>hmble</dc:creator>
      <pubDate>Fri, 13 Nov 2020 02:14:37 +0000</pubDate>
      <link>https://dev.to/hmble/how-to-use-rename-unix-utility-command-38gn</link>
      <guid>https://dev.to/hmble/how-to-use-rename-unix-utility-command-38gn</guid>
      <description>&lt;p&gt;Aaj hum &lt;code&gt;rename&lt;/code&gt; command k perl version k baare me padenge.&lt;/p&gt;

&lt;p&gt;Hum perl version of &lt;code&gt;rename&lt;/code&gt; command ka use saare whitespace character ko ek sath remove ya change karne k liye use kar sakte. Lets see an example jaha hum se jyada files jinke name me whitespace hai usse &lt;code&gt;-&lt;/code&gt; change kaise kar sakte.&lt;/p&gt;

&lt;p&gt;Us se pahle lets see how we can install perl version of rename.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install rename in Ubuntu
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo apt install rename
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Install rename in Centos or Fedora
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo yum install prename
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Install rename in Arch Linux
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo pacman -s perl-rename
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Considering k aapne successfully rename command install kar li ab hum dekhte k hai k batch rename kaise kar sakte.&lt;/p&gt;

&lt;h2&gt;
  
  
  Remove whitespace from a filename
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ rename 'y/ /-/g' *.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>unix</category>
      <category>hindi</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Why I started writing blog posts in Hindi ?</title>
      <dc:creator>hmble</dc:creator>
      <pubDate>Tue, 10 Nov 2020 03:59:40 +0000</pubDate>
      <link>https://dev.to/hmble/why-i-started-writing-blog-posts-in-hindi-3ab8</link>
      <guid>https://dev.to/hmble/why-i-started-writing-blog-posts-in-hindi-3ab8</guid>
      <description>&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt;&lt;br&gt;
I published my first blog at &lt;a href="https://hmble.dev"&gt;https://hmble.dev&lt;/a&gt;&lt;br&gt;
It is translated in both hindi and english. I hope you like it.&lt;/p&gt;

&lt;p&gt;Heres the &lt;a href="https://hmble.dev/blog/how-to-use-rename-unix-utility-command/"&gt;link&lt;/a&gt; for hindi and &lt;a href="https://hmble.dev/en/blog/how-to-use-rename-unix-utility-command/"&gt;link&lt;/a&gt; English translation&lt;/p&gt;




&lt;p&gt;My native langauge is Hindi and I feel comfortable to share my knowledge in my own native language. I feel less confident when I write blog posts in English. Now that being said, other reason to write blog posts in Hindi is that there are many native prpgrammers like me who don't have a good grasp on English. I want to target those programmers and help them learn programming without the hassle of understanding english first.&lt;/p&gt;

&lt;p&gt;There were many times where I lost reading blog posts just because I couldn't understand indentended meaning of sentence written in English. &lt;/p&gt;

&lt;p&gt;There are very less written content in Hindi and most of them are mainly video content. So I thought, why not write a post in Hindi ( Hinglish ) and help those who need Hindi content.&lt;/p&gt;

&lt;h3&gt;
  
  
  What do I mean by Hindi(Hinglish) ?
&lt;/h3&gt;

&lt;p&gt;Hindi language is quite tough to write on keyboard. Most of us use Hinglish ( Hindi words spelled in English with no grammer rules ). This makes it easier to write blog posts faster and easier to read because of out habit to read Hinglish in our daily routines.&lt;/p&gt;

&lt;p&gt;So what are your thoughts about this idea of writing blogs in Hindi ? Please share in the comment below.&lt;/p&gt;

&lt;p&gt;Also will it be okay if I share those blogs here on dev.to ? &lt;/p&gt;

</description>
      <category>blog</category>
      <category>hindi</category>
    </item>
  </channel>
</rss>
