<?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: kiran pinisetty</title>
    <description>The latest articles on DEV Community by kiran pinisetty (@kiran_pinisetty).</description>
    <link>https://dev.to/kiran_pinisetty</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%2F3781417%2F09a3427e-8a13-4bf2-b1e3-5a0ab105eb1b.png</url>
      <title>DEV Community: kiran pinisetty</title>
      <link>https://dev.to/kiran_pinisetty</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kiran_pinisetty"/>
    <language>en</language>
    <item>
      <title>🧠 What Was Your First Developer Interview Like? (The Good, The Bad &amp; The Cringe)</title>
      <dc:creator>kiran pinisetty</dc:creator>
      <pubDate>Fri, 20 Mar 2026 10:43:40 +0000</pubDate>
      <link>https://dev.to/kiran_pinisetty/what-was-your-first-developer-interview-like-the-good-the-bad-the-cringe-1ef6</link>
      <guid>https://dev.to/kiran_pinisetty/what-was-your-first-developer-interview-like-the-good-the-bad-the-cringe-1ef6</guid>
      <description>&lt;p&gt;We’ve all been there — heart racing, palms sweating, trying to remember what a binary tree is while a stranger stares at you waiting.&lt;br&gt;
I’ve been thinking a lot about how much the interview experience shapes developers early in their careers. Whether it broke your confidence or lit a fire under you — that first one sticks.&lt;br&gt;
So I want to hear from you:&lt;br&gt;
👇 Drop your story in the comments:&lt;br&gt;
∙What was the format? (whiteboard, take-home, live coding, trivia quiz?)&lt;br&gt;
∙Was there a question that completely stumped you?&lt;br&gt;
∙How did you feel walking out?&lt;br&gt;
∙Did you get the job — and does it even matter in hindsight?&lt;/p&gt;

&lt;p&gt;There’s no “right” answer here. Bad interviews teach just as much as good ones — sometimes more.&lt;br&gt;
Whether you nailed it, froze up, or accidentally called your interviewer by the wrong name (no judgment), your experience might be exactly what someone prepping for their first interview needs to hear right now.&lt;br&gt;
Let’s normalize the awkward and celebrate the growth. &lt;/p&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>career</category>
    </item>
    <item>
      <title>Day -1 of Learning C#</title>
      <dc:creator>kiran pinisetty</dc:creator>
      <pubDate>Fri, 20 Feb 2026 18:20:14 +0000</pubDate>
      <link>https://dev.to/kiran_pinisetty/day-1-of-learning-c-1a97</link>
      <guid>https://dev.to/kiran_pinisetty/day-1-of-learning-c-1a97</guid>
      <description>&lt;p&gt;Today I officially started my C# journey — not with advanced topics, but with the absolute basics. Before building complex applications, I wanted to understand how the language communicates, stores data, and handles input.&lt;/p&gt;

&lt;p&gt;First up was console printing. I learned the difference between Console.Write() and Console.WriteLine(). One keeps the cursor on the same line, the other moves to the next. Simple, but important for formatting output.&lt;/p&gt;

&lt;p&gt;Then I explored Console.ReadLine() to take user input. It was cool to see how quickly a program becomes interactive just by accepting a name and printing it back.&lt;/p&gt;

&lt;p&gt;Next were comments — both single-line (//) and multi-line (/* */). Clean code matters, even from day one.&lt;/p&gt;

&lt;p&gt;I also covered variables and constants. Variables store changeable data, while constants remain fixed. I practiced using data types like int, double, and decimal, learning that decimals are better for precise values like money.&lt;/p&gt;

&lt;p&gt;The var keyword was interesting too. It lets the compiler figure out the type automatically, while still being strongly typed.&lt;/p&gt;

&lt;p&gt;Finally, I worked with strings — escape sequences like \n, verbatim strings using @, and simple string concatenation using +.&lt;/p&gt;

&lt;p&gt;Nothing complex yet — just building a solid foundation.&lt;/p&gt;

&lt;p&gt;Special thanks to &lt;a class="mentioned-user" href="https://dev.to/vaso"&gt;@vaso&lt;/a&gt; for the guidance and learning resources:&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>microsoft</category>
      <category>aspdotnet</category>
    </item>
    <item>
      <title>Starting My C# and .NET Journey — Looking for Advice</title>
      <dc:creator>kiran pinisetty</dc:creator>
      <pubDate>Thu, 19 Feb 2026 18:05:45 +0000</pubDate>
      <link>https://dev.to/kiran_pinisetty/starting-my-c-and-net-journey-looking-for-advice-cec</link>
      <guid>https://dev.to/kiran_pinisetty/starting-my-c-and-net-journey-looking-for-advice-cec</guid>
      <description>&lt;p&gt;Starting My C# and .NET Journey — Looking for Advice&lt;/p&gt;

&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I’ve decided to start learning C# and .NET — and I’m beginning from zero.&lt;/p&gt;

&lt;p&gt;I don’t have a strong programming background yet. I’m not building complex systems. Right now, I’m focused on understanding the fundamentals the right way.&lt;/p&gt;

&lt;p&gt;Instead of waiting until I “know enough,” I want to learn publicly and ask for guidance from developers who have already walked this path.&lt;/p&gt;

&lt;p&gt;⸻&lt;/p&gt;

&lt;p&gt;Why I Chose C# and .NET&lt;/p&gt;

&lt;p&gt;After exploring different programming languages, I decided to go with C# and .NET because:&lt;br&gt;
•It’s widely used in backend development&lt;br&gt;
•It’s common in enterprise environments&lt;br&gt;
•It has strong documentation and community support&lt;br&gt;
•It seems structured and beginner-friendly&lt;br&gt;
•It opens opportunities in web, APIs, cloud, and even game development&lt;/p&gt;

&lt;p&gt;I believe it’s a solid long-term choice — but I know choosing a language is just the first step.&lt;/p&gt;

&lt;p&gt;⸻&lt;/p&gt;

&lt;p&gt;My Current Plan&lt;/p&gt;

&lt;p&gt;Right now, I’m focusing on:&lt;br&gt;
•C# fundamentals (variables, loops, conditions, methods)&lt;br&gt;
•Object-oriented programming (OOP) concepts&lt;br&gt;
•Building small console applications&lt;br&gt;
•Understanding how .NET works under the hood&lt;br&gt;
Later, I want to move into:&lt;br&gt;
• ASP.NET Core&lt;br&gt;
• Building REST APIs&lt;br&gt;
• Working with databases&lt;/p&gt;

&lt;p&gt;⸻&lt;/p&gt;

&lt;p&gt;Where I Need Advice&lt;/p&gt;

&lt;p&gt;If you have experience with C# or .NET, I would truly appreciate your guidance:&lt;br&gt;
•What should a beginner focus on first?&lt;br&gt;
•Are there common mistakes I should avoid?&lt;br&gt;
•Should I master OOP before moving into web development?&lt;br&gt;
•What beginner projects helped you the most?&lt;br&gt;
•Any must-follow resources or courses you recommend?&lt;/p&gt;

&lt;p&gt;I want to build a strong foundation instead of rushing through topics.&lt;/p&gt;

&lt;p&gt;⸻&lt;/p&gt;

&lt;p&gt;My Goal&lt;/p&gt;

&lt;p&gt;I don’t just want to learn syntax.&lt;/p&gt;

&lt;p&gt;I want to:&lt;br&gt;
•Understand how things work&lt;br&gt;
•Write clean and readable code&lt;br&gt;
•Build real-world projects&lt;br&gt;
•Eventually become job-ready&lt;/p&gt;

&lt;p&gt;⸻&lt;/p&gt;

&lt;p&gt;Final Thoughts&lt;/p&gt;

&lt;p&gt;If you’re also starting out, feel free to connect — maybe we can grow together.&lt;/p&gt;

&lt;p&gt;And if you’re experienced, even a small piece of advice could make a big difference at this stage.&lt;/p&gt;

</description>
      <category>csharp</category>
      <category>dotnet</category>
      <category>microsoft</category>
      <category>aspdotnet</category>
    </item>
  </channel>
</rss>
