Browse Source

Refactor image handling for "The Evolution of Software Development in the AI Era" and "Building PublicPoolAndroid in One Day with Cursor" posts. Transitioned from static image tags to a responsive image shortcode for better adaptability across devices. Updated related HTML and XML files to reflect these changes, enhancing visual presentation and ensuring consistent image loading.

codeskraps 1 day ago
parent
commit
ca00ec4872
33 changed files with 549 additions and 178 deletions
  1. 6 10
      content/posts/2025/evolution_software_development_ai.md
  2. 66 0
      content/posts/2025/evolution_software_development_ai/index.md
  3. 6 10
      content/posts/2025/public_pool_android.md
  4. 58 0
      content/posts/2025/public_pool_android/index.md
  5. 29 0
      layouts/partials/responsive-image.html
  6. 8 0
      layouts/shortcodes/responsive-image.html
  7. 2 2
      public/index.xml
  8. BIN
      public/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg
  9. BIN
      public/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg
  10. BIN
      public/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg
  11. 32 13
      public/posts/2025/evolution_software_development_ai/index.html
  12. BIN
      public/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg
  13. BIN
      public/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg
  14. BIN
      public/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg
  15. 32 13
      public/posts/2025/public_pool_android/index.html
  16. 60 24
      public/posts/index.html
  17. 2 2
      public/posts/index.xml
  18. 30 12
      public/tags/ai/index.html
  19. 1 1
      public/tags/ai/index.xml
  20. 30 12
      public/tags/android/index.html
  21. 1 1
      public/tags/android/index.xml
  22. 30 12
      public/tags/cryptocurrency/index.html
  23. 1 1
      public/tags/cryptocurrency/index.xml
  24. 30 12
      public/tags/cursor/index.html
  25. 1 1
      public/tags/cursor/index.xml
  26. 30 12
      public/tags/development/index.html
  27. 1 1
      public/tags/development/index.xml
  28. 30 12
      public/tags/future/index.html
  29. 1 1
      public/tags/future/index.xml
  30. 30 12
      public/tags/mining/index.html
  31. 1 1
      public/tags/mining/index.xml
  32. 30 12
      public/tags/software-development/index.html
  33. 1 1
      public/tags/software-development/index.xml

+ 6 - 10
content/posts/2025/evolution_software_development_ai.md

@@ -7,16 +7,12 @@ draft = false
 
 When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who's worked through this transition, I've witnessed firsthand the remarkable shift in how we approach coding and problem-solving.
 
-{{< figure src="header.png" alt="The Evolution of Software Development in the AI Era" width="600" height="350" class="responsive-image" >}}
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style>
+{{ $image := .Resources.GetMatch "header.png" }}
+{{ with $image }}
+  {{ $resized := .Resize "600x" }}
+  <img src="{{ $resized.RelPermalink }}" alt="The Evolution of Software Development in the AI Era" width="{{ $resized.Width }}" height="{{ $resized.Height }}">
+{{ end }}
+
 <!--more-->
 
 ## The Early Days: A Promising but Flawed Tool

+ 66 - 0
content/posts/2025/evolution_software_development_ai/index.md

@@ -0,0 +1,66 @@
++++
+title = 'The Evolution of Software Development in the AI Era'
+date = 2025-04-02T00:00:00+01:00
+tags = ['ai', 'software-development', 'future']
+draft = false
++++
+
+When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who's worked through this transition, I've witnessed firsthand the remarkable shift in how we approach coding and problem-solving.
+
+{{< responsive-image src="header.png" alt="The Evolution of Software Development in the AI Era" maxWidth="600" >}}
+
+<!--more-->
+
+## The Early Days: A Promising but Flawed Tool
+
+The initial release of ChatGPT (based on GPT-3.5) could handle approximately 4,096 tokens (roughly 3,000 words) of context. While impressive at the time, it was largely a novelty for serious development work. The model made frequent mistakes, generated code with obvious bugs, and was notorious for its hallucinations. Many developers, myself included, experimented with it but couldn't rely on it for production-grade work.
+
+## The Rapid Evolution
+
+In less than three years, we've seen these AI tools evolve from curious toys to essential components of a developer's toolkit. The learning curve for new technologies has flattened considerably. Problems that once required days of research and experimentation can now be solved through interactive discussions with these models. Design and architecture decisions that previously demanded lengthy team meetings can now be explored rapidly through AI-assisted brainstorming.
+
+What's fascinating is how quickly this transition happened. We didn't gradually adopt these tools over a decade—they became indispensable in a matter of months.
+
+## My Changing Role as a Developer
+
+My day-to-day work has transformed subtly but profoundly. I find myself spending less time writing boilerplate code and more time directing AI to implement my vision. My value as a developer increasingly comes from my years of experience. Those years have taught me to recognize which problems actually need solving, how to architect cohesive solutions, and how to provide clear requirements that AI tools can work with effectively. I understand how to critically evaluate AI-generated code and have developed a deep understanding of business domains that allows me to guide these tools more effectively. These skills, honed through years of hands-on development, now allow me to collaborate with AI systems to produce better software faster than ever before.
+
+I'm still coding, but the nature of that coding has changed. I'm operating at a higher level of abstraction, focusing more on the "why" and "what" rather than the detailed "how."
+
+## The Future: Unprecedented Context Windows
+
+The trajectory is clear—context windows are expanding dramatically. Gemini's million-token capacity (equivalent to thousands of pages of text) is just the beginning. Soon we'll see models capable of ingesting entire codebases, understanding complex dependencies, and making intelligent refactoring suggestions across massive projects.
+
+Within a few years, I expect to see AI tools that can:
+- Maintain a comprehensive understanding of your entire codebase
+- Proactively identify security vulnerabilities and performance bottlenecks
+- Automatically adapt code to meet changing requirements
+- Generate test suites with near-perfect coverage
+- Translate business requirements directly into functional prototypes
+- Handle cross-language integration seamlessly
+
+## Are We Losing Something Important?
+
+I sometimes wonder if newer developers will miss out on formative experiences that shaped my understanding of software. Will they develop the same intuition for debugging and optimization if they haven't struggled through these problems manually?
+
+Then again, perhaps this concern is as outdated as lamenting that modern developers don't write assembly code. Junior developers may indeed bypass some of the hard-earned lessons that came from years of hands-on coding, debugging, and refactoring. But as these AI tools grow more sophisticated, they'll likely handle many of the tasks that traditionally required those experiences anyway. The AI itself will incorporate the collective wisdom of experienced developers, making certain types of expertise less critical for day-to-day work.
+
+Each generation of tools creates a new layer of abstraction, allowing us to focus on higher-level problems. The fundamentals of computational thinking remain important, but the specific skills that matter evolve.
+
+## Embracing the New Paradigm
+
+Rather than resist this change, I've found it more productive to embrace it and redefine my role. The most successful developers I know are those who've learned to collaborate effectively with AI—treating it as an intelligent partner rather than either a threat or a magic solution.
+
+Software development has always been about leveraging tools to solve human problems. From punch cards to assemblers to compilers to frameworks, we've constantly climbed the ladder of abstraction. AI assistants represent the next rung on that ladder, not a replacement for the human intelligence that guides them.
+
+## The Human Element Remains Essential
+
+It's important to recognize that software developers will continue to be essential in this AI-augmented future. These tools, no matter how advanced they become, don't write code out of nothing—they require human orchestration, direction, and purpose. They need someone to define the problem, establish requirements, and evaluate the results against real-world needs. As these tools grow more sophisticated, our role may become increasingly abstract, but the need for human judgment, creativity, and contextual understanding will remain irreplaceable.
+
+## A Renaissance of Creation
+
+Perhaps the most exciting aspect of this evolution is the explosion of possibilities it enables. We live in a technology-driven world, and that's not changing. What will change is our capacity to bring ideas to life. Think of all those hobby projects that never saw the light of day because implementation was too time-consuming or technically challenging. Consider the countless innovative ideas abandoned because the development effort seemed insurmountable.
+
+The efficiency gains from AI-assisted development are democratizing software creation in unprecedented ways. Projects that once required teams of specialists can now be built by smaller groups or even individuals. Development cycles that took months can be compressed into weeks or days. This acceleration means more ideas will reach implementation, more innovations will be tested, and more software will be deployed to solve problems both large and small.
+
+As these tools continue to evolve at breakneck speed, I'm excited to see how they'll transform not just how we code, but what we believe is possible to build. The future of software development may look very different, but our core purpose remains unchanged: using technology to solve meaningful problems for people. 

+ 6 - 10
content/posts/2025/public_pool_android.md

@@ -7,16 +7,12 @@ draft = false
 
 Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.
 
-{{< figure src="feature_graphic.png" alt="Public Pool Android App" width="800" height="400" class="responsive-image" >}}
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style>
+{{ $image := .Resources.GetMatch "feature_graphic.png" }}
+{{ with $image }}
+  {{ $resized := .Resize "800x" }}
+  <img src="{{ $resized.RelPermalink }}" alt="Public Pool Android App" width="{{ $resized.Width }}" height="{{ $resized.Height }}">
+{{ end }}
+
 <!--more-->
 
 ## The App: Public Pool Android

+ 58 - 0
content/posts/2025/public_pool_android/index.md

@@ -0,0 +1,58 @@
++++
+title = 'Building PublicPoolAndroid in One Day with Cursor'
+date = 2025-04-05T10:00:00+01:00
+tags = ['android', 'cryptocurrency', 'mining', 'cursor', 'development']
+draft = false
++++
+
+Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.
+
+{{< responsive-image src="feature_graphic.png" alt="Public Pool Android App" maxWidth="800" >}}
+
+<!--more-->
+
+## The App: Public Pool Android
+
+[Public Pool Android](https://repo.codeskraps.com/codeskraps/PublicPoolAndroid) is a mobile application that lets cryptocurrency miners monitor their mining activities directly from their Android devices. The app provides real-time tracking of hash rates, worker status, and wallet details while on the go.
+
+## Key Features
+
+- **Dashboard:** View comprehensive mining statistics including best difficulty, network difficulty, network hash rate, and block height
+- **Workers Monitoring:** Keep track of individual mining workers with details on hash rate, difficulty, and last seen time
+- **Wallet Management:** Access wallet balance and transaction history with current price information
+- **Real-time Updates:** Receive timely notifications about your mining operations
+
+## From Concept to Store in One Day
+
+The entire development process took just one workday (9 AM to 6 PM), during which I:
+
+- Created the initial project structure and repository
+- Built the network communication layer
+- Implemented data models, repositories, and use cases
+- Developed the UI components including dashboard, workers, and wallet screens
+- Added theming, localization support, and settings
+- Performed testing and submitted to Google Play Store for review
+
+## Bitaxe and LottoMining
+
+One of the most interesting features of the app is its support for Bitaxe miners using the LottoMining approach. LottoMining is essentially a solo mining strategy where:
+
+- Miners work independently to find blocks rather than contributing to a pool
+- Each miner receives the full block reward when they successfully mine a block
+- The reward frequency is less consistent but potentially more profitable
+- Perfect for Bitaxe devices which are optimized for efficient solo mining
+
+The app provides specialized monitoring for Bitaxe solo miners, displaying:
+- Current network difficulty and your hashrate
+- Estimated time to find a block
+- Block discovery notifications
+- Complete mining statistics to optimize your setup
+
+## The Power of Cursor
+
+I couldn't have completed this project so quickly without [Cursor](https://cursor.sh/), an AI-powered IDE that supercharged my development workflow:
+
+- AI-assisted code generation saved hours of boilerplate writing
+- Intelligent refactoring suggestions helped maintain clean architecture
+- Context-aware completion significantly reduced development time
+- Built-in code review capabilities caught potential issues early

+ 29 - 0
layouts/partials/responsive-image.html

@@ -0,0 +1,29 @@
+{{ $image := .image }}
+{{ $alt := .alt }}
+{{ $class := .class | default "responsive-image" }}
+{{ $maxWidth := .maxWidth | default "800" }}
+
+{{ with $image }}
+  {{ $small := .Resize (printf "480x jpg q85") }}
+  {{ $medium := .Resize (printf "800x jpg q90") }}
+  {{ $large := .Resize (printf "%sx jpg q95" $maxWidth) }}
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="{{ $small.RelPermalink }}">
+    <source media="(max-width: 800px)" srcset="{{ $medium.RelPermalink }}">
+    <source media="(min-width: 801px)" srcset="{{ $large.RelPermalink }}">
+    <img 
+      src="{{ $large.RelPermalink }}" 
+      alt="{{ $alt }}" 
+      width="{{ $large.Width }}" 
+      height="{{ $large.Height }}"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="{{ $class }}"
+      loading="lazy"
+    >
+  </picture>
+{{ else }}
+  <div style="text-align: center; color: red; padding: 1rem; border: 1px solid #ccc;">
+    Image not found: {{ .path | default "unknown path" }}
+  </div>
+{{ end }} 

+ 8 - 0
layouts/shortcodes/responsive-image.html

@@ -0,0 +1,8 @@
+{{ $path := .Get "src" }}
+{{ $alt := .Get "alt" | default "" }}
+{{ $class := .Get "class" | default "responsive-image" }}
+{{ $maxWidth := .Get "maxWidth" | default "800" }}
+
+{{ $image := $.Page.Resources.GetMatch $path }}
+
+{{ partial "responsive-image.html" (dict "image" $image "alt" $alt "class" $class "maxWidth" $maxWidth "path" $path) }} 

+ 2 - 2
public/index.xml

@@ -22,14 +22,14 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
     <item>
       <title>The Evolution of Software Development in the AI Era</title>
       <link>https://codeskraps.com/posts/2025/evolution_software_development_ai/</link>
       <pubDate>Wed, 02 Apr 2025 00:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/evolution_software_development_ai/</guid>
-      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header.png&#34;&#xA;    alt=&#34;The Evolution of Software Development in the AI Era&#34; width=&#34;600&#34; height=&#34;350&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 600px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34; &#xA;      alt=&#34;The Evolution of Software Development in the AI Era&#34; &#xA;      width=&#34;600&#34; &#xA;      height=&#34;344&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
     <item>
       <title>Move /home Folder</title>

BIN
public/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg


BIN
public/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg


BIN
public/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg


+ 32 - 13
public/posts/2025/evolution_software_development_ai/index.html

@@ -98,19 +98,38 @@ The Evolution of Software Development in the AI Era | codeskraps
     
     <div>
         <p>When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&rsquo;s worked through this transition, I&rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.</p>
-<figure class="responsive-image"><img src="/posts/2025/evolution_software_development_ai/header.png"
-    alt="The Evolution of Software Development in the AI Era" width="600" height="350">
-</figure>
-
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style>
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg">
+    <img 
+      src="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg" 
+      alt="The Evolution of Software Development in the AI Era" 
+      width="600" 
+      height="344"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture>
+  
 <h2 id="the-early-days-a-promising-but-flawed-tool">The Early Days: A Promising but Flawed Tool</h2>
 <p>The initial release of ChatGPT (based on GPT-3.5) could handle approximately 4,096 tokens (roughly 3,000 words) of context. While impressive at the time, it was largely a novelty for serious development work. The model made frequent mistakes, generated code with obvious bugs, and was notorious for its hallucinations. Many developers, myself included, experimented with it but couldn&rsquo;t rely on it for production-grade work.</p>
 <h2 id="the-rapid-evolution">The Rapid Evolution</h2>

BIN
public/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg


BIN
public/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg


BIN
public/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg


+ 32 - 13
public/posts/2025/public_pool_android/index.html

@@ -100,19 +100,38 @@ Building PublicPoolAndroid in One Day with Cursor | codeskraps
     
     <div>
         <p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
-
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style>
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture>
+  
 <h2 id="the-app-public-pool-android">The App: Public Pool Android</h2>
 <p><a href="https://repo.codeskraps.com/codeskraps/PublicPoolAndroid">Public Pool Android</a> is a mobile application that lets cryptocurrency miners monitor their mining activities directly from their Android devices. The app provides real-time tracking of hash rates, worker status, and wallet details while on the go.</p>
 <h2 id="key-features">Key Features</h2>

+ 60 - 24
public/posts/index.html

@@ -91,19 +91,37 @@ Posts | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>
@@ -117,19 +135,37 @@ Posts | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&rsquo;s worked through this transition, I&rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.</p>
-<figure class="responsive-image"><img src="/posts/2025/evolution_software_development_ai/header.png"
-    alt="The Evolution of Software Development in the AI Era" width="600" height="350">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg">
+    <img 
+      src="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg" 
+      alt="The Evolution of Software Development in the AI Era" 
+      width="600" 
+      height="344"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 2 - 2
public/posts/index.xml

@@ -15,14 +15,14 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
     <item>
       <title>The Evolution of Software Development in the AI Era</title>
       <link>https://codeskraps.com/posts/2025/evolution_software_development_ai/</link>
       <pubDate>Wed, 02 Apr 2025 00:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/evolution_software_development_ai/</guid>
-      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header.png&#34;&#xA;    alt=&#34;The Evolution of Software Development in the AI Era&#34; width=&#34;600&#34; height=&#34;350&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 600px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34; &#xA;      alt=&#34;The Evolution of Software Development in the AI Era&#34; &#xA;      width=&#34;600&#34; &#xA;      height=&#34;344&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
     <item>
       <title>Move /home Folder</title>

+ 30 - 12
public/tags/ai/index.html

@@ -91,19 +91,37 @@ Ai | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&rsquo;s worked through this transition, I&rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.</p>
-<figure class="responsive-image"><img src="/posts/2025/evolution_software_development_ai/header.png"
-    alt="The Evolution of Software Development in the AI Era" width="600" height="350">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg">
+    <img 
+      src="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg" 
+      alt="The Evolution of Software Development in the AI Era" 
+      width="600" 
+      height="344"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/ai/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/evolution_software_development_ai/</link>
       <pubDate>Wed, 02 Apr 2025 00:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/evolution_software_development_ai/</guid>
-      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header.png&#34;&#xA;    alt=&#34;The Evolution of Software Development in the AI Era&#34; width=&#34;600&#34; height=&#34;350&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 600px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34; &#xA;      alt=&#34;The Evolution of Software Development in the AI Era&#34; &#xA;      width=&#34;600&#34; &#xA;      height=&#34;344&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/android/index.html

@@ -91,19 +91,37 @@ Android | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/android/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
     <item>
       <title>React Native vs Kotlin Multiplatform</title>

+ 30 - 12
public/tags/cryptocurrency/index.html

@@ -91,19 +91,37 @@ Cryptocurrency | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/cryptocurrency/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/cursor/index.html

@@ -91,19 +91,37 @@ Cursor | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/cursor/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/development/index.html

@@ -91,19 +91,37 @@ Development | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/development/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/future/index.html

@@ -91,19 +91,37 @@ Future | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&rsquo;s worked through this transition, I&rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.</p>
-<figure class="responsive-image"><img src="/posts/2025/evolution_software_development_ai/header.png"
-    alt="The Evolution of Software Development in the AI Era" width="600" height="350">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg">
+    <img 
+      src="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg" 
+      alt="The Evolution of Software Development in the AI Era" 
+      width="600" 
+      height="344"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/future/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/evolution_software_development_ai/</link>
       <pubDate>Wed, 02 Apr 2025 00:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/evolution_software_development_ai/</guid>
-      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header.png&#34;&#xA;    alt=&#34;The Evolution of Software Development in the AI Era&#34; width=&#34;600&#34; height=&#34;350&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 600px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34; &#xA;      alt=&#34;The Evolution of Software Development in the AI Era&#34; &#xA;      width=&#34;600&#34; &#xA;      height=&#34;344&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/mining/index.html

@@ -91,19 +91,37 @@ Mining | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.</p>
-<figure class="responsive-image"><img src="/posts/2025/public_pool_android/feature_graphic.png"
-    alt="Public Pool Android App" width="800" height="400">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 800px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg">
+    <img 
+      src="/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg" 
+      alt="Public Pool Android App" 
+      width="800" 
+      height="391"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/mining/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/public_pool_android/</link>
       <pubDate>Sat, 05 Apr 2025 10:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/public_pool_android/</guid>
-      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic.png&#34;&#xA;    alt=&#34;Public Pool Android App&#34; width=&#34;800&#34; height=&#34;400&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 800px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;Today I want to share how I built a complete cryptocurrency mining monitoring app in just one day, from initial concept to Google Play Store submission, using Cursor as my IDE.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_b07fb17dbb2a4697.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_40801fc72754b39c.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/public_pool_android/feature_graphic_hu_cc0a414e721049d1.jpg&#34; &#xA;      alt=&#34;Public Pool Android App&#34; &#xA;      width=&#34;800&#34; &#xA;      height=&#34;391&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>

+ 30 - 12
public/tags/software-development/index.html

@@ -91,19 +91,37 @@ Software-Development | codeskraps
                 </div>
                 <div class="postExcerpt">
                     <p><p>When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&rsquo;s worked through this transition, I&rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.</p>
-<figure class="responsive-image"><img src="/posts/2025/evolution_software_development_ai/header.png"
-    alt="The Evolution of Software Development in the AI Era" width="600" height="350">
-</figure>
 
-<style>
-.responsive-image {
-    max-width: 600px;
-    width: 100%;
-    height: auto;
-    display: block;
-    margin: 0 auto;
-}
-</style></p>
+
+
+
+
+
+
+
+
+
+
+
+
+  
+  
+  
+  
+  <picture style="display: block; text-align: center; margin: 2rem auto;">
+    <source media="(max-width: 480px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg">
+    <source media="(max-width: 800px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg">
+    <source media="(min-width: 801px)" srcset="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg">
+    <img 
+      src="/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg" 
+      alt="The Evolution of Software Development in the AI Era" 
+      width="600" 
+      height="344"
+      style="max-width: 100%; height: auto; margin: 0 auto; display: block;"
+      class="responsive-image"
+      loading="lazy"
+    >
+  </picture></p>
                 </div>
             </div>
         </a>

+ 1 - 1
public/tags/software-development/index.xml

@@ -15,7 +15,7 @@
       <link>https://codeskraps.com/posts/2025/evolution_software_development_ai/</link>
       <pubDate>Wed, 02 Apr 2025 00:00:00 +0100</pubDate><author>me@codeskraps.com (codeskraps)</author>
       <guid>https://codeskraps.com/posts/2025/evolution_software_development_ai/</guid>
-      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&lt;figure class=&#34;responsive-image&#34;&gt;&lt;img src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header.png&#34;&#xA;    alt=&#34;The Evolution of Software Development in the AI Era&#34; width=&#34;600&#34; height=&#34;350&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;style&gt;&#xA;.responsive-image {&#xA;    max-width: 600px;&#xA;    width: 100%;&#xA;    height: auto;&#xA;    display: block;&#xA;    margin: 0 auto;&#xA;}&#xA;&lt;/style&gt;</description>
+      <description>&lt;p&gt;When ChatGPT was released on November 30, 2022, few of us understood how dramatically it would transform the software development landscape. As someone who&amp;rsquo;s worked through this transition, I&amp;rsquo;ve witnessed firsthand the remarkable shift in how we approach coding and problem-solving.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;  &#xA;  &#xA;  &lt;picture style=&#34;display: block; text-align: center; margin: 2rem auto;&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 480px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_6f3939eea610ecff.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(max-width: 800px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_88733619c784d65a.jpg&#34;&gt;&#xA;    &lt;source media=&#34;(min-width: 801px)&#34; srcset=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34;&gt;&#xA;    &lt;img &#xA;      src=&#34;https://codeskraps.com/posts/2025/evolution_software_development_ai/header_hu_3ad9a43b3c96546.jpg&#34; &#xA;      alt=&#34;The Evolution of Software Development in the AI Era&#34; &#xA;      width=&#34;600&#34; &#xA;      height=&#34;344&#34;&#xA;      style=&#34;max-width: 100%; height: auto; margin: 0 auto; display: block;&#34;&#xA;      class=&#34;responsive-image&#34;&#xA;      loading=&#34;lazy&#34;&#xA;    &gt;&#xA;  &lt;/picture&gt;</description>
     </item>
   </channel>
 </rss>