<?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>DEV Community: Jack Loh</title>
    <description>The latest articles on DEV Community by Jack Loh (@jackloh84).</description>
    <link>https://dev.to/jackloh84</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4021331%2F18600ce3-bd51-476b-a041-7be31cc2d96e.jpg</url>
      <title>DEV Community: Jack Loh</title>
      <link>https://dev.to/jackloh84</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jackloh84"/>
    <language>en</language>
    <item>
      <title>A Content Queue That Doesn't Make You Hate Sundays</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Wed, 08 Jul 2026 13:53:41 +0000</pubDate>
      <link>https://dev.to/jackloh84/a-content-queue-that-doesnt-make-you-hate-sundays-22mm</link>
      <guid>https://dev.to/jackloh84/a-content-queue-that-doesnt-make-you-hate-sundays-22mm</guid>
      <description>&lt;h1&gt;
  
  
  A Content Queue That Doesn't Make You Hate Sundays
&lt;/h1&gt;

&lt;p&gt;I tried Notion. Tried Trello. Tried a wall of sticky notes that my cat eventually ate.&lt;/p&gt;

&lt;p&gt;Every one of them worked for about two weeks. Then I'd stop updating the board and the whole thing would rot.&lt;/p&gt;

&lt;p&gt;Here's what actually stuck: a single text file.&lt;/p&gt;

&lt;h2&gt;
  
  
  The whole system
&lt;/h2&gt;

&lt;p&gt;One file called &lt;code&gt;content-queue.md&lt;/code&gt;. Four sections.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## This Week&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Write the cron tutorial (Tue)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Publish to DEV (Wed)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Share the link on Twitter (Thu)

&lt;span class="gu"&gt;## Next Week&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Draft: why I stopped using complex tools
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Record the quick video demo

&lt;span class="gu"&gt;## Ideas&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; interview with another solo dev
&lt;span class="p"&gt;-&lt;/span&gt; "what I learned from 100 bad posts"
&lt;span class="p"&gt;-&lt;/span&gt; review of my filing system

&lt;span class="gu"&gt;## Done&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [x] Published automation basics post
&lt;span class="p"&gt;-&lt;/span&gt; [x] Setup newsletter welcome sequence
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every Sunday I spend 15 minutes. Move things from Ideas into Next Week. Move things from This Week into Done. That's the whole process. No dashboard, no tags, not even a color code — just moving text around.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why it works
&lt;/h2&gt;

&lt;p&gt;A text file won't send you notifications. It won't have a downtime. And it definitely won't get a redesign that moves all your buttons around.&lt;/p&gt;

&lt;p&gt;I keep mine in a Dropbox folder so it syncs between my laptop and phone. If I have an idea on the train, I open the file on my phone, type it in, and forget about it until Sunday. Half the time I forget what I wrote by then, which is fine. Sunday planning is also when I discover what past-me was thinking.&lt;/p&gt;

&lt;h2&gt;
  
  
  The cron reminder
&lt;/h2&gt;

&lt;p&gt;I forget things constantly. So I set up this cron job:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;0 10 &lt;span class="k"&gt;*&lt;/span&gt; &lt;span class="k"&gt;*&lt;/span&gt; 0 &lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"Plan your week!"&lt;/span&gt; | mail &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="s2"&gt;"content queue"&lt;/span&gt; me@example.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Sunday at 10am. One line. If I ignore it, the email sits there and guilt-trips me until I do the planning. Works on macOS too. On Windows you'd use Task Scheduler. Same idea — a nag you control, not one the app controls.&lt;/p&gt;

&lt;h2&gt;
  
  
  Does it actually work?
&lt;/h2&gt;

&lt;p&gt;Eight months in, and it's the only system I haven't abandoned. That's not a boast — it's genuinely surprising. I have a folder of abandoned Notion templates to prove it.&lt;/p&gt;

&lt;p&gt;The template I use is bare bones. If you want the same thing with a few extras (monthly overviews, content pillar tracking), I put it &lt;a href="https://jackalope86.gumroad.com" rel="noopener noreferrer"&gt;here&lt;/a&gt;. Otherwise just open a file and start typing. The hard part isn't the format, it's showing up next Sunday and doing it again.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;🤖 AI-assisted draft. Content is my own original work and ideas.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>solopreneur</category>
      <category>contentcreation</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
