<?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>The Weekly Digest</title>
    <link>http://localhost:1313/</link>
    <description>Recent content on The Weekly Digest</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Sat, 02 May 2026 18:56:47 +0530</lastBuildDate>
    <atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>The Points &amp; Miles Intelligence: May 02, 2026</title>
      <link>http://localhost:1313/posts/weekly-digest-2026-05-02/</link>
      <pubDate>Sat, 02 May 2026 18:56:47 +0530</pubDate>
      <guid>http://localhost:1313/posts/weekly-digest-2026-05-02/</guid>
      <description>&lt;h3 id=&#34;-the-weekly-strategic-brief&#34;&gt;🧠 The Weekly Strategic Brief&lt;/h3&gt;
&lt;p&gt;This automated report synthesizes the latest intelligence from the Indian credit card and loyalty ecosystem. We filter the noise to focus strictly on &lt;strong&gt;Point Valuations (CPP)&lt;/strong&gt;, &lt;strong&gt;Milestone Optimization&lt;/strong&gt;, and &lt;strong&gt;Devaluation Alerts&lt;/strong&gt;.&lt;/p&gt;
&lt;h1 id=&#34;high-yield-strategies&#34;&gt;High-Yield Strategies&lt;/h1&gt;
&lt;h3 id=&#34;the-air-india-maharaja-club-50-transfer-bonus&#34;&gt;&lt;strong&gt;The Air India Maharaja Club 50% Transfer Bonus&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;A massive tactical opportunity has emerged for the month of May 2026. &lt;strong&gt;Air India&lt;/strong&gt; is offering a tiered transfer bonus of up to &lt;strong&gt;50% extra points&lt;/strong&gt; on conversions from bank partners.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>http://localhost:1313/posts/hello-world/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>http://localhost:1313/posts/hello-world/</guid>
      <description>&lt;p&gt;hugo new posts/hello-world.md
&lt;code&gt;5.  **Edit the Markdown File:** Open `content/posts/hello-world.md` in your IDE. You will see some YAML frontmatter at the top (title, date, draft status). Change `draft: true` to `draft: false` and add some test content.&lt;/code&gt;markdown
&amp;mdash;
title: &amp;ldquo;Hello World&amp;rdquo;
date: 2026-05-02T17:30:00+05:30
draft: false
&amp;mdash;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;This is a test post to verify the Cloudflare Pages pipeline is working.
```
&lt;/code&gt;&lt;/pre&gt;
&lt;ol start=&#34;6&#34;&gt;
&lt;li&gt;&lt;strong&gt;Test Locally:&lt;/strong&gt; Run the local development server.
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;hugo server -D
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;Visit &lt;code&gt;http://localhost:1313&lt;/code&gt; in your browser to verify the site renders correctly.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;phase-2-push-to-github&#34;&gt;Phase 2: Push to GitHub&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Commit Your Code:&lt;/strong&gt; Stop the local server (&lt;code&gt;Ctrl+C&lt;/code&gt;) and commit your files.
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git add .
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git commit -m &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Initial commit with Hugo setup and Hello World post&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create a Remote Repository:&lt;/strong&gt; Go to GitHub, create a new &lt;strong&gt;public or private&lt;/strong&gt; repository named &lt;code&gt;automated-weekly-digest&lt;/code&gt; (do not initialize it with a README or .gitignore).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Push to Origin:&lt;/strong&gt; Link your local repository to GitHub and push the code.
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git branch -M main
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git remote add origin https://github.com/YOUR_GITHUB_USERNAME/automated-weekly-digest.git
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;git push -u origin main
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;phase-3-deploy-to-cloudflare-pages&#34;&gt;Phase 3: Deploy to Cloudflare Pages&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Connect to Cloudflare:&lt;/strong&gt; Log in to your Cloudflare dashboard.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Navigate to Pages:&lt;/strong&gt; On the left sidebar, click on &lt;strong&gt;Workers &amp;amp; Pages&lt;/strong&gt;, then click the &lt;strong&gt;Create application&lt;/strong&gt; button. Select the &lt;strong&gt;Pages&lt;/strong&gt; tab and click &lt;strong&gt;Connect to Git&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Authorize GitHub:&lt;/strong&gt; Follow the prompts to authorize Cloudflare to read your GitHub repositories. Select your &lt;code&gt;automated-weekly-digest&lt;/code&gt; repository and click &lt;strong&gt;Begin setup&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Configure Build Settings:&lt;/strong&gt; This is the most critical step to ensure Cloudflare knows how to build your site.
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Project name:&lt;/strong&gt; (Leave as default or rename)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Production branch:&lt;/strong&gt; &lt;code&gt;main&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Framework preset:&lt;/strong&gt; Select &lt;strong&gt;Hugo&lt;/strong&gt; from the dropdown menu.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Build command:&lt;/strong&gt; &lt;code&gt;hugo --minify&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Build output directory:&lt;/strong&gt; &lt;code&gt;public&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Set the Environment Variable:&lt;/strong&gt; Scroll down to the &lt;strong&gt;Environment variables (advanced)&lt;/strong&gt; section. Cloudflare uses an older version of Hugo by default, which can cause build errors with modern themes.
&lt;ul&gt;
&lt;li&gt;Click &lt;strong&gt;Add variable&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Variable name: &lt;code&gt;HUGO_VERSION&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Value: &lt;code&gt;0.120.0&lt;/code&gt; (or whatever version you see when you run &lt;code&gt;hugo version&lt;/code&gt; locally).&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deploy:&lt;/strong&gt; Click &lt;strong&gt;Save and Deploy&lt;/strong&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Cloudflare will instantly pull your code, run the build command, and deploy the HTML to its edge network. Within about 30 seconds, you will be given a live &lt;code&gt;*.pages.dev&lt;/code&gt; URL where you can see your &amp;ldquo;Hello World&amp;rdquo; post live on the internet.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
