<?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: Binayak</title>
    <description>The latest articles on DEV Community by Binayak (@neonx1820).</description>
    <link>https://dev.to/neonx1820</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%2F3899157%2F62c8f14b-298f-44f3-9437-a7cb646dbcef.png</url>
      <title>DEV Community: Binayak</title>
      <link>https://dev.to/neonx1820</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/neonx1820"/>
    <language>en</language>
    <item>
      <title>Solana Week 1, a beginner's perspective</title>
      <dc:creator>Binayak</dc:creator>
      <pubDate>Sun, 26 Apr 2026 17:55:57 +0000</pubDate>
      <link>https://dev.to/neonx1820/solana-week-1-a-beginners-perspective-1jjd</link>
      <guid>https://dev.to/neonx1820/solana-week-1-a-beginners-perspective-1jjd</guid>
      <description>&lt;p&gt;I just started with 100 days of Solana with MLH. The first week was about keypair identification. I have been a developer in the web2 domain for &amp;gt;5 years and finally thought of trying out web3.&lt;/p&gt;

&lt;p&gt;If you’ve spent years building in Web2, “identity” probably means a combination of usernames, emails, passwords, and maybe OAuth providers. Users sign up, you store their credentials in a database, and your backend decides what they’re allowed to do.&lt;/p&gt;

&lt;p&gt;On Solana, that entire model flips. There are no usernames. No passwords. No “Sign in with Google.”&lt;br&gt;
Instead, identity is just a keypair — and once I understood that, everything else started to make sense.&lt;/p&gt;

&lt;p&gt;When you generate an SSH keypair:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;- You keep the private key on your machine&lt;/li&gt;
&lt;li&gt;- You upload the public key to a server&lt;/li&gt;
&lt;li&gt;- The server lets you in only if you can prove you hold the private key&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;No password needed. No central authority verifying you. Just cryptography.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Solana works almost exactly like this....&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Your public key is your address on the network&lt;/li&gt;
&lt;li&gt;Your private key proves that you own that address&lt;/li&gt;
&lt;li&gt;Instead of one server, the entire Solana network verifies you &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;That’s your identity.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;On Solana, your identity looks more like this:&lt;br&gt;
&lt;code&gt;....mFaf88c8tiVkKz3.....&lt;/code&gt;&lt;br&gt;
That string is your public key, encoded in Base58 (a format designed to avoid confusing characters like 0, O, I, and l).&lt;/p&gt;

&lt;p&gt;One shift that I found was the trade-offs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lose your private key → you lose access permanently&lt;/li&gt;
&lt;li&gt;Leak your private key → someone else becomes you&lt;/li&gt;
&lt;li&gt;No recovery system unless you build one on top&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a Web2 developer like myself, this feels extreme — because it is. But, you are replacing convenience with true ownership.&lt;/p&gt;

</description>
      <category>100daysofsolana</category>
      <category>solana</category>
      <category>web3</category>
      <category>blockchain</category>
    </item>
  </channel>
</rss>
