<?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: Parth Krishna</title>
    <description>The latest articles on Forem by Parth Krishna (@thenerdsuperuser).</description>
    <link>https://forem.com/thenerdsuperuser</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%2F35053%2F315d9cff-ee89-44b5-81b5-3e7dec6b003e.jpeg</url>
      <title>Forem: Parth Krishna</title>
      <link>https://forem.com/thenerdsuperuser</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/thenerdsuperuser"/>
    <language>en</language>
    <item>
      <title>Coding movie hacking tools</title>
      <dc:creator>Parth Krishna</dc:creator>
      <pubDate>Sat, 27 Feb 2021 15:40:42 +0000</pubDate>
      <link>https://forem.com/thenerdsuperuser/coding-movie-hacking-tools-4ngh</link>
      <guid>https://forem.com/thenerdsuperuser/coding-movie-hacking-tools-4ngh</guid>
      <description>&lt;p&gt;So I thought of creating some tools, UI, emulations and stuff which are showed when someone is hacking in a movie.&lt;/p&gt;

&lt;p&gt;What are some of the interesting things you can think of?&lt;/p&gt;

&lt;p&gt;And if someone is interested, I have created a &lt;a href="https://github.com/seireiden/"&gt;github organization&lt;/a&gt; for the same. You can comment down your ideas, or add an issue on the repo and I will add you and we can collaborate and code.&lt;/p&gt;

&lt;p&gt;tl;dr - what's something cool you want to build?&lt;/p&gt;

</description>
      <category>tools</category>
      <category>hacking</category>
      <category>movie</category>
      <category>scripting</category>
    </item>
    <item>
      <title>Github Deprecates Password Authentication Part 1</title>
      <dc:creator>Parth Krishna</dc:creator>
      <pubDate>Mon, 11 Jan 2021 17:13:21 +0000</pubDate>
      <link>https://forem.com/thenerdsuperuser/github-deprecates-password-authentication-part-1-447g</link>
      <guid>https://forem.com/thenerdsuperuser/github-deprecates-password-authentication-part-1-447g</guid>
      <description>&lt;p&gt;WTF Github, I ended up writing this whole blog post again. ugh.&lt;/p&gt;

&lt;p&gt;It all started with an email github sent titled "Deprecation Notice".&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2bED4gsu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thenerdsuperuser.xyz/assets/images/deprecation_mail.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2bED4gsu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thenerdsuperuser.xyz/assets/images/deprecation_mail.png" alt="Deprecation Notice" title="Scary, isn't it?"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Apparently, last month Github thought of &lt;a href="https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/"&gt;deprecating the password based authentication&lt;/a&gt; for it's repositories. They switched to either of the two methods instead:   &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;a href="https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/creating-a-personal-access-token"&gt;Personal Authentication Token&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/connecting-to-github-with-ssh"&gt;SSH Authentication&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Now this came as a shocker, even though the deadline is &lt;a href="https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/#:~:text=Beginning,2021"&gt;August 13, 2021&lt;/a&gt;. Although they have published it on their blog, not many people have come to know about it, atleast none of my friends. So more the need to bring it out to notice.&lt;/p&gt;

&lt;p&gt;Now, why are we using an SSH/PAT based approach exactly? I mean, it was fine while we were using the usual password based authentication. Well, as we know, tokens have been used everywhere. Be it a django app, or a password reset form which I am pretty sure everyone reading this has filled, atleast twice.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;and if not, then wow, you have either a very good memory, or you need to update your passwords!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Coming back to PAT. The reasons it is preffered are:   &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Unique&lt;/strong&gt; – tokens are specific to GitHub and can be generated per use or per device.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Revocable&lt;/strong&gt; – tokens can can be individually revoked at any time without needing to update unaffected credentials.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Limited&lt;/strong&gt; – tokens can be narrowly scoped to allow only the access necessary for the use case.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Random&lt;/strong&gt; – tokens are not subject to the types of dictionary or brute force attempts that simpler passwords that you need to remember or enter regularly might be.
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is a 3 part blog, where I will be showing you what the changes are, and how to enable SSH based auth and create Personal Authentication Tokens. &lt;/p&gt;

&lt;p&gt;Feel free to contact me over &lt;a href="https://twitter.com/vimoveremacs"&gt;twitter&lt;/a&gt;!&lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>git</category>
      <category>ssh</category>
    </item>
    <item>
      <title>happiness is when your pull request is merged :3</title>
      <dc:creator>Parth Krishna</dc:creator>
      <pubDate>Sat, 30 Sep 2017 16:53:52 +0000</pubDate>
      <link>https://forem.com/thenerdsuperuser/happiness-is-when-your-pull-request-is-merged-3-53k</link>
      <guid>https://forem.com/thenerdsuperuser/happiness-is-when-your-pull-request-is-merged-3-53k</guid>
      <description></description>
      <category>coding</category>
      <category>github</category>
    </item>
  </channel>
</rss>
