<?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: Sanjana</title>
    <description>The latest articles on DEV Community by Sanjana (@hinata25s).</description>
    <link>https://dev.to/hinata25s</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2198085%2F07cf7d37-e860-4c1a-b2b1-f8a3b101b2a3.png</url>
      <title>DEV Community: Sanjana</title>
      <link>https://dev.to/hinata25s</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hinata25s"/>
    <language>en</language>
    <item>
      <title>I Didn’t Get GSoC. I Wrote a Grails Guide Anyway.</title>
      <dc:creator>Sanjana</dc:creator>
      <pubDate>Mon, 08 Jun 2026 18:37:18 +0000</pubDate>
      <link>https://dev.to/hinata25s/i-didnt-get-gsoc-i-wrote-a-grails-guide-anyway-o3i</link>
      <guid>https://dev.to/hinata25s/i-didnt-get-gsoc-i-wrote-a-grails-guide-anyway-o3i</guid>
      <description>&lt;p&gt;Last year, in my first year of BTech, I heard about &lt;strong&gt;Hacktoberfest&lt;/strong&gt;.&lt;br&gt;
Tooooo lateee.&lt;br&gt;
By the time I found out what it was, people were already posting screenshots, "6 successful PRs, green squares, the whole thing". I didn't even knew what I was looking at, but I wanted that feeling. PRs felt like something big, something people with extreme knowledge did. Not first-year-me with four Git commands and a lot of confidence.&lt;br&gt;
Then January came. &lt;strong&gt;GSoC&lt;/strong&gt;&lt;br&gt;
I asked people about it. Watched YouTube videos. Sat in sessions where people talked about raising PRs, like it was a separate sport inside open source.&lt;br&gt;
"org, repo, issue, PR"...Ohh myyy godddd, that was a lot!!&lt;br&gt;
Those words felt heavy. Like a door with no handle. All i knew was&lt;br&gt;
PR = Pull Request&lt;br&gt;
That was basically my entire vocabulary.&lt;br&gt;
I wanted to do it. I also found it boring in the way hard things are boring when you don't know where to start, so I gave up.&lt;br&gt;
Later that year I decided to give GSoC my 100%.&lt;br&gt;
I picked an org &lt;em&gt;52°North&lt;/em&gt; and tried to act like I belonged there. I asked them to assign me an issue.&lt;br&gt;
Three months. No reply.&lt;br&gt;
Around that time, a professor in college told me something I still remember:&lt;br&gt;
"I know students like you. You don't actually want to do it. You're just here because of the crowd."&lt;br&gt;
Maybe he was wrong. Maybe he was right about half of it.&lt;br&gt;
Either way, it landed on my head.&lt;br&gt;
I switched orgs. &lt;em&gt;Apache&lt;/em&gt;&lt;br&gt;
I stopped waiting for someone to hand me an issue and started treating open source like a real job.&lt;br&gt;
I installed GitHub on my phone. There were stretches where I slept 2–3 hours, sat through 7–8 hours of college, and spent whatever was left on issues and PRs. Classes became secondary. Exams became secondary. This became primary.&lt;br&gt;
Not because I had some cinematic dream of &lt;strong&gt;"cracking GSoC."&lt;/strong&gt;&lt;br&gt;
But because when you give something your full effort, you start expecting something back. That's normal human behaviour.&lt;br&gt;
&lt;em&gt;Results day&lt;/em&gt;&lt;br&gt;
GSoC results came.&lt;br&gt;
The projects I applied to?&lt;br&gt;
None of them were even listed.&lt;br&gt;
Not rejected. Not waitlisted. Just… not there.&lt;br&gt;
&lt;em&gt;(I have a lot of bad luck. More than a black cat - just kiddinggg.)&lt;/em&gt;&lt;br&gt;
That one hurt differently from failing an exam. I hadn't half-assed this. I had actually shown up.&lt;br&gt;
The plot twist nobody warns you about&lt;br&gt;
A few weeks later — &lt;em&gt;internship offer&lt;/em&gt;&lt;br&gt;
From the same project I'd been contributing to.&lt;br&gt;
The one that never even got a GSoC slot.&lt;br&gt;
So no, it didn't play out like the Instagram reel. No acceptance letter. No "GSoC contributor" badge. But the work was real. The PRs were real. The maintainers who reviewed my code were real.&lt;br&gt;
Hardwork paid off. Just not in the shape I rehearsed in my head.&lt;br&gt;
Then they asked me to write a guide&lt;br&gt;
Somewhere between all the PRs and the late nights, I ended up writing documentation.&lt;br&gt;
Not a random README. A full Grails 8 guide, Data Access with GORM, with a sample app, tests, and chapters meant to live on the Apache site. Two open PRs: the sample code and the guide prose.&lt;br&gt;
I thought the hard part would be learning GORM — domains, associations, queries, all of that.&lt;br&gt;
It was not.&lt;br&gt;
The hard part was finding out my first draft was wrong in quiet ways, the kind where everything looks fine until someone who actually knows Grails reads it.&lt;br&gt;
Green tests lied to me (kind of)&lt;br&gt;
I had a search feature. Unit tests passed. I felt clever.&lt;br&gt;
Turns out I was matching titles in a case-sensitive way. Fine in a small in-memory test. Not fine for how people actually search on PostgreSQL. Someone reviewing my work pointed that out. I switched to ilike and wrote an integration test that hits a real Postgres database through Testcontainers.&lt;br&gt;
Same story with validation. Bad input was coming back as a 500. It should have been 422. One missing validate() call. Easy fix once you see it. Invisible if you only trust green unit tests.&lt;br&gt;
And then there was HQL. The guide talked about it. The tests were named after it. The code???&lt;br&gt;
Not HQL at all, just a where query wearing the wrong label. The app worked. The docs did not. Fixing that meant real executeQuery, honest naming, and tests that run against an actual database.&lt;br&gt;
None of this showed up in any tutorial I watched. It showed up in review.&lt;br&gt;
Same feeling, different tool&lt;br&gt;
Last post I wrote about Git, four commands, fake confidence, then a merge conflict that humbles you fast.&lt;br&gt;
This felt like that.&lt;br&gt;
Except instead of CONFLICT (content), it was comment #5 on my PR. Or ./gradlew integrationTest failing at 2am.&lt;br&gt;
I am starting to recognise the pattern. The moment I feel like I know something is usually the moment I am about to learn I do not.&lt;br&gt;
&lt;strong&gt;What I would tell first-year me&lt;/strong&gt;&lt;br&gt;
You do not need to be the smartest person in the room to write a guide or open a PR. You need to be okay looking dumb long enough to get less dumb.&lt;br&gt;
A first draft is not the finished thing. Mine got better only after someone tore it apart... politely, but thoroughly, and I actually fixed what they pointed out.&lt;br&gt;
Both PRs are still in review. That feels right. First guide. Still learning. Still doing it in public.&lt;br&gt;
If you have ever worked hard on something and had the outcome look nothing like what you pictured, same. Keep going anyway.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>learning</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I Thought I Knew GitHub</title>
      <dc:creator>Sanjana</dc:creator>
      <pubDate>Sat, 06 Jun 2026 19:31:59 +0000</pubDate>
      <link>https://dev.to/hinata25s/i-thought-i-knew-github-36cj</link>
      <guid>https://dev.to/hinata25s/i-thought-i-knew-github-36cj</guid>
      <description>&lt;p&gt;Back when I got my very first internship in my first year of BTech, I genuinely thought i had git figured out. &lt;br&gt;
I had watched those 6-8 hour long YT tutorials, the "Complete Git &amp;amp; GitHub in OneShot" type. I took notes, I practised, I felt ready.&lt;/p&gt;

&lt;p&gt;My mental model of Git at that time.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone
git add &lt;span class="nb"&gt;.&lt;/span&gt;
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"done"&lt;/span&gt;
git push

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it, that's git.&lt;br&gt;
Then I started working on actual projects with actual people.&lt;br&gt;
Someone brought up rebasing. I nodded like I knew. Someone else mentioned squashing commits before raising a PR. More nodding. Then a merge conflict showed up, not a simple two-line thing, but a full-blown history of diverged work&lt;br&gt;
and my four commands were completely useless.&lt;br&gt;
I learned more in two weeks on that team than from all those hours of video content combined. (i realised those videos were useless, i've succefully wasted my time on those yt things)&lt;/p&gt;

&lt;p&gt;Eventually I rebuilt some confidence. I started contributing to open source, submitting PRs, working with maintainers. That felt real. I had comments on my code. I had merged contributions. I thought — "okay, now I know Git".&lt;br&gt;
Then during my current internship, I'm sitting with someone, and they just casually use &lt;code&gt;git reset --soft&lt;/code&gt; mid-explanation. Pull out &lt;code&gt;sed -i&lt;/code&gt; to edit a file. Chain a few things together without even thinking about it.&lt;br&gt;
I knew those commands existed. I had probably seen them in some tutorial. But I had never used them like that, as instinct, not as something you have to look up first.&lt;br&gt;
That quiet confidence cracked again.&lt;/p&gt;

&lt;p&gt;And honestly, Git was just one part of it.&lt;br&gt;
I still remember a &lt;strong&gt;treasure hunt&lt;/strong&gt; we had &lt;strong&gt;"CTF-style"&lt;/strong&gt;, based on OverTheWire. I went into it thinking I was decent at Linux. I used the terminal regularly. &lt;code&gt;cd, ls, rm, chmod&lt;/code&gt; means I knew the basics.&lt;br&gt;
The first challenge loaded and I just... stared at it. The commands I used every single day weren't getting me anywhere. The problems weren't testing what I knew. They were testing all the stuff I didn't even know I was missing.&lt;br&gt;
That's a different kind of stuck. It's not "I can't remember the syntax." It's "I don't even know what to google right now."&lt;br&gt;
I felt completely dumb that day. No other way to say it.&lt;/p&gt;

&lt;p&gt;The weird thing is, this keeps happening. At different levels, with different tools.&lt;br&gt;
Last year I thought Git was four commands. Now I know it's way more than that, and I'm still finding things I didn't know I didn't know. Same with Linux. Same with frameworks, debugging, system design, all of it.&lt;br&gt;
Some days it genuinely feels like I know a lot. Other days I open a codebase or sit in a call and feel like I'm starting from zero again.&lt;br&gt;
It's weird. But I've kind of started to enjoy it.&lt;br&gt;
Because the moment I feel like I know nothing is usually the moment I'm about to learn something.&lt;br&gt;
I guess i love the feeling when i feel DUMB and that, more than anything, &lt;br&gt;
&lt;em&gt;kiddinggggg&lt;/em&gt;.&lt;br&gt;
Not knowing is what keeps this whole thing interesting.&lt;br&gt;
Tutorials can get you started. But real understanding comes from building things, breaking things, contributing, asking dumb questions, &lt;em&gt;and sometimes avoiding asking dumb questions to not feel dumb&lt;/em&gt;, and working with people who know more than you &lt;strong&gt;a lot more than you&lt;/strong&gt;.&lt;br&gt;
That's still how it works, even now.&lt;/p&gt;

&lt;p&gt;If you've had one of those "wait, I actually know nothing" moments, I'd love to hear it in the comments.&lt;/p&gt;

&lt;p&gt;This is an expanded version of something I originally posted &lt;a href="https://www.linkedin.com/feed/update/urn:li:activity:7468759822893502464/" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>opensource</category>
      <category>beginners</category>
    </item>
    <item>
      <title>I Thought I Knew GitHub</title>
      <dc:creator>Sanjana</dc:creator>
      <pubDate>Sat, 06 Jun 2026 19:31:59 +0000</pubDate>
      <link>https://dev.to/hinata25s/i-thought-i-knew-github-2gj8</link>
      <guid>https://dev.to/hinata25s/i-thought-i-knew-github-2gj8</guid>
      <description>&lt;p&gt;Back when I got my very first internship in my first year of BTech, I genuinely thought i had git figured out. &lt;br&gt;
I had watched those 6-8 hour long YT tutorials, the "Complete Git &amp;amp; GitHub in OneShot" type. I took notes, I practised, I felt ready.&lt;/p&gt;

&lt;p&gt;My mental model of Git at that time.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone
git add &lt;span class="nb"&gt;.&lt;/span&gt;
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"done"&lt;/span&gt;
git push

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it, that's git.&lt;br&gt;
Then I started working on actual projects with actual people.&lt;br&gt;
Someone brought up rebasing. I nodded like I knew. Someone else mentioned squashing commits before raising a PR. More nodding. Then a merge conflict showed up, not a simple two-line thing, but a full-blown history of diverged work&lt;br&gt;
and my four commands were completely useless.&lt;br&gt;
I learned more in two weeks on that team than from all those hours of video content combined. (i realised those videos were useless, i've succefully wasted my time on those yt things)&lt;/p&gt;

&lt;p&gt;Eventually I rebuilt some confidence. I started contributing to open source, submitting PRs, working with maintainers. That felt real. I had comments on my code. I had merged contributions. I thought — "okay, now I know Git".&lt;br&gt;
Then during my current internship, I'm sitting with someone, and they just casually use &lt;code&gt;git reset --soft&lt;/code&gt; mid-explanation. Pull out &lt;code&gt;sed -i&lt;/code&gt; to edit a file. Chain a few things together without even thinking about it.&lt;br&gt;
I knew those commands existed. I had probably seen them in some tutorial. But I had never used them like that, as instinct, not as something you have to look up first.&lt;br&gt;
That quiet confidence cracked again.&lt;/p&gt;

&lt;p&gt;And honestly, Git was just one part of it.&lt;br&gt;
I still remember a &lt;strong&gt;treasure hunt&lt;/strong&gt; we had &lt;strong&gt;"CTF-style"&lt;/strong&gt;, based on OverTheWire. I went into it thinking I was decent at Linux. I used the terminal regularly. &lt;code&gt;cd, ls, rm, chmod&lt;/code&gt; means I knew the basics.&lt;br&gt;
The first challenge loaded and I just... stared at it. The commands I used every single day weren't getting me anywhere. The problems weren't testing what I knew. They were testing all the stuff I didn't even know I was missing.&lt;br&gt;
That's a different kind of stuck. It's not "I can't remember the syntax." It's "I don't even know what to google right now."&lt;br&gt;
I felt completely dumb that day. No other way to say it.&lt;/p&gt;

&lt;p&gt;The weird thing is, this keeps happening. At different levels, with different tools.&lt;br&gt;
Last year I thought Git was four commands. Now I know it's way more than that, and I'm still finding things I didn't know I didn't know. Same with Linux. Same with frameworks, debugging, system design, all of it.&lt;br&gt;
Some days it genuinely feels like I know a lot. Other days I open a codebase or sit in a call and feel like I'm starting from zero again.&lt;br&gt;
It's weird. But I've kind of started to enjoy it.&lt;br&gt;
Because the moment I feel like I know nothing is usually the moment I'm about to learn something.&lt;br&gt;
I guess i love the feeling when i feel DUMB And that, more than anything, &lt;em&gt;kidding&lt;/em&gt;.&lt;br&gt;
Not knowing is what keeps this whole thing interesting.&lt;br&gt;
Tutorials can get you started. But real understanding comes from building things, breaking things, contributing, asking dumb questions, &lt;em&gt;and sometimes avoiding asking dumb questions to not feel dumb&lt;/em&gt;, and working with people who know more than you &lt;strong&gt;a lot more than you&lt;/strong&gt;.&lt;br&gt;
That's still how it works, even now.&lt;/p&gt;

&lt;p&gt;If you've had one of those "wait, I actually know nothing" moments, I'd love to hear it in the comments.&lt;/p&gt;

&lt;p&gt;This is an expanded version of something I originally posted &lt;a href="https://www.linkedin.com/feed/update/urn:li:activity:7468759822893502464/" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>opensource</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
