<?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: Sanidhya Goel</title>
    <description>The latest articles on DEV Community by Sanidhya Goel (@sanidhya_at_mlh).</description>
    <link>https://dev.to/sanidhya_at_mlh</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%2F4097818%2F239e6b7d-1370-4794-9f01-dfcd3261483c.png</url>
      <title>DEV Community: Sanidhya Goel</title>
      <link>https://dev.to/sanidhya_at_mlh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sanidhya_at_mlh"/>
    <language>en</language>
    <item>
      <title>I built a skill that explains you, your AI Slop!</title>
      <dc:creator>Sanidhya Goel</dc:creator>
      <pubDate>Mon, 14 Sep 2026 11:39:25 +0000</pubDate>
      <link>https://dev.to/sanidhya_at_mlh/i-built-a-skill-that-explains-you-your-ai-slop-971</link>
      <guid>https://dev.to/sanidhya_at_mlh/i-built-a-skill-that-explains-you-your-ai-slop-971</guid>
      <description>&lt;p&gt;A problem every hackathon builder who is vibe coding has: a lot of times, the demo works; you built it with an agent over the last six hours, but you genuinely don't know what is going on under the hood.&lt;/p&gt;

&lt;p&gt;That's why I built &lt;strong&gt;&lt;code&gt;show-me-the-build&lt;/code&gt;&lt;/strong&gt; — a Claude Code / Cursor / Codex (or any other LLM) skill that turns any codebase or cloud deployment with any agent into a self-building HTML presentation. Type one command, and it walks through &lt;em&gt;what&lt;/em&gt; got built, &lt;em&gt;why&lt;/em&gt; it was built that way, and &lt;em&gt;how&lt;/em&gt; it actually runs.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdwp8o1kww2oltwa0h3ks.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdwp8o1kww2oltwa0h3ks.png" alt="Architecture Diagram of each component" width="800" height="461"&gt;&lt;/a&gt;&lt;/p&gt;&lt;br&gt;Architecture Diagram of each component in the code
  &lt;p&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The part that actually matters
&lt;/h2&gt;

&lt;p&gt;Anyone can generate a static architecture diagram. The interesting bit is that this one &lt;strong&gt;builds itself, step by step&lt;/strong&gt; — resources or modules appear one at a time, in the order they were actually created, with the connections between them drawn live. Click any box and a drawer opens with a real one-sentence reason it exists — not an invented "reduces coupling," but the actual reason, pulled from your code or your infra docs.&lt;/p&gt;

&lt;p&gt;It ships as one self-contained HTML file. No server, no build step. Copy it, present it, done.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where it's actually useful
&lt;/h2&gt;

&lt;p&gt;Two situations, mainly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Hackathons and competitions.&lt;/strong&gt; You vibe-coded for hours with an agent. Now you need thirty seconds to explain the architecture to a judge who wasn't there for any of it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inheriting a vibe-coded app&lt;/strong&gt; — yours or a teammate's — where nobody's entirely sure what's actually wired to what anymore.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe230i32v4v5s5kqpt5rf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe230i32v4v5s5kqpt5rf.png" alt="Deployment Procedure explained" width="800" height="454"&gt;&lt;/a&gt;&lt;/p&gt;&lt;br&gt;Deployment procedure explained
  &lt;p&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills@latest add sanidhya-build/skills &lt;span class="nt"&gt;--skill&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;show-me-the-build
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or if you are lazy like me, just ask your agent the following : &lt;br&gt;
&lt;code&gt;Install the show-me-the-build skill via npx (npx skills@latest add sanidhya-build/skills --skill=show-me-the-build). Install the skill in this agent's global /skills folder.&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then type &lt;code&gt;/show-me-the-build&lt;/code&gt; in your agent of choice.&lt;/p&gt;

&lt;p&gt;Full write-up, examples, and the source are at &lt;strong&gt;&lt;a href="https://show-me-the-build-website.vercel.app" rel="noopener noreferrer"&gt;show-me-the-build-website.vercel.app&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Follow me for more content around community and tech &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/in/sanidhyagoel18/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://x.com/SanidhyaGoel18" rel="noopener noreferrer"&gt;X&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/sanidhya_at_mlh"&gt;DEV&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>automation</category>
    </item>
    <item>
      <title>We're expanding the MLH Asia-Pacific League</title>
      <dc:creator>Sanidhya Goel</dc:creator>
      <pubDate>Tue, 08 Sep 2026 14:36:05 +0000</pubDate>
      <link>https://dev.to/mlh/were-expanding-the-mlh-asia-pacific-league-nmb</link>
      <guid>https://dev.to/mlh/were-expanding-the-mlh-asia-pacific-league-nmb</guid>
      <description>&lt;p&gt;Hey Everyone!&lt;/p&gt;

&lt;p&gt;At Major League Hacking (MLH), our mission is to empower student developers worldwide by providing organizers and hackers with the resources, mentorship, and support they need to build incredible tech communities. We partner directly with hackathons to guide organizers through the planning process, while connecting hackers with our partners like GitHub, Google, MongoDB, ElevenLabs, Vultr, Snowflake, and many more, to provide cutting-edge software tools, hardware, exclusive prizes, and a ton of iconic swag to take home.&lt;/p&gt;

&lt;h2&gt;
  
  
  We’re growing the APAC League
&lt;/h2&gt;

&lt;p&gt;Over the years, we have seen some of the most innovative projects and passionate hackers emerge from the Asia Pacific (APAC). We have always loved working with our APAC events. The energy, the projects, and the sheer dedication of this region are completely unmatched. Because of that, we are incredibly excited to announce a massive update: &lt;strong&gt;we are officially scaling up our Asia Pacific League to support 3x our previous capacity&lt;/strong&gt; of events in the upcoming season and beyond!&lt;/p&gt;

&lt;p&gt;As someone who used to organize hackathons in this very region, I know exactly what goes into making these events a reality. To make sure you get in on this expansion and get the most out of an MLH partnership, I want to share one crucial piece of advice:&lt;/p&gt;

&lt;h2&gt;
  
  
  Plan Your Event Early &amp;amp; Apply for MLH Membership 3-4 Months Prior
&lt;/h2&gt;

&lt;p&gt;In the APAC region, we frequently see organizers waiting until the last month to reach out. When you plan at the last minute, it limits the resources we can provide. It causes you to miss out on a huge margin of support and causes us to miss out on supporting some truly incredible events. Reaching out 3-4 months before your actual dates ensures we can build the best possible event together without the last-minute stress!&lt;/p&gt;

&lt;p&gt;If you are ready to bring an unforgettable experience to your local hacker community, we want to hear from you. Apply to become a member event: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.mlh.com/event-membership" class="crayons-btn crayons-btn--primary" rel="noopener noreferrer"&gt;MLH Event Membership Application&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Looking for other ways to get involved with the global hacker community?&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Whether you're interested in running smaller-scale events or diving into open-source, check out &lt;a href="https://www.mlh.com/hack-days" rel="noopener noreferrer"&gt;Hack Days&lt;/a&gt; or join us during &lt;a href="https://hacktoberfest.com/" rel="noopener noreferrer"&gt;Hacktoberfest&lt;/a&gt; to start building with the community.&lt;/p&gt;

&lt;p&gt;We can't wait to work with all of you and see what we build together this season. Follow us on DEV: &lt;a class="mentioned-user" href="https://dev.to/mlhacks"&gt;@mlhacks&lt;/a&gt; + connect with us on socials :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/company/major-league-hacking/posts/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.instagram.com/mlhacks" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://x.com/MLHacks?s=20" rel="noopener noreferrer"&gt;X/Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.threads.com/@mlhacks" rel="noopener noreferrer"&gt;Threads&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And feel free to reach out to us anytime at &lt;a href="mailto:league@majorleaguehacking.com"&gt;league@mlh.io&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy Hacking!&lt;/p&gt;

</description>
      <category>mlh</category>
      <category>community</category>
      <category>asia</category>
    </item>
    <item>
      <title>Hey Everyone! I’m Sanidhya from MLH</title>
      <dc:creator>Sanidhya Goel</dc:creator>
      <pubDate>Fri, 04 Sep 2026 03:04:14 +0000</pubDate>
      <link>https://dev.to/mlh/hey-everyone-im-sanidhya-from-mlh-25an</link>
      <guid>https://dev.to/mlh/hey-everyone-im-sanidhya-from-mlh-25an</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F78z60zsifeu31u63tjqa.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F78z60zsifeu31u63tjqa.jpg" alt="MLH AI Roadshow" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;
MLH AI Roadshow Bengaluru 




&lt;p&gt;&lt;br&gt;&lt;br&gt;
Hey Everyone! I am Sanidhya Goel, a new MLH Hackathon Community Manager (HCM) for Asia Pacific, and I couldn’t be more excited to expand my role on the MLH team and community!&lt;/p&gt;

&lt;p&gt;My journey into the hacker community didn't start with me being a hacker, as it is for most people; it started with me wearing a volunteer badge.&lt;/p&gt;

&lt;p&gt;During my second year of college, I volunteered for my campus's first-ever hackathon, &lt;a href="https://code-kshetra.devfolio.co/overview" rel="noopener noreferrer"&gt;Code Kshetra&lt;/a&gt;, organized via &lt;a href="https://in.linkedin.com/company/geekr00m" rel="noopener noreferrer"&gt;Geek Room&lt;/a&gt;. I went in just checking it out on a senior's recommendation, but I ended up witnessing something great. Beyond the impressive development work, I saw people genuinely connecting, playing games, and jamming in music sessions. It was the most fun I’d had in a long time.&lt;/p&gt;

&lt;p&gt;That energy pushed me to jump in as a hacker. I teamed up with three classmates for Techminds Hackathon, where we built an IoT project and ended up winning! From that moment, I was completely hooked on both attending and organizing hackathons.&lt;br&gt;&lt;br&gt;
Interestingly, my next hackathon (&lt;a href="https://vihaan.devfolio.co/overview" rel="noopener noreferrer"&gt;Vihaan 007&lt;/a&gt;) was my first encounter with MLH. I saw the MLH booth, but I was so hyper-focused on building my project that I didn't even question what it was; I just grabbed my swag and went back to coding!&lt;/p&gt;

&lt;p&gt;My perspective shifted when I became the lead of Geek Room and organized Code Kshetra 2.0. We officially registered as an MLH member event. For context, becoming an MLH Member Event means partnering directly with Major League Hacking, through which the organizers get hands-on support throughout the entire planning process, while the hackers get access to mentorship, software, prizes, swag, and exclusive event resources from our partners. I had the chance to work with &lt;a href="https://www.linkedin.com/in/siddharth-shivkumar/" rel="noopener noreferrer"&gt;Siddharth Shivkumar&lt;/a&gt; (my HCM at the time) and Vinayak (our MLH Coach for the event). Working with them for months to curate the best possible event made me realize the sheer potential of an MLH partnership. It opened my eyes to the fact that the hacker community is a massive, globally connected network far beyond my local well.&lt;/p&gt;

&lt;p&gt;I knew I wanted to be part of it. I applied to be a Coach, but the timing wasn't right as MLH wasn't hiring. I spent the next year organizing over five amazing hackathons throughout 2025. Then, in November, I finally got an email from Ryan asking if I was still interested. &lt;em&gt;Hell yeah, I was!&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;After an amazing set of interviews, where Ryan and Siddharth came to Delhi and met my incredible fellow Coaches Harshita, Romanch, Toukir, and Anjana, I officially started staffing events.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fg980nrwupjx26pber8gu.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fg980nrwupjx26pber8gu.jpeg" alt="Hack Byte 4.0 with Coach Toukir and Coach Anjana" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;
Hack Byte 4.0 with Coach Toukir and Coach Anjana




&lt;p&gt;&lt;br&gt;&lt;br&gt;
Usually, new MLH Coaches are paired with experienced staff for their first few events to learn the ropes. I had 2 events where I was paired with Siddharth to experience and learn the ropes of being an MLH Coach. And then came Electrothon 8.0; I was paired with a senior Coach who unfortunately fell ill at the last minute, making me the sudden event lead.&lt;/p&gt;

&lt;p&gt;I won't lie, I was overwhelmed and a little hesitant. But handling the full event, running workshops, and connecting with so many passionate people all in one place, and working with the help of Paul (my Coach on call) and Alex (my MLHer on call), this ended up being the best experience of my life. It was a massive investment of time and energy, but it made me realize this is what I wanted to do.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fndwf291iblirvn94fhnc.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fndwf291iblirvn94fhnc.jpeg" alt="Electrothon 8.0 (PS: The dog was a paid actor)" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;
Electrothon 8.0 (PS: The dog was a paid actor)




&lt;p&gt;&lt;br&gt;&lt;br&gt;
Up until March 2026, I had been working as a full-time software engineer at an amazing AI startup, tackling complex problems and building applications for the country's largest financial players. But in April, I just had the instinct and pulled the trigger, texted Ryan to ask about more opportunities on the team, and here I am! I officially joined the team in July after another round of interviews. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjat0hw2j94zg28b0fr50.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjat0hw2j94zg28b0fr50.jpg" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;
Electrothon 8.0




&lt;p&gt;&lt;br&gt;&lt;br&gt;
I can't wait to work with you all and see what we build together this season. Follow me on &lt;a href="https://dev.to/sanidhya_at_mlh"&gt;DEV&lt;/a&gt; + connect with me on &lt;a href="https://www.linkedin.com/in/sanidhyagoel18/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt; and feel free to reach out to us anytime at &lt;a href="mailto:league@majorleaguehacking.com"&gt;league@mlh.io&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy Hacking!&lt;/p&gt;

</description>
      <category>mlh</category>
      <category>community</category>
      <category>devrel</category>
      <category>career</category>
    </item>
  </channel>
</rss>
