<?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: Hrushikesh Joshi</title>
    <description>The latest articles on DEV Community by Hrushikesh Joshi (@hrushikesh_joshi_f694250b).</description>
    <link>https://dev.to/hrushikesh_joshi_f694250b</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%2F1739609%2Fc63f61d8-6455-440b-9019-4744d9886a7a.jpg</url>
      <title>DEV Community: Hrushikesh Joshi</title>
      <link>https://dev.to/hrushikesh_joshi_f694250b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hrushikesh_joshi_f694250b"/>
    <language>en</language>
    <item>
      <title>From Play Store Curiosity to Maven Central — My Story</title>
      <dc:creator>Hrushikesh Joshi</dc:creator>
      <pubDate>Sat, 21 Mar 2026 17:32:30 +0000</pubDate>
      <link>https://dev.to/hrushikesh_joshi_f694250b/from-play-store-curiosity-to-maven-central-my-story-1d67</link>
      <guid>https://dev.to/hrushikesh_joshi_f694250b/from-play-store-curiosity-to-maven-central-my-story-1d67</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/wecoded-2026"&gt;2026 WeCoded Challenge&lt;/a&gt;: Echoes of Experience&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I never planned any of this.&lt;/p&gt;

&lt;p&gt;After graduation, I did what most people in my situation do — I went to Ameerpet in Hyderabad, where all the IT coaching centres are. Back then, pre-COVID, you could get a full Java course for just ₹4500. I did it, came back home, and then... just sat there. No job. No leads. Nothing.&lt;/p&gt;

&lt;p&gt;But I had this habit.&lt;/p&gt;

&lt;p&gt;Whenever I was bored, I'd open the Play Store and just explore. Not looking for anything specific — just hunting for interesting free apps. The kind that had a clean UI, did something useful, and felt like someone actually cared while building it. I'd try them, enjoy them, and quietly wonder — &lt;em&gt;what kind of company makes something this good? What would it feel like to work there?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That habit changed my life.&lt;/p&gt;




&lt;p&gt;One day I came across an app called &lt;strong&gt;Rock Interview&lt;/strong&gt;. Mock interview practice. First session free. I figured, why not?&lt;/p&gt;

&lt;p&gt;I did the interview. It lasted 15 minutes. I got 4 stars.&lt;/p&gt;

&lt;p&gt;I forgot about it.&lt;/p&gt;

&lt;p&gt;Two months later, I got a call. A recruiter from Rock Interview said they'd found my profile in their database — 4 stars — and wanted to interview me for a developer role.&lt;/p&gt;

&lt;p&gt;I got the job. My first ever. In Bangalore.&lt;/p&gt;




&lt;p&gt;The first month was rough. I was on an unpaid internship — basically a trial where they'd throw you out if you didn't fit. No stipend, no safety net, just pure fear. But that fear made me work harder than I ever had. I made it through.&lt;/p&gt;

&lt;p&gt;And then something full circle happened.&lt;/p&gt;

&lt;p&gt;The app I had used to get the job? I ended up building its backend.&lt;/p&gt;

&lt;p&gt;The user became the builder.&lt;/p&gt;




&lt;p&gt;That experience quietly shaped a vision I've carried ever since — I want to work on products that have direct impact on people like me. Not just code for the sake of code. Real apps, real users, real problems.&lt;/p&gt;

&lt;p&gt;Years passed. I moved into microservices, Spring Boot, backend development. And in every project, I kept bumping into the same problem — &lt;strong&gt;writing the same validation logic over and over again across services&lt;/strong&gt;. &lt;code&gt;@AllowedValues&lt;/code&gt;, strong password rules, file extension checks — each team reinventing the wheel, rules drifting, maintenance becoming a headache.&lt;/p&gt;

&lt;p&gt;The pain was real. I'd felt it enough times.&lt;/p&gt;

&lt;p&gt;So I built something.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/validationkit/validation-kit" rel="noopener noreferrer"&gt;Validation Kit&lt;/a&gt;&lt;/strong&gt; is a Spring Boot starter that extends Hibernate Validator with reusable API payload validation constraints. Things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;@AllowedValues&lt;/code&gt; — validate that a field is one of a defined set of strings, just like having a dropdown on UI&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@StrongPassword&lt;/code&gt; — configurable password complexity rules&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@FileExtension&lt;/code&gt; — validate filenames against allowed extensions&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;@Base64&lt;/code&gt; — validate base64 encoded strings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It plugs into your existing Jakarta Bean Validation setup. No custom execution engine, no magic — just constraints you can drop in and reuse across services.&lt;/p&gt;

&lt;p&gt;It's published on Maven Central:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight xml"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;dependency&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;groupId&amp;gt;&lt;/span&gt;io.github.validationkit&lt;span class="nt"&gt;&amp;lt;/groupId&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;artifactId&amp;gt;&lt;/span&gt;validation-spring-boot-starter&lt;span class="nt"&gt;&amp;lt;/artifactId&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;version&amp;gt;&lt;/span&gt;0.0.2&lt;span class="nt"&gt;&amp;lt;/version&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/dependency&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;I didn't build this to get stars or go viral.&lt;/p&gt;

&lt;p&gt;I built it because I had the pain, I had the skills, and I finally stopped waiting until I "knew enough." I built it for the version of me from a few years ago who was copying validation logic from one service to another and thinking — &lt;em&gt;there has to be a better way.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The kid who explored Play Store apps and wondered what it would feel like to build something people actually use?&lt;/p&gt;

&lt;p&gt;He just published his first open source library.&lt;/p&gt;

&lt;p&gt;The arc is kind of wild when I look back at it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you're a Spring Boot developer dealing with repeated validation logic across microservices, give Validation Kit a try. And if you've been sitting on an idea waiting until you're "ready" — you probably already are.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>wecoded</category>
      <category>dei</category>
      <category>career</category>
    </item>
  </channel>
</rss>
