<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://koffeeandkode.github.io/koffeeandkode/feed.xml" rel="self" type="application/atom+xml" /><link href="https://koffeeandkode.github.io/koffeeandkode/" rel="alternate" type="text/html" /><updated>2026-05-05T20:15:07+00:00</updated><id>https://koffeeandkode.github.io/koffeeandkode/feed.xml</id><title type="html">KoffeeAndKode</title><subtitle>A developer blog featuring technical discussions, tutorials, and prototype documentation</subtitle><author><name>Gautham Reddy Surakanti</name></author><entry><title type="html">Welcome to KoffeeAndKode</title><link href="https://koffeeandkode.github.io/koffeeandkode/2024/01/15/welcome-to-koffeeandkode.html" rel="alternate" type="text/html" title="Welcome to KoffeeAndKode" /><published>2024-01-15T00:00:00+00:00</published><updated>2024-01-15T00:00:00+00:00</updated><id>https://koffeeandkode.github.io/koffeeandkode/2024/01/15/welcome-to-koffeeandkode</id><content type="html" xml:base="https://koffeeandkode.github.io/koffeeandkode/2024/01/15/welcome-to-koffeeandkode.html"><![CDATA[<p>Welcome to <strong>KoffeeAndKode</strong>! This is my developer blog where I’ll be sharing:</p>

<ul>
  <li>Technical discussions and deep dives</li>
  <li>Tutorials and how-to guides</li>
  <li>Prototype documentation with code examples</li>
  <li>Resources and tools for developers</li>
</ul>

<h2 id="what-to-expect">What to Expect</h2>

<p>This blog is designed for fellow developers and anyone interested in software engineering. I’ll cover topics ranging from:</p>

<ul>
  <li><strong>Backend Development</strong>: APIs, databases, microservices</li>
  <li><strong>Frontend Development</strong>: Modern JavaScript, frameworks, UI/UX</li>
  <li><strong>DevOps</strong>: CI/CD, containerization, cloud infrastructure</li>
  <li><strong>Programming Languages</strong>: JavaScript, Python, Go, and more</li>
  <li><strong>System Design</strong>: Architecture patterns and best practices</li>
</ul>

<h2 id="code-examples">Code Examples</h2>

<p>Here’s a quick example of what code snippets will look like:</p>

<div class="language-javascript highlighter-rouge"><div class="highlight"><pre class="highlight"><code><table class="rouge-table"><tbody><tr><td class="rouge-gutter gl"><pre class="lineno">1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="rouge-code"><pre><span class="c1">// Example: Simple Express.js server</span>
<span class="kd">const</span> <span class="nx">express</span> <span class="o">=</span> <span class="nx">require</span><span class="p">(</span><span class="dl">'</span><span class="s1">express</span><span class="dl">'</span><span class="p">);</span>
<span class="kd">const</span> <span class="nx">app</span> <span class="o">=</span> <span class="nx">express</span><span class="p">();</span>

<span class="nx">app</span><span class="p">.</span><span class="kd">get</span><span class="p">(</span><span class="dl">'</span><span class="s1">/</span><span class="dl">'</span><span class="p">,</span> <span class="p">(</span><span class="nx">req</span><span class="p">,</span> <span class="nx">res</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="p">{</span>
  <span class="nx">res</span><span class="p">.</span><span class="nx">json</span><span class="p">({</span> <span class="na">message</span><span class="p">:</span> <span class="dl">'</span><span class="s1">Hello from KoffeeAndKode!</span><span class="dl">'</span> <span class="p">});</span>
<span class="p">});</span>

<span class="nx">app</span><span class="p">.</span><span class="nx">listen</span><span class="p">(</span><span class="mi">3000</span><span class="p">,</span> <span class="p">()</span> <span class="o">=&gt;</span> <span class="p">{</span>
  <span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="dl">'</span><span class="s1">Server running on port 3000</span><span class="dl">'</span><span class="p">);</span>
<span class="p">});</span>
</pre></td></tr></tbody></table></code></pre></div></div>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><table class="rouge-table"><tbody><tr><td class="rouge-gutter gl"><pre class="lineno">1
2
3
4
5
6
</pre></td><td class="rouge-code"><pre><span class="c1"># Example: Python function
</span><span class="k">def</span> <span class="nf">greet</span><span class="p">(</span><span class="n">name</span><span class="p">):</span>
    <span class="s">"""Greet someone by name."""</span>
    <span class="k">return</span> <span class="sa">f</span><span class="s">"Hello, </span><span class="si">{</span><span class="n">name</span><span class="si">}</span><span class="s">! Welcome to KoffeeAndKode."</span>

<span class="k">print</span><span class="p">(</span><span class="n">greet</span><span class="p">(</span><span class="s">"Developer"</span><span class="p">))</span>
</pre></td></tr></tbody></table></code></pre></div></div>

<h2 id="getting-started">Getting Started</h2>

<p>Feel free to explore the blog posts and prototype documentation. If you have questions or suggestions, feel free to reach out!</p>

<p>Stay tuned for more content coming soon. ☕️💻</p>]]></content><author><name>Gautham Reddy Surakanti</name></author><category term="announcement" /><category term="blog" /><category term="introduction" /><summary type="html"><![CDATA[Welcome to KoffeeAndKode! A developer blog where I'll share technical insights, tutorials, and prototype documentation.]]></summary></entry></feed>