<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Coding on The Big Banyan Tree</title>
    <link>https://jarunakiran.in/tags/coding/</link>
    <description>Recent content in Coding on The Big Banyan Tree</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 07 Aug 2026 12:58:25 +0530</lastBuildDate>
    <atom:link href="https://jarunakiran.in/tags/coding/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Inside the Codebase: Building Travelogue</title>
      <link>https://jarunakiran.in/blog/2026-08-07-inside-the-codebase-building-travelogue/</link>
      <pubDate>Fri, 07 Aug 2026 12:58:25 +0530</pubDate>
      <guid>https://jarunakiran.in/blog/2026-08-07-inside-the-codebase-building-travelogue/</guid>
      <description>&lt;p&gt;In my previous blog, I wrote about why I built &lt;a href=&#34;https://wanderlog-travel-journal.netlify.app/&#34;&gt;Travelogue&lt;/a&gt; and the overall approach I took to build it. In this post, I&amp;rsquo;ll dive deeper into the technical decisions behind the project and share how I used AI as both a sounding board and a collaborator throughout the journey.
To be clear, I didn&amp;rsquo;t write the code myself. AI generated the code, and my role was to iterate on it until it matched the product I envisioned for my own use.&lt;/p&gt;</description>
    </item>
    <item>
      <title> I Did Not Vibecode This Travel Journal</title>
      <link>https://jarunakiran.in/blog/2026-08-02-i-didnt-vibecode-this-travel-journal/</link>
      <pubDate>Sun, 02 Aug 2026 18:46:55 +0530</pubDate>
      <guid>https://jarunakiran.in/blog/2026-08-02-i-didnt-vibecode-this-travel-journal/</guid>
      <description>&lt;p&gt;Over the past one and a half years, my husband and I have taken two international trips, visiting nearly ten cities across different countries. The knowledge I&amp;rsquo;ve gained and the experiences I&amp;rsquo;ve had during these journeys are both vast and deeply personal. They are the kind of memories worth preserving.&lt;/p&gt;
&lt;p&gt;During our first trip to Germany, I carried a notebook with the intention of jotting down my thoughts and experiences as we explored each city. To my credit, I managed to fill several pages during the first few days. However, writing by hand felt slow and unfamiliar, as I&amp;rsquo;m far more accustomed to typing. By the end of the trip, I had documented only about half the cities we visited, and even those entries felt vague and superficial. I couldn&amp;rsquo;t fully capture the places I had seen, the food I had tasted, or the countless little moments that made the journey memorable.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hugo Commands</title>
      <link>https://jarunakiran.in/notes/2026-08-02-hugo-commands/</link>
      <pubDate>Sun, 02 Aug 2026 18:20:01 +0530</pubDate>
      <guid>https://jarunakiran.in/notes/2026-08-02-hugo-commands/</guid>
      <description>&lt;p&gt;I designed my blog using Hugo, and I use Hugo commands frequently to keep it updated. I&amp;rsquo;ve compiled a list of the Hugo commands I use most often and published it here in the Notes section for my own reference and record-keeping&lt;/p&gt;
&lt;div class=&#34;custom-codeblock&#34;&gt;
  &lt;div class=&#34;code-header&#34;&gt;
    &lt;span&gt;hugo&lt;/span&gt;
    &lt;button onclick=&#34;navigator.clipboard.writeText(this.nextElementSibling.innerText)&#34;&gt;
      Copy
    &lt;/button&gt;
  &lt;/div&gt;
  &lt;pre&gt;&lt;code&gt;
hugo new blog/post-title.md  // to publish a new blog post
hugo new notes/notes-title.md  //to publish a new note
hugo server  //to start the local server where I can view all my changes
hugo server -D // local server environment where I can see the draft changes as well
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Below are the git commands to push my changes to production:
&lt;div class=&#34;custom-codeblock&#34;&gt;
  &lt;div class=&#34;code-header&#34;&gt;
    &lt;span&gt;hugo&lt;/span&gt;
    &lt;button onclick=&#34;navigator.clipboard.writeText(this.nextElementSibling.innerText)&#34;&gt;
      Copy
    &lt;/button&gt;
  &lt;/div&gt;
  &lt;pre&gt;&lt;code&gt;
git add . 
git commit -m &#34;commit title&#34;
git push origin main 
git log --oneline  //to see recent commits
git diff // to see the exact changes
git status   //to check what&#39;s changed
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
