<?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: Anubhav Jain</title>
    <description>The latest articles on DEV Community by Anubhav Jain (@anewbhav).</description>
    <link>https://dev.to/anewbhav</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%2F174747%2F690df768-1a9c-4bab-841d-9ab826fd21eb.jpeg</url>
      <title>DEV Community: Anubhav Jain</title>
      <link>https://dev.to/anewbhav</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anewbhav"/>
    <language>en</language>
    <item>
      <title>Endless Ruby</title>
      <dc:creator>Anubhav Jain</dc:creator>
      <pubDate>Sat, 11 Apr 2020 06:20:35 +0000</pubDate>
      <link>https://dev.to/anewbhav/endless-ruby-13op</link>
      <guid>https://dev.to/anewbhav/endless-ruby-13op</guid>
      <description>&lt;p&gt;A very interesting feature was proposed to be added to Ruby. If you can imagine from the title - Yes! endless Ruby. But in what context? Let's see in this blog post. &lt;/p&gt;

&lt;p&gt;Method definition in Ruby is done this way :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;some_method&lt;/span&gt;
&lt;span class="c1"&gt;# one-line method body&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt; 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The proposal is to allow the below syntax for method definitions&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;value&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;args&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;expression&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You see, there is no end keyword hence endless. &lt;br&gt;
This just applies to method definitions.&lt;/p&gt;

&lt;p&gt;With this in place, the below examples can be considered&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;hello&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;name&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; 
  &lt;span class="nb"&gt;puts&lt;/span&gt; &lt;span class="s2"&gt;"Hello &lt;/span&gt;&lt;span class="si"&gt;#{&lt;/span&gt;&lt;span class="nb"&gt;name&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;!"&lt;/span&gt;

&lt;span class="n"&gt;hello&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'endless Ruby'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="c1"&gt;#=&amp;gt; Hello endless Ruby!&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;square&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;x&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;x&lt;/span&gt;

&lt;span class="nb"&gt;p&lt;/span&gt; &lt;span class="n"&gt;square&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="c1"&gt;#=&amp;gt; 16&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="n"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="no"&gt;Object&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;new&lt;/span&gt;
&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nc"&gt;x&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;foo&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"FOO"&lt;/span&gt;

&lt;span class="nb"&gt;p&lt;/span&gt; &lt;span class="n"&gt;x&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;foo&lt;/span&gt; &lt;span class="c1"&gt;#=&amp;gt; "FOO"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I felt it would a nice thing to add, as we often write one-line methods.&lt;/p&gt;

&lt;p&gt;Discussions on this proposal are happening &lt;a href="https://bugs.ruby-lang.org/issues/16746"&gt;here&lt;/a&gt;. Feel free to visit and express your thoughts.&lt;/p&gt;

</description>
      <category>ruby</category>
      <category>news</category>
      <category>newfeature</category>
      <category>endless</category>
    </item>
    <item>
      <title>10 Days as a Software Developer</title>
      <dc:creator>Anubhav Jain</dc:creator>
      <pubDate>Fri, 30 Aug 2019 13:11:42 +0000</pubDate>
      <link>https://dev.to/anewbhav/10-days-as-a-software-developer-55dp</link>
      <guid>https://dev.to/anewbhav/10-days-as-a-software-developer-55dp</guid>
      <description>&lt;p&gt;A few days back I was at DeccanRubyConf 2019, Pune, India.&lt;br&gt;
There I gave a flash talk. Due to lack of time I had to squish my content down. (I had only 2.5 mins to deliver, but yeah lightning talks are fun.) &lt;/p&gt;

&lt;p&gt;As per me, I think the talk was well received and people enjoyed listening to what I had to talk about. There were a lot of parts which were missed. This post would be an unadulterated version of the content that I wanted to share with the audience.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;P.S:&lt;/strong&gt; The below document would be in the first person, while reading, please imagine, you are listening to me delivering the talk.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Hello people, My name is Anubhav. I go by &lt;a href="https://www.twitter.com/iso_anu"&gt;@iso_anu&lt;/a&gt; on twitter and today I am going to share with you my 10 days as a Software Developer. Yeah, the majority of people here are professional developers, but for me, it was not the case. Prior to this, I was working at an MNC, where I did everything but software development. &lt;/p&gt;

&lt;p&gt;About me, I hail from Saharanpur, a small city in the Indian state of Uttar Pradesh. If you want to know what it is famous for, you can watch a few news channels and you would come to know.&lt;/p&gt;

&lt;p&gt;I like to travel and explore new places, yet I have not traveled much recently. But there is a catch, I was there at RubyKaigi 2019.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Yeah apparently!!.&lt;/strong&gt; 😉&lt;/p&gt;

&lt;p&gt;Actually, I logged an issue on the &lt;a href="https://www.github.com/jruby/jruby"&gt;jRuby's&lt;/a&gt; GitHub repository, which was displayed at RubyKaigi 2019, embedded inside &lt;a href="https://www.twitter.com/headius"&gt;Charles Nutter's&lt;/a&gt; presentation. So yeah, it's worth a small celebration. 🎉 🎊 🎉&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ADMfH9cU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/7fil9w4qv7s55hcus8vs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ADMfH9cU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/7fil9w4qv7s55hcus8vs.png" alt="My face at RubyKaigi 2019"&gt;&lt;/a&gt;&lt;/p&gt;
My face at RubyKaigi 2019



&lt;p&gt;I also like recording and editing videos. The latest is a timelapse I captured during RubyConfIndia 2019, Goa.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/Vg73sGjLCw0"&gt;
&lt;/iframe&gt;
&lt;/p&gt;
RubyConfIndia 2019 Registrations Timelapse



&lt;p&gt;Also, I have recently become a &lt;em&gt;Guns N' Roses&lt;/em&gt; fanboy, so anyone out here has similar interests, we have a topic to discuss. 🙌&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Good News ! !&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now I am Professionally a Software developer. looking forward to a great journey ahead with &lt;a href="https://twitter.com/rtdp"&gt;Ratnadeep&lt;/a&gt; and &lt;a href="https://twitter.com/betacraft_tech"&gt;Betacraft Technologies&lt;/a&gt;. 🍻🍻&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--lfMOJNtO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1032331417277984768/NYhiGf3O_normal.jpg" alt="Anubhav Jain profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Anubhav Jain
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @iso_anu
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ir1kO05j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      The day has come. Now I am officially a software developer. This wouldn't have been possible without the support of my family and all my friends from the ruby community. Thanks &lt;a href="https://twitter.com/rtdp"&gt;@rtdp&lt;/a&gt; for believing in my abilities to be  a part of your team. &lt;a href="https://t.co/sFL2S0gAEt"&gt;twitter.com/iso_anu/status…&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      11:08 AM - 01 Aug 2019
    &lt;/div&gt;

      &lt;div class="ltag__twitter-tweet__quote"&gt;
        &lt;div class="ltag__twitter-tweet__quote__header"&gt;
          &lt;span class="ltag__twitter-tweet__quote__header__name"&gt;
            Anubhav Jain
          &lt;/span&gt;
          @iso_anu
        &lt;/div&gt;
        So today was my first unofficial day at a regular software development job. Thanks 😁
      &lt;/div&gt;

    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1156884486757310464" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fFnoeFxk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1156884486757310464" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k6dcrOn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1156884486757310464" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SRQc9lOp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;It's been 10 days, the experience has been very fulfilling so far.&lt;/p&gt;

&lt;p&gt;Thanks to Ratnadeep for providing me the opportunity to contribute to one of his past projects &lt;strong&gt;WhyLoveRuby&lt;/strong&gt; &lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--i3JOwpme--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/github-logo-ba8488d21cd8ee1fee097b8410db9deaa41d0ca30b004c0c63de0a479114156f.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/betacraft"&gt;
        betacraft
      &lt;/a&gt; / &lt;a href="https://github.com/betacraft/whyloveruby"&gt;
        whyloveruby
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      Collection of reasons to love Ruby.
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="rdoc"&gt;
&lt;p&gt;Checkout the site at -  &lt;a href="https://www.whyloveruby.com" rel="nofollow"&gt;www.whyloveruby.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's an attempt to collect ideas and love for ruby. I hope this would give some real good insights to ruby, as well as some people will get very good pointers to defend ruby while fighting others supporting other languages.&lt;/p&gt;

&lt;p&gt;If you have some idea, suggestion or anything, do post it or submit a pull request. Create an issue and discuss features before pull requests :-)&lt;/p&gt;

&lt;p&gt;Do checkout few awesome current reasons on this site, as well as do post your own reasons !&lt;/p&gt;

&lt;p&gt;Cheers !!&lt;/p&gt;
&lt;/div&gt;



&lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/betacraft/whyloveruby"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;p&gt;I contributed by reviving this age-old ( the last commit was done in 2012 when I started to work on this project ) Rails application to breathe all those zeros and ones after long ~7 years and yes, learning a lot in the process.&lt;/p&gt;

&lt;p&gt;Here, goes the account of the first 10 days of my Software Dev life.&lt;/p&gt;

&lt;p&gt;A little background, all these years, it was running on Rails 3.2 and finally, it got upgraded to v5.2.3. 📣 📣&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The twitter API used for login had changed over time, so the controller and the models needed modifications accordingly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;All of the production data needed to be updated as per the current user information, for example, the current profile picture and Twitter login data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;UI needed a few fixes, which were basically some alignment issues. To pull it off I learned about CSS flex-box and applied the learnings.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;It sounds boring, now some fun stuff!!&lt;/strong&gt; 😆 😉 😃 &lt;/p&gt;

&lt;p&gt;I did all this in these 10 days.&lt;/p&gt;

&lt;h4&gt;
  
  
  Writing interesting git commit messages 😜
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mwTa-tGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/dmisg1vqxrmt87kfvh34.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mwTa-tGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/dmisg1vqxrmt87kfvh34.png" alt="Interesting git commit messages"&gt;&lt;/a&gt;I feel this commit message was an interesting one &lt;/p&gt;

&lt;h4&gt;
  
  
  Messed upto Github history, I did that 🤦
&lt;/h4&gt;


&lt;div class="ltag_github-liquid-tag"&gt;
  &lt;h1&gt;
    &lt;a href="https://github.com/betacraft/whyloveruby/pull/13"&gt;
      &lt;img class="github-logo" alt="GitHub logo" src="https://res.cloudinary.com/practicaldev/image/fetch/s--i3JOwpme--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/github-logo-ba8488d21cd8ee1fee097b8410db9deaa41d0ca30b004c0c63de0a479114156f.svg"&gt;
      &lt;span class="issue-title"&gt;
        Minor fixes
      &lt;/span&gt;
      &lt;span class="issue-number"&gt;#13&lt;/span&gt;
    &lt;/a&gt;
  &lt;/h1&gt;
  &lt;div class="github-thread"&gt;
    &lt;div class="timeline-comment-header"&gt;
      &lt;a href="https://github.com/rtdp"&gt;
        &lt;img class="github-liquid-tag-img" src="https://res.cloudinary.com/practicaldev/image/fetch/s--jEUbFcI1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://avatars0.githubusercontent.com/u/230519%3Fv%3D4" alt="rtdp avatar"&gt;
      &lt;/a&gt;
      &lt;div class="timeline-comment-header-text"&gt;
        &lt;strong&gt;
          &lt;a href="https://github.com/rtdp"&gt;rtdp&lt;/a&gt;
        &lt;/strong&gt; posted on &lt;a href="https://github.com/betacraft/whyloveruby/pull/13"&gt;&lt;time&gt;Aug 09, 2019&lt;/time&gt;&lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag-github-body"&gt;
      &lt;ul&gt;
&lt;li&gt;[x] Change website title to WhyLoveRuby. Need better font.&lt;/li&gt;
&lt;li&gt;[x] Make top letter to have full space, so the image shouldn't get hidden&lt;/li&gt;
&lt;li&gt;[x] Add tweet link. It should open twitter box to tweet with details page link present in there.&lt;/li&gt;
&lt;li&gt;[x] Twitter handles should be linked. Open them in a new tab when clicked.&lt;/li&gt;
&lt;li&gt;[x] Below twitter handle, need to show timestamp when it was posted. Keep it in the same format as timestamps in side panel. This timestamp should be a link taking the user to the details page.&lt;/li&gt;
&lt;li&gt;[x] UpVote button and number above it should be better aligned. Currently, the button is little too left.&lt;/li&gt;
&lt;li&gt;[x] Fix the popup on submit button&lt;/li&gt;
&lt;li&gt;[x] Fix color of username after logging in&lt;/li&gt;
&lt;li&gt;[x] Change website metatags&lt;/li&gt;
&lt;li&gt;[x] Fix alignment in recents section&lt;/li&gt;
&lt;li&gt;[x] Truncate username in recent section&lt;/li&gt;
&lt;/ul&gt;

    &lt;/div&gt;
    &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/betacraft/whyloveruby/pull/13"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
Click to have a look on this mess




&lt;h4&gt;
  
  
  When things don't work, but you have to deliver, you do this 😬
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7uMDgnk7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/cuj95noy60tc206a7s7p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7uMDgnk7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/cuj95noy60tc206a7s7p.png" alt="JUGAAD(Hacky) coding"&gt;&lt;/a&gt;&lt;/p&gt;
One of the few hacks to achieve the output you want



&lt;p&gt;Also, worth noting is,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The time when &lt;code&gt;git rebase&lt;/code&gt; won't do the things which you expect it to do.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;Committing and pushing&lt;/code&gt; while &lt;code&gt;on the way&lt;/code&gt;🚗 to the conference.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;And yes working with a 🔟 - &lt;strong&gt;day&lt;/strong&gt; deadline in the first work week itself. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;And finally, sleeping only &lt;strong&gt;2.5&lt;/strong&gt; hours the last night. 🕒 😴&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thank you, everyone !!&lt;/p&gt;

&lt;h2&gt;
  
  
  Ending Note
&lt;/h2&gt;

&lt;p&gt;Everything here was about loving Ruby so, here is my reason to love it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"I can think and write what I think, and surprisingly that works all the time &lt;strong&gt;(Ok, most of the time)&lt;/strong&gt;."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I love Ruby, and my family knows it. They often troll me. I hope you might also want to see how!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6C7YbxAZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/knjxowecy1vxkerjavw4.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6C7YbxAZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/knjxowecy1vxkerjavw4.jpeg" alt="My love Ruby"&gt;&lt;/a&gt;&lt;/p&gt;
My family leaves no card un-turned to troll me 😆



&lt;p&gt;I request the readers to post the reason why they love Ruby language on&lt;br&gt;
&lt;a href="https://www.whyloveruby.com"&gt;Why Love Ruby&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;It is an open-source project. I loved all that I learned and did while bringing back the project back to life. Feel free to report issues if you face some, or what some features to be added. For ones who are looking for some open-source contribution, this is a great place to start with. Feel free to open PR on the existing issues too.&lt;/p&gt;

&lt;p&gt;😄&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>devlife</category>
      <category>devjournal</category>
    </item>
    <item>
      <title>Manger was pointing a dev coz of a massive production outage. Guess what did the dev say to the manager ?</title>
      <dc:creator>Anubhav Jain</dc:creator>
      <pubDate>Wed, 03 Jul 2019 18:30:46 +0000</pubDate>
      <link>https://dev.to/anewbhav/manger-was-pointing-a-dev-coz-of-a-massive-production-outage-guess-what-did-the-dev-say-to-the-manager-480e</link>
      <guid>https://dev.to/anewbhav/manger-was-pointing-a-dev-coz-of-a-massive-production-outage-guess-what-did-the-dev-say-to-the-manager-480e</guid>
      <description>&lt;p&gt;Now you are&lt;br&gt;
&lt;br&gt;
 &lt;code&gt;git blame&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
ing me ?&lt;/p&gt;

</description>
      <category>jokes</category>
    </item>
  </channel>
</rss>
