<?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: Neto Hog</title>
    <description>The latest articles on DEV Community by Neto Hog (@netohog).</description>
    <link>https://dev.to/netohog</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%2F560724%2F09e5be89-a269-4a0f-a8b5-1c15de80044d.jpeg</url>
      <title>DEV Community: Neto Hog</title>
      <link>https://dev.to/netohog</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/netohog"/>
    <language>en</language>
    <item>
      <title>The F Word</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Thu, 13 May 2021 00:32:07 +0000</pubDate>
      <link>https://dev.to/netohog/the-f-word-27oj</link>
      <guid>https://dev.to/netohog/the-f-word-27oj</guid>
      <description>&lt;p&gt;"Honesty in small things is not a small thing"&lt;/p&gt;

&lt;p&gt;When I read this Danish saying today I thought about the importance, not always properly given, of feedback in our daily lives.&lt;/p&gt;

&lt;p&gt;As a Brazillian, culturally we are a people who are very concerned about the way we speak, about the different interpretations our words may have, and because of this we are not always direct and sincere. This connects with another sentence I read on the same topic.&lt;/p&gt;

&lt;p&gt;"In most companies, the most valuable feedback is never given"&lt;/p&gt;

&lt;p&gt;Have you ever stopped to think about how your career could be in a different spot if you had received proper feedback at that right time? Or if you had been open enough to at least consider the feedback you received that you just ignored?&lt;/p&gt;

&lt;p&gt;Share here in the comments what feedback you wish you had received in the past, or the one you ignored and today consider a mistake.&lt;/p&gt;

&lt;p&gt;Who knows, maybe someone reading this is in a similar moment as you were before! 😉&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>career</category>
    </item>
    <item>
      <title>Bug or Not a Bug?</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Mon, 03 May 2021 22:04:23 +0000</pubDate>
      <link>https://dev.to/netohog/bug-or-not-a-bug-584n</link>
      <guid>https://dev.to/netohog/bug-or-not-a-bug-584n</guid>
      <description>&lt;h2&gt;
  
  
  Quick question!
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;When an issue is considered a bug?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1) Something has been done and it is not working as intended.&lt;/li&gt;
&lt;li&gt;2) Something is working as intended but the planning was flawed.&lt;/li&gt;
&lt;li&gt;3) Something was done and is working as intended but things have changed over time and now the business rule is outdated.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I would like to know what you think, and please share cases where you have been in this doubt as well.&lt;/p&gt;

&lt;p&gt;🤔&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>healthydebate</category>
    </item>
    <item>
      <title>GitHub Alias FTW!</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Thu, 29 Apr 2021 23:01:31 +0000</pubDate>
      <link>https://dev.to/netohog/github-alias-ftw-22da</link>
      <guid>https://dev.to/netohog/github-alias-ftw-22da</guid>
      <description>&lt;p&gt;You know that command that you have to Google every time you need it, or those sequential commands that repeat themselves several times during your day? &lt;/p&gt;

&lt;p&gt;You can create an alias to make your life easier and use those extra seconds you will save to share this tip with your colleagues! Win-win situation! 🙃&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.&amp;lt;&lt;span class="nb"&gt;alias&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'&amp;lt;command&amp;gt;'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For instance, by setting up this alias:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.undo &lt;span class="s1"&gt;'!git reset --soft HEAD~1'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To undo your last commit you just type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git undo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Cool, right? You can also combine commands like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.shipit &lt;span class="s1"&gt;'!git add -A &amp;amp;&amp;amp; git commit -m'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now to stage all my files and comitt I just type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git shipit &lt;span class="s1"&gt;'message so relevant that my mother would be proud'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Do you already use aliases in your daily life? Share it in the comments so I can copy it and avoid fatigue! &lt;/p&gt;

&lt;p&gt;&lt;em&gt;ps: Did you noticed my custom octocat? Check out the awesome artwork by &lt;a href="https://www.instagram.com/omundoealasanha"&gt;Zilart&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;🚀&lt;/p&gt;

</description>
      <category>github</category>
      <category>devops</category>
      <category>tutorial</category>
      <category>productivity</category>
    </item>
    <item>
      <title>GitHub Alias FTW!</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Thu, 29 Apr 2021 22:46:53 +0000</pubDate>
      <link>https://dev.to/netohog/github-alias-ftw-4254</link>
      <guid>https://dev.to/netohog/github-alias-ftw-4254</guid>
      <description>&lt;p&gt;Sabe aquele comando que você tem que consultar o Google toda vez que precisa dele ou aqueles comandos sequenciais que se repetem varias vezes durante o seu dia? &lt;/p&gt;

&lt;p&gt;Você pode criar um atalho, conhecido como &lt;em&gt;alias&lt;/em&gt;, para facilitar a sua vida e utilizar esses segundos extras que vai economizar para compartilhar essa dica com seus colegas! Win-win situation! 🙃&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.&amp;lt;atalho&amp;gt; &lt;span class="s1"&gt;'&amp;lt;comandos&amp;gt;'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Por exemplo, configurando este alias:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.undo &lt;span class="s1"&gt;'!git reset --soft HEAD~1'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Para desfazer o seu ultimo commit basta você digitar:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git undo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Massa né? Você também pode combinar comandos assim:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; alias.shipit &lt;span class="s1"&gt;'!git add -A &amp;amp;&amp;amp; git commit -m'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Agora para preparar todos meus arquivos para subir e comittar eu digito apenas:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git shipit &lt;span class="s1"&gt;'mensagem tão relevante que minha mãe ficaria orgulhosa'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Você já usa alias no seu dia a dia? Compartilhe nos comentários para eu poder copiar e evitar a fadiga! &lt;/p&gt;

&lt;p&gt;Vamo dale! 🚀&lt;/p&gt;

</description>
      <category>github</category>
      <category>devops</category>
      <category>braziliandevs</category>
      <category>portuguese</category>
    </item>
    <item>
      <title>Your Commits Can Be Faster</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Tue, 27 Apr 2021 00:53:32 +0000</pubDate>
      <link>https://dev.to/netohog/your-commits-can-be-faster-4j0f</link>
      <guid>https://dev.to/netohog/your-commits-can-be-faster-4j0f</guid>
      <description>&lt;p&gt;Take two for the price of one!  😎👌&lt;/p&gt;

&lt;p&gt;You know that famous sequence to commit your work "git add + git commit"?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; git commit -am "message so relevant I'm proud to read"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can switch to this command, so you add all the files to your local repository, stage and commit them in sequence.&lt;/p&gt;

&lt;p&gt;Oh, and don't forget to always write a relevant message in your commits, stop the '.' or 'asdasdadsda', ok? 😓🤝&lt;/p&gt;

</description>
      <category>github</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Seu Commit + Rápido</title>
      <dc:creator>Neto Hog</dc:creator>
      <pubDate>Tue, 27 Apr 2021 00:41:22 +0000</pubDate>
      <link>https://dev.to/netohog/seu-commit-rapido-3np9</link>
      <guid>https://dev.to/netohog/seu-commit-rapido-3np9</guid>
      <description>&lt;h2&gt;
  
  
  Leve 2, pague 1! Ou melhor, digite um! 😎👌
&lt;/h2&gt;

&lt;p&gt;Sabe aquela famosa sequência para commitar o seu trabalho "git add + git commit"?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt; git commit -am "mensagem tão relevante que dá orgulho de ler"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Você pode trocar por este comando, assim você adiciona todos os arquivos ao seu repositório local, faz o stage e o commit na sequência.&lt;/p&gt;

&lt;p&gt;Ah, não esqueça de escrever sempre aquela mensagem relevante no seu commit, nada de '.' ou 'hsashhahsah', ok? 😓🤝&lt;/p&gt;

</description>
      <category>github</category>
      <category>portuguese</category>
      <category>braziliandevs</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
