<?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>Forem: Subham Dawn</title>
    <description>The latest articles on Forem by Subham Dawn (@codersdawn).</description>
    <link>https://forem.com/codersdawn</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%2F3889291%2Ffe9d8e58-d279-4518-bc15-fc6e0ba9e838.jpg</url>
      <title>Forem: Subham Dawn</title>
      <link>https://forem.com/codersdawn</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/codersdawn"/>
    <language>en</language>
    <item>
      <title>PomoWatch</title>
      <dc:creator>Subham Dawn</dc:creator>
      <pubDate>Wed, 22 Apr 2026 21:50:00 +0000</pubDate>
      <link>https://forem.com/codersdawn/pomowatch-f5h</link>
      <guid>https://forem.com/codersdawn/pomowatch-f5h</guid>
      <description>&lt;p&gt;I built &lt;strong&gt;PomoWatch&lt;/strong&gt; — a minimal Pomodoro timer for the desktop.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Work, short break, and long break timers&lt;/li&gt;
&lt;li&gt;Configurable session durations and cycle count&lt;/li&gt;
&lt;li&gt;Start, pause, and reset controls&lt;/li&gt;
&lt;li&gt;Completed session counter&lt;/li&gt;
&lt;li&gt;Multi themes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Install on Ubuntu:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wget https://github.com/S-Dawn/PomoWatch/releases/download/v0.1.0-1/pomowatch_0.1.0-1_all.deb
&lt;span class="nb"&gt;sudo &lt;/span&gt;apt &lt;span class="nb"&gt;install&lt;/span&gt; ./pomowatch_0.1.0-1_all.deb
pomowatch
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or run from source with uv:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;uv run main.py
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Beyond the app itself, the repo is also a practical reference for two things that often feel abstract until you work through them hands-on:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Debian packaging&lt;/strong&gt; — the project includes a full &lt;code&gt;debian/&lt;/code&gt; directory with a working &lt;code&gt;dpkg-buildpackage&lt;/code&gt; setup. It covers control files, install rules, changelogs, and how to produce a distributable &lt;code&gt;.deb&lt;/code&gt; that installs cleanly via &lt;code&gt;apt&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Docker containerisation of a desktop GUI&lt;/strong&gt; — the included &lt;code&gt;Dockerfile&lt;/code&gt; demonstrates how to run a Tkinter app inside a container by forwarding X11 from the host, including display and audio device passthrough. A useful pattern if you have ever wondered how to containerise GUI apps on Linux.&lt;/p&gt;

&lt;p&gt;Both are documented in the README and &lt;code&gt;BUILD_DEB.md&lt;/code&gt; if you want to follow along or adapt them to your own projects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Source code:&lt;/strong&gt;&lt;br&gt;
👉 &lt;a href="https://github.com/S-Dawn/PomoWatch" rel="noopener noreferrer"&gt;https://github.com/S-Dawn/PomoWatch&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Open source. Contributions and feedback are welcome.&lt;/p&gt;

&lt;h1&gt;
  
  
  productivity #opensource #pomodoro #linux #debian #docker #packaging #developers
&lt;/h1&gt;

</description>
      <category>linux</category>
      <category>productivity</category>
      <category>python</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Resume Builder from Yaml file</title>
      <dc:creator>Subham Dawn</dc:creator>
      <pubDate>Tue, 21 Apr 2026 18:12:10 +0000</pubDate>
      <link>https://forem.com/codersdawn/resume-builder-from-yaml-file-9jj</link>
      <guid>https://forem.com/codersdawn/resume-builder-from-yaml-file-9jj</guid>
      <description>&lt;p&gt;I built an open-source tool called ResumeBuilder that generates an ATS-compliant resume from a simple YAML file.&lt;/p&gt;

&lt;p&gt;What it does:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Single resume.yaml file controls all content — no HTML edits needed&lt;/li&gt;
&lt;li&gt;Auto-generates both HTML and PDF outputs&lt;/li&gt;
&lt;li&gt;ATS-optimized single-column layout&lt;/li&gt;
&lt;li&gt;CLI with flexible output path overrides&lt;/li&gt;
&lt;li&gt;Powered by Python + WeasyPrint&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feel free to fork/clone the repository and get started&lt;br&gt;
Would love feedback from the community.&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/S-Dawn/ResumeBuilder" rel="noopener noreferrer"&gt;https://github.com/S-Dawn/ResumeBuilder&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>python</category>
    </item>
  </channel>
</rss>
