<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Johnny.Decimal</title><description>A system to organise your life.</description><link>https://johnnydecimal.com/</link><item><title>22.00.0192 March&apos;s YouTube roundup</title><link>https://johnnydecimal.com/22.00.0192/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0192/</guid><description>Links to the videos we published this month.</description><pubDate>Tue, 31 Mar 2026 02:34:08 GMT</pubDate><content:encoded>&lt;h1 id=&quot;marchs-youtube-roundup&quot;&gt;March&amp;#39;s YouTube roundup&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s your monthly round-up.&lt;/p&gt;
&lt;h3 id=&quot;make-your-llm-more-efficient-with-johnnydecimal&quot;&gt;Make your LLM more efficient with Johnny.Decimal&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-04&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/h5TUFFQEJgw&quot;&gt;&lt;a href=&quot;https://youtu.be/h5TUFFQEJgw&quot;&gt;https://youtu.be/h5TUFFQEJgw&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;attention-to-detail-gets-you-hired&quot;&gt;Attention to detail gets you hired&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-07&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/J2Sm9oIfj9A&quot;&gt;&lt;a href=&quot;https://youtu.be/J2Sm9oIfj9A&quot;&gt;https://youtu.be/J2Sm9oIfj9A&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;johnnydecimal-wasnt-designed-to-organise-everything&quot;&gt;Johnny.Decimal wasn&amp;#39;t designed to organise everything&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-11&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/DaK99lMlHH4&quot;&gt;&lt;a href=&quot;https://youtu.be/DaK99lMlHH4&quot;&gt;https://youtu.be/DaK99lMlHH4&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;meetings--at-least-theyre-not-email&quot;&gt;Meetings – at least they&amp;#39;re not email&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-14&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/EybKGE_TM_k&quot;&gt;&lt;a href=&quot;https://youtu.be/EybKGE_TM_k&quot;&gt;https://youtu.be/EybKGE_TM_k&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;i-use-the-structure-like-a-big-checklist&quot;&gt;I use the structure like a big checklist&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-18&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/2jSjo-94cCU&quot;&gt;&lt;a href=&quot;https://youtu.be/2jSjo-94cCU&quot;&gt;https://youtu.be/2jSjo-94cCU&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;fly-around-your-system-with-these-terminal-tricks&quot;&gt;Fly around your system with these terminal tricks&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-21&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/SM2TlZMOIYo&quot;&gt;&lt;a href=&quot;https://youtu.be/SM2TlZMOIYo&quot;&gt;https://youtu.be/SM2TlZMOIYo&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;an-easy-way-to-save-20-minutes-a-day&quot;&gt;An easy way to save 20 minutes a day&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;2026-03-30&lt;/em&gt;&lt;/p&gt;
  
&lt;a href=&quot;https://youtu.be/dEv7EYeX1Po&quot;&gt;&lt;a href=&quot;https://youtu.be/dEv7EYeX1Po&quot;&gt;https://youtu.be/dEv7EYeX1Po&lt;/a&gt;&lt;/a&gt;
&lt;p&gt;Decimal &lt;code&gt;ozhoom&lt;/code&gt; from the forum sent me this AppleScript that you can hack to automate this process. Change the paths at the top.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# enter the folder location in quotes:
set path1 to &amp;quot;Users:john:xxxxxxxxxxxx&amp;quot; as alias
set path2 to &amp;quot;Users:john:P68 Personal Life&amp;quot; as alias
set path3 to &amp;quot;Users:john:xxxxxxxxxxxxx&amp;quot; as alias
set path4 to &amp;quot;Users:john:Downloads&amp;quot; as alias

tell application &amp;quot;Finder&amp;quot;
	open path1
end tell

tell application &amp;quot;System Events&amp;quot; to perform action &amp;quot;AXPress&amp;quot; of menu item &amp;quot;New Tab&amp;quot; of menu &amp;quot;File&amp;quot; of menu bar item &amp;quot;File&amp;quot; of menu bar 1 of application process &amp;quot;Finder&amp;quot;
tell application &amp;quot;Finder&amp;quot;
	activate
	set target of front window to path2
end tell

tell application &amp;quot;System Events&amp;quot; to perform action &amp;quot;AXPress&amp;quot; of menu item &amp;quot;New Tab&amp;quot; of menu &amp;quot;File&amp;quot; of menu bar item &amp;quot;File&amp;quot; of menu bar 1 of application process &amp;quot;Finder&amp;quot;
tell application &amp;quot;Finder&amp;quot;
	activate
	set target of front window to path3
end tell

tell application &amp;quot;System Events&amp;quot; to perform action &amp;quot;AXPress&amp;quot; of menu item &amp;quot;New Tab&amp;quot; of menu &amp;quot;File&amp;quot; of menu bar item &amp;quot;File&amp;quot; of menu bar 1 of application process &amp;quot;Finder&amp;quot;
tell application &amp;quot;Finder&amp;quot;
	activate
	set target of front window to path4
end tell
&lt;/code&gt;&lt;/pre&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0191 Monodraw: create lovely ASCII diagrams</title><link>https://johnnydecimal.com/22.00.0191/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0191/</guid><description>Monodraw is a lovely little Mac app and only costs $10.</description><pubDate>Fri, 27 Mar 2026 05:32:54 GMT</pubDate><content:encoded>&lt;h1 id=&quot;monodraw-create-lovely-ascii-diagrams&quot;&gt;Monodraw: create lovely ASCII diagrams&lt;/h1&gt;
&lt;p&gt;We&amp;#39;re refreshing the website and replacing as many of the images as we can with line art diagrams. This fits the vibe better, they&amp;#39;re easier to maintain, and they&amp;#39;re hundreds of bytes instead of tens of thousands.&lt;/p&gt;
&lt;p&gt;Lucy is using the delightful &lt;a href=&quot;https://monodraw.helftone.com&quot;&gt;Monodraw&lt;/a&gt; for this and I thought I&amp;#39;d give it a shout-out. If you have any need to draw ASCII diagrams and you&amp;#39;re on a Mac, you&amp;#39;d be mad not to use it.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a free trial, and it&amp;#39;s &lt;em&gt;ten measly dollars&lt;/em&gt; to buy.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Monodraw.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://monodraw.helftone.com/static/images/screenshots/shot-robot@2x.png&quot; width=&quot;600&quot; height=&quot;auto&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0191A. Monodraw (image from their website).&lt;/figcaption&gt; &lt;/picture&gt; </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0190 Decimal Diary: Happy 1st birthday to the SBS</title><link>https://johnnydecimal.com/22.00.0190/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0190/</guid><description>Lucy reflects on the Small Business System&apos;s 1st birthday.</description><pubDate>Tue, 24 Mar 2026 09:01:22 GMT</pubDate><content:encoded>&lt;h1 id=&quot;happy-1st-birthday-to-the-sbs&quot;&gt;Happy 1st birthday to the SBS&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Today&amp;#39;s blog is a guest post by Lucy.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;ve been thinking a lot about &amp;#39;this time last year&amp;#39;. It was a period of upheaval for us, but also of huge productivity.&lt;/p&gt;
&lt;p&gt;We were madly selling everything we owned on &lt;a href=&quot;https://www.gumtree.com&quot;&gt;Gumtree&lt;/a&gt; and getting ready to move out of our home of 5 years. And we&amp;#39;d set a hard deadline that the &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.04-small-business-system/&quot;&gt;Small Business System&lt;/a&gt; (SBS) had to be released by the end of March.&lt;/p&gt;
&lt;p&gt;A year ago, I was buried in a looong document. For reasons, this was also a very sad time. And while it sounds cliched (and I&amp;#39;m no workaholic), I was grateful to have work to bury myself in. Johnny was nearby figuring out the code to make a website with a login.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-las&quot; id=&quot;user-content-fnref-las&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I&amp;#39;m pretty sure I saw steam coming out of his laptop from time to time.&lt;/p&gt;
&lt;p&gt;Break to stand at the whiteboard and discuss something. Write more words. Break to pack a moving box. Write more code. Break to run outside and help the buyer of our pot plants load them into a trailer. Back to the whiteboard. And so it continued.&lt;/p&gt;
&lt;p&gt;In a nutshell, here&amp;#39;s how we made it.&lt;/p&gt;
&lt;h2 id=&quot;the-process&quot;&gt;The process&lt;/h2&gt;
&lt;p&gt;We followed our own advice and stuck to the process in the &lt;a href=&quot;https://jdcm.al/22.00.0148/&quot;&gt;Workbook&lt;/a&gt;/&lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.03-workshop/&quot;&gt;Workshop&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;scope&quot;&gt;Scope&lt;/h3&gt;
&lt;p&gt;Our scope statement was basically &amp;quot;try to think of everything a small business has to do&amp;quot;. We drew on our combined 40+ years of experience and also tested our ideas on a list of about 20 different business types. We defined a small business as fewer than 10 people, roughly.&lt;/p&gt;
&lt;h3 id=&quot;discovery&quot;&gt;Discovery&lt;/h3&gt;
&lt;p&gt;I opened the first of many blank mind maps and started reading different business and tax websites from the Australian Government. I pulled out keywords on anything to do with starting a small business.&lt;/p&gt;
&lt;p&gt;Then I reviewed:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Everything in my archived filesystems from when I was a freelancer (Johnny did the same).&lt;/li&gt;
&lt;li&gt;Everything in the Johnny.Decimal business filesystem and JDex.&lt;/li&gt;
&lt;li&gt;Some filesystems and feedback from real small businesses in the US and New Zealand.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-filesystems&quot; id=&quot;user-content-fnref-filesystems&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I wrote down as many things as possible. I sat and thought. I walked and thought. I went down many research rabbit holes. I printed out a 20-page business plan template, stuck it to a wall, and stared at it many times a day. This went on for a few weeks.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of our old lounge room wall. There are 20 sheets of printed business plan template stuck to it.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190A-Business_plan_on_wall--800x1067.jpg&quot; width=&quot;800&quot; height=&quot;1067&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190A. An inspirational government business plan template on our wall.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;creating-areas-and-categories&quot;&gt;Creating areas and categories&lt;/h3&gt;
&lt;p&gt;Then it was time to start grouping the &amp;#39;discoveries&amp;#39; into areas and categories. And having Big Discussions with Johnny at the whiteboard. During this time, we also got up at 5am every day for Big Discussion Walks around our neighbourhood with mugs of coffee.&lt;/p&gt;
&lt;p&gt;The mind map began to take shape and grow.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A mind map. It&apos;s very busy and &apos;zoomed out&apos; so no details are discernable.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190B-Mind_map--800x1398.png&quot; width=&quot;800&quot; height=&quot;1398&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190B. The SBS areas and categories in progress.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;building-the-system&quot;&gt;Building the system&lt;/h3&gt;
&lt;p&gt;This was a very collaborative process and Johnny spent a lot of time riding the whiteboard:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I took notes, photos, and audio recordings of our conversations.&lt;/li&gt;
&lt;li&gt;We named the IDs and wrote the descriptions.&lt;/li&gt;
&lt;li&gt;We numbered the IDs only after much consideration.&lt;/li&gt;
&lt;li&gt;Then I wrote the supporting words for each ID.&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of a whiteboard. It&apos;s messy, with scribbles and boxes and arrows.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190C-Whiteboard_finance--800x600.jpg&quot; width=&quot;800&quot; height=&quot;600&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190C. Figuring out the finance category.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;ID by ID, we began at the beginning and kept going until we reached the end. There were several rounds of review and feedback on mind maps and my master document.&lt;/p&gt;
&lt;p&gt;When the content was &amp;#39;approved&amp;#39;, I pasted it into hundreds of text files to become the website. More rounds of review of the website followed. By the end, we were both quite batty and delirious.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of my desk on a Friday evening. The late-day sun lights the scene. On the desk is a gin martini.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190D-Friday_evening--800x600.jpg&quot; width=&quot;800&quot; height=&quot;600&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190D. Putting Johnny&amp;#39;s feedback and other edits into the master document with a Friday-evening martini.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of some papers lined up on a desk.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190E-Proofing--800x1067.jpg&quot; width=&quot;800&quot; height=&quot;600&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190E. Proofreading the master document at the kitchen table before turning it into the website.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;final-stats&quot;&gt;Final stats&lt;/h2&gt;
&lt;p&gt;A quick review of our archived files shows:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Our new system had 5 areas, 21 categories, and 344 IDs.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-system&quot; id=&quot;user-content-fnref-system&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;There were 13 research and planning mind maps.&lt;/li&gt;
&lt;li&gt;The master document had 342 pages and 46,309 words (written in Markdown).&lt;/li&gt;
&lt;li&gt;Johnny had written 13,000 lines of code.&lt;/li&gt;
&lt;li&gt;The project lasted 6 months, from September 2024 to March 2025.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We also did a sticker mailout to the first 100 people around the world who bought the system before it was released. Thank you for trusting us!&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of our sticker on the back of a laptop. It&apos;s in the shape of an airplane&apos;s tail fin. The aircraft&apos;s registration is JD-CML.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0190F-Sticker--800x600.jpg&quot; width=&quot;800&quot; height=&quot;600&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0190F. The pre-release sticker (Johnny loves planes) – we&amp;#39;re still repping ours.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Everything related to this project was made with sweat, tears, and love by two humans.&lt;/p&gt;
&lt;h2 id=&quot;what-now&quot;&gt;What now&lt;/h2&gt;
&lt;p&gt;We&amp;#39;re really happy that we made this system. We&amp;#39;d talked about making &lt;em&gt;something&lt;/em&gt; for small business for ages, we just weren&amp;#39;t sure where to begin. We spend all day in ours and we hope it&amp;#39;s helped other businesses feel more organised.&lt;/p&gt;
&lt;p&gt;We have ideas for improvements and welcome &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;feedback&lt;/a&gt;. In the meantime, there&amp;#39;s a new &lt;a href=&quot;https://www.youtube.com/playlist?list=PLtBN5zRaar6qyr3N_5R839uHpkoBAK3m6&quot;&gt;YouTube playlist&lt;/a&gt; for videos on how Johnny uses the SBS.&lt;/p&gt;
&lt;p&gt;And, finally, a special shoutout to &lt;a href=&quot;https://en.wikipedia.org/wiki/Platinum_Collection_(Genesis_album)&quot;&gt;Genesis&lt;/a&gt; and the inventor of the &lt;a href=&quot;https://en.wikipedia.org/wiki/Martini_(cocktail)&quot;&gt;martini&lt;/a&gt;, without whom this project would not have been possible.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-las&quot;&gt;
&lt;p&gt;Versus a one-off download and PDF from Shopify as per the Life Admin System v1.0. &lt;a href=&quot;#user-content-fnref-las&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-filesystems&quot;&gt;
&lt;p&gt;Thank you Dan from &lt;a href=&quot;https://www.paparonis.com&quot;&gt;Paparonis&lt;/a&gt;, Des from &lt;a href=&quot;https://datum-cnc.com&quot;&gt;Datum Machines&lt;/a&gt;, and Jeff from &lt;a href=&quot;https://lovettsundries.com&quot;&gt;Lovett Sundries&lt;/a&gt;. And any other Decimals who were in touch on the forum, Discord, or email. 😊 &lt;a href=&quot;#user-content-fnref-filesystems&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-system&quot;&gt;
&lt;p&gt;Not including all the standard zeros throughout. &lt;a href=&quot;#user-content-fnref-system&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0189 Documenting my security practices</title><link>https://johnnydecimal.com/22.00.0189/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0189/</guid><description>Here&apos;s an in-depth look at my security practices. In the hope of making it readable by the layperson, I&apos;ll give background where necessary. I welcome feedback.</description><pubDate>Mon, 23 Mar 2026 04:33:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;documenting-my-security-practices&quot;&gt;Documenting my security practices&lt;/h1&gt;
&lt;p&gt;Soon enough I&amp;#39;ll be releasing JDHQ v26 which will allow you – if you so choose – to store your own data. Think textual data: notes, the titles of IDs and categories, that sort of thing.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-beta&quot; id=&quot;user-content-fnref-beta&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; (I have no plans to build a file storage service.)&lt;/p&gt;
&lt;p&gt;But data is data. Even the title of an ID you create is potentially sensitive: it might relate to a medical procedure, for example.&lt;/p&gt;
&lt;p&gt;It would be disastrous to leak or otherwise allow this data to be exposed. There&amp;#39;s the obvious moral motivation, but also an economic one: nobody&amp;#39;s going to pay to use an insecure platform!&lt;/p&gt;
&lt;p&gt;I&amp;#39;m particularly sensitive to security issues given &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0187-post-incident-review/&quot;&gt;last month&amp;#39;s leak of email addresses&lt;/a&gt;. So here&amp;#39;s an in-depth look at my security practices. In the hope of making it readable by the layperson, I&amp;#39;ll give background where necessary. I welcome feedback.&lt;/p&gt;
&lt;h2 id=&quot;background-secret-keys&quot;&gt;Background: secret keys&lt;/h2&gt;
&lt;p&gt;My site uses a number of third-party services. Of particular interest are &lt;a href=&quot;https://clerk.com&quot;&gt;Clerk&lt;/a&gt;, which handles authentication, and &lt;a href=&quot;https://supabase.com&quot;&gt;Supabase&lt;/a&gt;, where your data is stored.&lt;/p&gt;
&lt;p&gt;Use of third parties like this is not only normal, it&amp;#39;s encouraged. Authentication in particular is notoriously difficult: it&amp;#39;s the sort of thing I really &lt;em&gt;shouldn&amp;#39;t&lt;/em&gt; do myself. It&amp;#39;s very likely that I&amp;#39;d do it wrong and introduce a security hole. Far better to use a company whose entire focus is authentication. So you should see this use of third parties as &amp;#39;a feature, not a bug&amp;#39;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-feature-not-bug&quot; id=&quot;user-content-fnref-feature-not-bug&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;My site runs on &lt;a href=&quot;https://netlify.com&quot;&gt;Netlify&lt;/a&gt; and for Netlify to talk to Clerk or Supabase, it needs my &amp;#39;secret key&amp;#39; from those services. This is just a very long password that servers use to talk to each other. But there&amp;#39;s a clue in its name: &lt;strong&gt;secret&lt;/strong&gt;. If you have my Clerk or Supabase secret key, you can do anything that I can do.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ll come back to these secret keys.&lt;/p&gt;
&lt;h3 id=&quot;my-logins-to-these-sites&quot;&gt;My logins to these sites&lt;/h3&gt;
&lt;p&gt;If you could sign in to these sites as me, that&amp;#39;d be bad. You could generate new secret keys, for example.&lt;/p&gt;
&lt;p&gt;All of my logins use unique email addresses at a never-published domain (i.e. not &lt;code&gt;…@johnnydecimal.com&lt;/code&gt;), unique strong passwords generated by 1Password, and 2-factor authentication.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-two-factor&quot; id=&quot;user-content-fnref-two-factor&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;background-encryption&quot;&gt;Background: encryption&lt;/h2&gt;
&lt;p&gt;If I didn&amp;#39;t encrypt your data, I&amp;#39;d be able to trivially – and accidentally – read it. Here&amp;#39;s what the Supabase console looks like.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing a single row from a database table. Columns are `user_id`, `slug`, `title`, and `notes`. The notes field is populated with random text.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0189A-Supabase_console--0-cx-1610x472@2x.png&quot; width=&quot;805&quot; height=&quot;236&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0189A. Supabase table view.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I&amp;#39;ve highlighted the &amp;#39;notes&amp;#39; field. If that wasn&amp;#39;t encrypted, any notes you entered would just appear there. Similarly for the title of your custom ID in the column to the left.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-standard&quot; id=&quot;user-content-fnref-standard&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Encryption is a balancing act. Broadly, there are two options.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I encrypt it with a key that I hold. I can decrypt it.&lt;/li&gt;
&lt;li&gt;I encrypt it with a key that you hold. I can&amp;#39;t decrypt it.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You might think option 2. is the obvious choice, but it comes with a serious drawback: if you lose the key, there&amp;#39;s nothing I can do to help you decrypt your data. It&amp;#39;s irretrievably lost. And overall it&amp;#39;s just a more complex solution with more moving parts; more to go wrong.&lt;/p&gt;
&lt;p&gt;For this reason, the vast majority of services that you use hold a key to your data. Apple has a key that will unlock your iCloud account: otherwise when you drop your phone in the ocean and realise you&amp;#39;ve also forgotten your iCloud password, all your family photos are gone. (This happens all the time.)&lt;sup&gt;&lt;a href=&quot;#user-content-fn-adp&quot; id=&quot;user-content-fnref-adp&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;the-data-encryption-key&quot;&gt;The data encryption key&lt;/h3&gt;
&lt;p&gt;This encryption key is basically another secret key: a very long &amp;#39;password&amp;#39;. I&amp;#39;ll explain below how I ensure the safety of these keys.&lt;/p&gt;
&lt;h3 id=&quot;the-data-encryption-algorithm&quot;&gt;The data encryption algorithm&lt;/h3&gt;
&lt;p&gt;I use AES-256-GCM. AES-256 is the gold standard for symmetric encryption. The &amp;#39;GCM&amp;#39; part adds authentication: not only is your data unreadable without the key, but any tampering with the &amp;#39;ciphertext&amp;#39; (the encrypted end result) is detected. If someone were to modify your encrypted data in the database, the system would reject it rather than silently returning garbage.&lt;/p&gt;
&lt;p&gt;Each time a piece of data is encrypted, a random value is mixed in. This means that even if two users enter identical notes, the encrypted result is completely different each time – an attacker looking at the database can&amp;#39;t even tell which entries contain the same text.&lt;/p&gt;
&lt;h3 id=&quot;your-name-isnt-stored-alongside-your-data&quot;&gt;Your name isn&amp;#39;t stored alongside your data&lt;/h3&gt;
&lt;p&gt;Note the &lt;code&gt;user_id&lt;/code&gt; field in that screenshot. This id, which is a very long random string like &lt;code&gt;user_39FY886j223z4M3jAib2ZRwcM3H&lt;/code&gt;, is how your &lt;em&gt;data&lt;/em&gt;, in Supabase, is linked to your &lt;em&gt;user&lt;/em&gt;, at Clerk.&lt;/p&gt;
&lt;p&gt;So in order to steal your data and link it to your identity, an attacker would need to:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Steal the Supabase database.&lt;/li&gt;
&lt;li&gt;Steal the encryption key, to decrypt the data.&lt;/li&gt;
&lt;li&gt;Access my Clerk account, to link the stolen data to an individual.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This assumes that I even have your name. You &lt;em&gt;can&lt;/em&gt; save it in your JDHQ profile, but it&amp;#39;s optional. I encourage the use of &lt;a href=&quot;https://www.privacyguides.org/en/email-aliasing/&quot;&gt;email aliasing&lt;/a&gt; for further anonymity.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-email-aliasing&quot; id=&quot;user-content-fnref-email-aliasing&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;you-need-to-trust-me&quot;&gt;You need to trust me&lt;/h3&gt;
&lt;p&gt;This whole thing implies a level of trust. Just like you trust Apple not to go rummaging about in your iCloud account, you need to trust me to not decrypt your data just because I&amp;#39;m curious. To make it explicit: I won&amp;#39;t do that. That&amp;#39;d be creepy and, again, business-ruining if discovered. What would I possibly stand to gain?&lt;/p&gt;
&lt;h3 id=&quot;i-am-subject-to-the-laws-of-australia&quot;&gt;I am subject to the laws of Australia&lt;/h3&gt;
&lt;p&gt;Like every other service you use, I am subject to the law. Holding a key to your data means that, if legally compelled to reveal it, I am able to do so. This is just something to be aware of.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-canary&quot; id=&quot;user-content-fnref-canary&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;7&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;advanced-data-protection-in-the-future&quot;&gt;&amp;#39;Advanced data protection&amp;#39; in the future&lt;/h3&gt;
&lt;p&gt;I would like to add an ADP-like feature – where you supply your own encryption key – in the future. Given the nature of my site and the data stored on it, it&amp;#39;s honestly not high on my list of priorities.&lt;/p&gt;
&lt;h2 id=&quot;implementation-details&quot;&gt;Implementation details&lt;/h2&gt;
&lt;p&gt;The TL;DR of the background story so far is that:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I hold a number of keys that are vital for the running of the service.&lt;/li&gt;
&lt;li&gt;These keys are critically sensitive. If leaked, stolen, or lost: game over.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here&amp;#39;s how I protect those keys.&lt;/p&gt;
&lt;h3 id=&quot;loading-them-into-consoles&quot;&gt;Loading them into consoles&lt;/h3&gt;
&lt;p&gt;There is a one-time action which is to:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Retrieve the secret key from its service, e.g. Clerk, or&lt;/li&gt;
&lt;li&gt;Generate a secret key, e.g. for data encryption, then&lt;/li&gt;
&lt;li&gt;Load that secret key into the consuming service, e.g. Netlify.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-netlify&quot; id=&quot;user-content-fnref-netlify&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;8&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It is in my interests to make these keys as difficult to access as possible. Fortunately, after this one-time load, I never need to access them. I&amp;#39;d only need them if, say, I moved from Netlify to another host.&lt;/p&gt;
&lt;h3 id=&quot;i-also-need-to-not-lose-them&quot;&gt;I also need to not lose them&lt;/h3&gt;
&lt;p&gt;This is another trade-off. While keeping these keys very secure, I need to ensure that I don&amp;#39;t lose them. While I can regenerate Clerk&amp;#39;s secret key, this isn&amp;#39;t an option for the key that encrypts your data. If I lose that key, I lose the ability to decrypt your data: also disastrous.&lt;/p&gt;
&lt;h3 id=&quot;1password&quot;&gt;1Password&lt;/h3&gt;
&lt;p&gt;It is standard practice to store keys in a password manager. &lt;a href=&quot;https://1password.com&quot;&gt;1Password&lt;/a&gt; is one such tool. I&amp;#39;ve used it for my own passwords – which are all unique – since 2009. It provides &lt;a href=&quot;https://developer.1password.com&quot;&gt;dedicated features&lt;/a&gt; for developers.&lt;/p&gt;
&lt;h3 id=&quot;production-keys&quot;&gt;Production keys&lt;/h3&gt;
&lt;p&gt;Production keys – those that are used to secure your data – are stored in a dedicated 1Password vault. Given that I do not routinely use these keys, I have removed my user account&amp;#39;s &amp;#39;read&amp;#39; access from this vault.&lt;/p&gt;
&lt;p&gt;This causes the vault to un-synchronise from the desktop application. As a result, &lt;strong&gt;these keys are no longer available on this laptop&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This prevents even the most nefarious process from accessing them. Even if I were tricked into unlocking my vault: the keys simply aren&amp;#39;t there to read.&lt;/p&gt;
&lt;p&gt;To re-synchronise the vault to this laptop I need to sign in to the 1Password web console and add &amp;#39;read&amp;#39; access back to my account. This would be a very deliberate action and certainly not one that a nefarious script could perform.&lt;/p&gt;
&lt;h3 id=&quot;development-keys&quot;&gt;Development keys&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;This gets a bit technical.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;My development keys – which I need to have available to me on this laptop, &lt;strong&gt;but which are not used to secure your data&lt;/strong&gt; – are stored in a vault that is synchronised to this laptop. I have created a &lt;a href=&quot;https://developer.1password.com/docs/service-accounts/&quot;&gt;service account&lt;/a&gt; that only has access to this vault.&lt;/p&gt;
&lt;p&gt;These keys are made available to my development environment using &lt;a href=&quot;https://developer.1password.com/docs/cli/secret-references/&quot;&gt;secret references&lt;/a&gt; in my &lt;code&gt;.env&lt;/code&gt; file.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-env&quot; id=&quot;user-content-fnref-env&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;9&lt;/a&gt;&lt;/sup&gt; For example:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;CLERK_SECRET_KEY=&amp;quot;op://&amp;lt;vault-name&amp;gt;/&amp;lt;item-name&amp;gt;/CLERK_SECRET_KEY&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Because my 1Password service account token is &lt;a href=&quot;https://developer.1password.com/docs/service-accounts/use-with-1password-cli/&quot;&gt;available to my environment&lt;/a&gt;, development key requests &lt;strong&gt;do not trigger a fingerprint authentication request&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This prevents &amp;#39;fingerprint fatigue&amp;#39;. Previously, every key request triggered 1Password&amp;#39;s authentication pop-up. It was natural to instinctively respond to these requests and would have been easy, therefore, to over-respond and accidentally approve a nefarious request.&lt;/p&gt;
&lt;p&gt;Now, if a nefarious actor somehow triggers an &lt;a href=&quot;https://developer.1password.com/docs/cli/reference/commands/read/&quot;&gt;op read&lt;/a&gt; request, &lt;em&gt;1Password will prompt me&lt;/em&gt;. This prompt will be unexpected and unusual; I will not instinctively reach for the fingerprint sensor. Not that it matters: because, as noted above, production keys aren&amp;#39;t even here. There&amp;#39;s nothing to steal.&lt;/p&gt;
&lt;p&gt;This layered approach protects against supply-chain attacks like &lt;a href=&quot;https://www.cisa.gov/news-events/alerts/2025/09/23/widespread-supply-chain-compromise-impacting-npm-ecosystem&quot;&gt;this one&lt;/a&gt; from 2025.&lt;/p&gt;
&lt;h3 id=&quot;key-rotation&quot;&gt;Key rotation&lt;/h3&gt;
&lt;p&gt;&amp;#39;Rotation&amp;#39; is the practice of proactively getting new secret keys and re-loading them into consoles. It&amp;#39;s standard at large companies where many people might have access to a key: it limits the exposure if you forget to remove someone&amp;#39;s access after they leave, for example.&lt;/p&gt;
&lt;p&gt;I have no plans to routinely rotate my keys. For an individual with the controls described above it adds operational risk without any meaningful benefit. When am I most likely to accidentally leak a key? When I&amp;#39;m handling keys. So the less I do that, the less the risk.&lt;/p&gt;
&lt;h3 id=&quot;trufflehog&quot;&gt;Trufflehog&lt;/h3&gt;
&lt;p&gt;I have installed &lt;a href=&quot;https://github.com/trufflesecurity/trufflehog&quot;&gt;Trufflehog&lt;/a&gt; as a GitHub action. This software &amp;#39;sniffs out&amp;#39; any secrets that are accidentally committed and pushed to GitHub (i.e. a worse version of what I did with those email addresses).&lt;/p&gt;
&lt;p&gt;Every push to JDHQ is scanned by Trufflehog.&lt;/p&gt;
&lt;h3 id=&quot;package-updates&quot;&gt;Package updates&lt;/h3&gt;
&lt;p&gt;Modern websites use any number of third-party software packages, and those packages are a source of security vulnerabilities. It is important to keep them up-to-date.&lt;/p&gt;
&lt;p&gt;I have a monthly checklist to update all packages. I protect against malicious updates using &lt;a href=&quot;https://pnpm.io/supply-chain-security&quot;&gt;pnpm&amp;#39;s minimum-release-age and blocking of post-install scripts&lt;/a&gt;. This means that a package can&amp;#39;t be installed until at least one week after its release, giving the community time to discover and flag compromised versions.&lt;/p&gt;
&lt;h2 id=&quot;phishing&quot;&gt;Phishing&lt;/h2&gt;
&lt;p&gt;You can have the best key security in the world, but if an attacker tricks you into handing them over – by setting up a fake site, and luring you into entering them there – it&amp;#39;s game over.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what a &lt;a href=&quot;https://www.cloudflare.com/en-au/learning/access-management/phishing-attack/&quot;&gt;phishing attack&lt;/a&gt; is. They can be &lt;a href=&quot;https://ma.tt/2026/03/gone-almost-phishin/&quot;&gt;extraordinarily sophisticated&lt;/a&gt;, and even the &lt;a href=&quot;https://www.troyhunt.com/a-sneaky-phish-just-grabbed-my-mailchimp-mailing-list/&quot;&gt;best security researchers in the world&lt;/a&gt; are susceptible. Here&amp;#39;s how I guard against them.&lt;/p&gt;
&lt;h3 id=&quot;1password-again&quot;&gt;1Password, again&lt;/h3&gt;
&lt;p&gt;Using a password manager, and only ever using it to fill your passwords – &lt;strong&gt;never&lt;/strong&gt; entering them manually – is the simplest way to avoid having your credentials phished.&lt;/p&gt;
&lt;p&gt;Because 1Password knows that my Clerk password only belongs at &lt;code&gt;https://clerk.com&lt;/code&gt;. When a phisher tries to get me to sign in at &lt;code&gt;https://сlerk.com&lt;/code&gt; – look carefully, see if you can spot the scam – 1Password will refuse to enter my password.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://1password.com/product/passkeys&quot;&gt;Passkeys&lt;/a&gt; are an even stronger defence against this, and I use them for all of my sensitive services.&lt;/p&gt;
&lt;h3 id=&quot;browser-behaviour&quot;&gt;Browser behaviour&lt;/h3&gt;
&lt;p&gt;Behaviourally, I have another line of defence. In &lt;a href=&quot;https://youtu.be/TVwu22KnOUY&quot;&gt;this video&lt;/a&gt; I show how I have my common sites permanently set up in Safari tab groups.&lt;/p&gt;
&lt;p&gt;So if someone mailed me a link to sign in to Clerk, I wouldn&amp;#39;t click that link. That would open a new tab in a new window, which would break my neat system. Instead, I already &lt;em&gt;have&lt;/em&gt; an open tab for Clerk, in my &lt;code&gt;⚙️ Services&lt;/code&gt; group. I&amp;#39;d head over there and look for a notification.&lt;/p&gt;
&lt;h2 id=&quot;disclosure-and-feedback&quot;&gt;Disclosure and feedback&lt;/h2&gt;
&lt;p&gt;If I ever discover a security issue I will disclose it &lt;strong&gt;within 24 hours&lt;/strong&gt; on the &lt;a href=&quot;https://blog.johnnydecimal.com&quot;&gt;blog&lt;/a&gt;. Posts appear in my &lt;a href=&quot;https://johnnydecimal.com/rss.xml&quot;&gt;RSS feed&lt;/a&gt;, and I cross-post to the &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt;, &lt;a href=&quot;http://discord.gg/KYWzAJhmPv&quot;&gt;Discord&lt;/a&gt;, and &lt;a href=&quot;https://hachyderm.io/@johnnydecimal&quot;&gt;Mastodon&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;securitytxt&quot;&gt;Security.txt&lt;/h3&gt;
&lt;p&gt;I welcome security feedback and publish a &lt;a href=&quot;https://jdhq.johnnydecimal.com/.well-known/security.txt&quot;&gt;security.txt&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-securitytxt&quot; id=&quot;user-content-fnref-securitytxt&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;10&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;summary&quot;&gt;Summary&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m very, very comfortable with my security posture. I&amp;#39;ve written it up here for a few reasons. It forced me to consider the end-to-end approach. I hope it gives you confidence. I hope you learned something. And I hope that other solo developers might find these patterns useful.&lt;/p&gt;
&lt;p&gt;As always, I am happy to answer questions &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;directly by email&lt;/a&gt; or on the &lt;a href=&quot;https://forum.johnnydecimal.com/search?q=22.00.0189%20order%3Alatest&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267672809480650884&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;thanks&quot;&gt;Thanks&lt;/h3&gt;
&lt;p&gt;Versions of this post were kindly reviewed by two &amp;#39;friends of Johnny.Decimal&amp;#39; who work in the field of IT security. Thank you. Any errors or omissions are, of course, my responsibility.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-beta&quot;&gt;
&lt;p&gt;This will be a very early beta-style release. I expect almost nobody will use it. But the only way for me to get this thing from no-product to useful-product is to build it, and start using it. So that&amp;#39;s what I&amp;#39;m gonna do. &lt;a href=&quot;#user-content-fnref-beta&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-feature-not-bug&quot;&gt;
&lt;p&gt;A phrase that nerds use to mean something that&amp;#39;s working as designed. &lt;a href=&quot;#user-content-fnref-feature-not-bug&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-two-factor&quot;&gt;
&lt;p&gt;I implement Passkeys where available, otherwise using one-time codes managed by 1Password. I don&amp;#39;t use SMS authentication.&lt;/p&gt;
&lt;p&gt;I own a YubiKey but given my physical situation – travelling the world, always on the move – the risk of losing it outweighs any benefit I feel it would give. &lt;a href=&quot;#user-content-fnref-two-factor&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-standard&quot;&gt;
&lt;p&gt;This ID is one of the base set from Life Admin and as such its title doesn&amp;#39;t need to be encrypted. &lt;a href=&quot;#user-content-fnref-standard&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-adp&quot;&gt;
&lt;p&gt;Apple offers &lt;a href=&quot;https://support.apple.com/en-au/guide/security/sec973254c5f/web&quot;&gt;Advanced Data Protection&lt;/a&gt; for those who want to opt-out of this key recovery. Most people shouldn&amp;#39;t use it. &lt;a href=&quot;#user-content-fnref-adp&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-email-aliasing&quot;&gt;
&lt;p&gt;I&amp;#39;ll be recording a free course with Lucy later in the year to explain how this works, and how to set it up yourself. &lt;a href=&quot;#user-content-fnref-email-aliasing&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-canary&quot;&gt;
&lt;p&gt;I&amp;#39;ll implement a &lt;a href=&quot;https://en.wikipedia.org/wiki/Warrant_canary&quot;&gt;warrant canary&lt;/a&gt; before the new site goes live. &lt;a href=&quot;#user-content-fnref-canary&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 7&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-netlify&quot;&gt;
&lt;p&gt;Netlify recognises these keys as secrets and &lt;a href=&quot;https://docs.netlify.com/build/environment-variables/secrets-controller/&quot;&gt;provides dedicated features to ensure their safety&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-netlify&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 8&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-env&quot;&gt;
&lt;p&gt;&lt;code&gt;.env&lt;/code&gt; is &lt;code&gt;.gitignore&lt;/code&gt;d, preventing exposure of even the 1Password secret reference string. &lt;a href=&quot;#user-content-fnref-env&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 9&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-securitytxt&quot;&gt;
&lt;p&gt;See &lt;a href=&quot;https://en.wikipedia.org/wiki/Security.txt&quot;&gt;security.txt at Wikipedia&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-securitytxt&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 10&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0188 A Productive Conversation with Mike Vardy</title><link>https://johnnydecimal.com/22.00.0188/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0188/</guid><description>Last week it was my pleasure to have A Productive Conversation with Mike Vardy.</description><pubDate>Sun, 22 Mar 2026 02:04:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-productive-conversation-with-mike-vardy&quot;&gt;A Productive Conversation with Mike Vardy&lt;/h1&gt;
&lt;p&gt;Last week it was my pleasure to have A Productive Conversation with &lt;a href=&quot;https://mikevardy.com&quot;&gt;Mike Vardy&lt;/a&gt;. We talked about the origin story of Johnny.Decimal, and why there&amp;#39;s room for plenty more systems in the productivity world; about the links between my system, task management, and Mike&amp;#39;s concept of TimeCrafting; and about content vs. context, and how we&amp;#39;re often better off starting with the latter, even though our instincts start us with the former.&lt;/p&gt;
&lt;p&gt;Listen using the link below, or in &lt;a href=&quot;https://pod.link/913414044/episode/YWY4YzI0OGUtYmUzZi00MGIyLWEwOGYtMjQwNzAwZjg3OWI1&quot;&gt;any podcast player&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://share.transistor.fm/s/99794f34&quot;&gt;share.transistor.fm/s/99794f34&lt;/a&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0187 Post-incident review</title><link>https://johnnydecimal.com/22.00.0187/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0187/</guid><description>Here&apos;s what happened, how it happened, what I did about it, and what I&apos;m doing to make sure it can&apos;t happen again.</description><pubDate>Wed, 04 Mar 2026 17:56:32 GMT</pubDate><content:encoded>&lt;h1 id=&quot;post-incident-review&quot;&gt;Post-incident review&lt;/h1&gt;
&lt;p&gt;Yesterday I discovered that I had leaked 3,638 email addresses by uploading them to a public GitHub repository.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what happened, how it happened, what I did about it, and what I&amp;#39;m doing to make sure it can&amp;#39;t happen again.&lt;/p&gt;
&lt;h2 id=&quot;tldr&quot;&gt;TL;DR&lt;/h2&gt;
&lt;p&gt;This post will be long, so here&amp;#39;s the essential stuff if that&amp;#39;s all you care about.&lt;/p&gt;
&lt;p&gt;Yesterday morning (2026-03-03 06:00 -- all times in this post are UTC) I was alerted by email and private message that someone&amp;#39;s unique email address, that they had only ever used on my services, had received a phishing email purporting to be from PayPal.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s only one way for this to be possible: it meant that I had allowed the address to be stolen. I acknowledged this with a &lt;a href=&quot;https://johnnydecimal.com/22.00.0185/&quot;&gt;blog post&lt;/a&gt; at 06:46, requesting that people let me know if they were affected.&lt;/p&gt;
&lt;p&gt;Through the day I received, or could infer from my own data, 17 addresses that either did, or did not, receive the phishing email.&lt;/p&gt;
&lt;p&gt;Analysis of these 17 data points led me to the realisation that I had uploaded a folder full of text files containing email addresses to a public GitHub repository. This made them visible to anyone who cared to go looking. I confirmed this theory at 18:00 and immediately made the repository private. I acknowledged this with a &lt;a href=&quot;https://johnnydecimal.com/22.00.0186/&quot;&gt;blog post&lt;/a&gt; at 18:18.&lt;/p&gt;
&lt;p&gt;The first upload of 1,650 addresses occurred on 2024-10-08. Further updates were uploaded through 2025. The final number of addresses in the repository was 3,638. Because I don&amp;#39;t know when the data was scraped from GitHub, I can&amp;#39;t be sure which of those addresses was harvested. My assumption must be that they all were.&lt;/p&gt;
&lt;p&gt;I am deeply sorry. I strive every day to be an exemplar of &amp;#39;the good Internet&amp;#39;. In this instance, I have failed you quite miserably.&lt;/p&gt;
&lt;h3 id=&quot;how-to-determine-if-your-address-was-leaked&quot;&gt;How to determine if your address was leaked&lt;/h3&gt;
&lt;p&gt;Immediately after this post has been published I will email the 3,638 addresses that were leaked.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;From: Johnny &amp;#39;Decimal&amp;#39; Noble &amp;lt;&lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hello@johnnydecimal.com&lt;/a&gt;&amp;gt;&lt;/li&gt;
&lt;li&gt;At: around 2026-03-04 18:00 UTC&lt;/li&gt;
&lt;li&gt;Subject: Important: your email address was exposed [D25.14.44]&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;If you receive this email then your address was leaked&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;You can also check if you received the phishing email:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;From: PayPal Security &amp;lt;no.con**star@ca**a.cl&amp;gt;&lt;/li&gt;
&lt;li&gt;At: around 2026-03-03 05:30 UTC&lt;/li&gt;
&lt;li&gt;Subject: Please confirm your identity&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;If you receive this email then your address was leaked&lt;/strong&gt;. (Check your spam folder: many providers correctly identified it as a phishing attempt.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If you do &lt;span style=&quot;text-decoration: underline;&quot;&gt;not&lt;/span&gt; receive either of these emails then your address was not leaked&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;was-any-other-data-leaked&quot;&gt;Was any other data leaked?&lt;/h3&gt;
&lt;p&gt;Like names, addresses, dates of birth, passwords, or access to accounts?&lt;/p&gt;
&lt;p&gt;No. The only data leaked was a list of email addresses in a text file.&lt;/p&gt;
&lt;h3 id=&quot;whats-the-impact-of-the-leak&quot;&gt;What&amp;#39;s the impact of the leak?&lt;/h3&gt;
&lt;p&gt;The email address that was leaked will receive spam and phishing attempts.&lt;/p&gt;
&lt;p&gt;To be clear, your &lt;strong&gt;account&lt;/strong&gt; has not been compromised. Only your email &lt;strong&gt;address&lt;/strong&gt; has been made public. You do not need to change your password (assuming it is already unique -- see &lt;a href=&quot;#what-can-you-do&quot;&gt;What can you do?&lt;/a&gt; at the end of this post).&lt;/p&gt;
&lt;h2 id=&quot;full-timeline&quot;&gt;Full timeline&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;06:00
&lt;ul&gt;
&lt;li&gt;Leak notification received.&lt;/li&gt;
&lt;li&gt;Incident D25.14.44.2026-03-03 created.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;06:46
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0185/&quot;&gt;Public informed of breach&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;08:16, 08:32, 08:47, 09:40, 10:43, 11:51, 12:55, 14:02, 14:43, 15:31
&lt;ul&gt;
&lt;li&gt;Data received from affected users helped me to build the picture.&lt;/li&gt;
&lt;li&gt;I&amp;#39;ll explain below why this took so long.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;18:00
&lt;ul&gt;
&lt;li&gt;I realised what it was and used local data to confirm.&lt;/li&gt;
&lt;li&gt;The repository was made private.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;18:18
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0186/&quot;&gt;Public informed of cause&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;how-it-happened&quot;&gt;How it happened&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s &lt;em&gt;why&lt;/em&gt; I had a folder full of your email addresses, and how they ended up on GitHub.&lt;/p&gt;
&lt;p&gt;Over the years I&amp;#39;ve used a variety of 3rd party platforms to deliver websites and services, as well as hosting a public email list.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Buttondown
&lt;ul&gt;
&lt;li&gt;Used to host the mailing list from 2019–2024.&lt;/li&gt;
&lt;li&gt;Allowed users to opt-in to email marketing.&lt;/li&gt;
&lt;li&gt;Users hold an account of sorts; while you don&amp;#39;t have a password, the platform records your email address.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Netlify
&lt;ul&gt;
&lt;li&gt;Used to host johnnydecimal.com and jdhq.johnnydecimal.com from 2019–current.&lt;/li&gt;
&lt;li&gt;Users do not hold an account at Netlify: it&amp;#39;s an infrastructure service only.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Gumroad
&lt;ul&gt;
&lt;li&gt;Used to sell the Workbook from 2023–2024.&lt;/li&gt;
&lt;li&gt;Allowed users to opt-in to email marketing.&lt;/li&gt;
&lt;li&gt;Users held an account at Gumroad.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Thinkific
&lt;ul&gt;
&lt;li&gt;Used to sell various products from 2023–2025.&lt;/li&gt;
&lt;li&gt;Users held an account at Thinkific.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Shopify
&lt;ul&gt;
&lt;li&gt;Used to sell various products from 2024–2025.&lt;/li&gt;
&lt;li&gt;Allowed users to opt-in to email marketing.&lt;/li&gt;
&lt;li&gt;Users held an account at Shopify.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Stripe
&lt;ul&gt;
&lt;li&gt;Used to process payments from 2024–current.&lt;/li&gt;
&lt;li&gt;Users hold an account of sorts at Stripe: you can&amp;#39;t log in, but they hold a record of transactions linked to your email address.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;PayPal
&lt;ul&gt;
&lt;li&gt;Used to process payments from 2024–current.&lt;/li&gt;
&lt;li&gt;Users may hold an account at PayPal.&lt;/li&gt;
&lt;li&gt;It&amp;#39;s also possible to check-out as a guest, but in any case your email address is recorded.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Listmonk
&lt;ul&gt;
&lt;li&gt;Used to host the mailing list from 2025–current.&lt;/li&gt;
&lt;li&gt;Allows users to opt-in to email marketing.&lt;/li&gt;
&lt;li&gt;Users hold an account of sorts; while you don&amp;#39;t have a password, the platform records your email address.&lt;/li&gt;
&lt;li&gt;The link at the bottom of every email allows you to unsubscribe (in which case your email address is retained) or delete your data entirely.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;PikaPods
&lt;ul&gt;
&lt;li&gt;Used to host Listmonk from 2025–current.&lt;/li&gt;
&lt;li&gt;Users do not hold an account at PikaPods: it&amp;#39;s an infrastructure service only.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Amazon Simple Email Service (SES)
&lt;ul&gt;
&lt;li&gt;Used to send emails from 2025–current.&lt;/li&gt;
&lt;li&gt;Users do not hold an account at Amazon: it&amp;#39;s an infrastructure service only.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Clerk
&lt;ul&gt;
&lt;li&gt;Used to host JDHQ user accounts from 2025–current.&lt;/li&gt;
&lt;li&gt;Users hold an account at Clerk.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If this sounds like a nightmare, it&amp;#39;s because it is. But this is the reality of running a small online business: you stitch together that business based on the services available to you at the time. This is a factor of features, cost, and experience. As your business grows, you move between platforms.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;To be explicit: none of this is the fault of any of these platforms. I list them all merely to demonstrate the range of stuff one has to deal with.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The reality of running this type of business is that you spend a &lt;em&gt;lot&lt;/em&gt; of time consolidating user data from these services. Why is &lt;em&gt;this person&lt;/em&gt; in this data set and are they the same person as &lt;em&gt;this person&lt;/em&gt; in that data set? You do this so you can mail the right people the right information; send subsets of people offers that are only relevant to them; migrate user accounts from old platforms to new platforms.&lt;/p&gt;
&lt;p&gt;As a small business with limited resources there&amp;#39;s only one practical way to do this analysis: Excel. In a bad month I might spend 50% of my time &amp;#39;mashing&amp;#39; data like this. I hated having to do it, and eliminating it was a very strong driver in my building JDHQ: because now you have a single account, forever. No more mashing of CSV files exported from half a dozen platforms.&lt;/p&gt;
&lt;p&gt;(Ironically, this leak is partially a result of my very, very strong desire to never send anyone an email that they don&amp;#39;t want. I&amp;#39;ve spent dozens of hours over the last few years meticulously poring over and cross-referencing this data, taking pains to ensure that someone who opted out on &lt;em&gt;this platform&lt;/em&gt; didn&amp;#39;t get opted back in on &lt;em&gt;that platform&lt;/em&gt;. Had I not bothered, some of this data might not have been on my laptop. C&amp;#39;est la vie.)&lt;/p&gt;
&lt;h3 id=&quot;so-we-have-a-folder-full-of-csv-files&quot;&gt;So we have a folder full of CSV files&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s where we are in the story: I have a folder full of CSV files from these various platforms that I&amp;#39;ve been using to consolidate and migrate accounts, and to send email directly from my laptop via Amazon SES.&lt;/p&gt;
&lt;p&gt;So how did they end up on GitHub? Sheer stupidity.&lt;/p&gt;
&lt;p&gt;This repository started on 2024-01-10 as an intentionally-public archive of emails sent to the mailing list. It contained 3× text files.&lt;/p&gt;
&lt;p&gt;The problem started on 2024-10-08 when I started to use the same folder to store the output from these CSV files.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-script&quot; id=&quot;user-content-fnref-script&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Forgetting that the linked repository was public, I committed these files and &amp;#39;pushed&amp;#39; them to GitHub. At this point they were available publicly.&lt;/p&gt;
&lt;h3 id=&quot;why-this-gitgithub-thing&quot;&gt;Why this git/GitHub thing?&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s natural to use &lt;code&gt;git&lt;/code&gt; -- which is software independent of GitHub, the website -- to manage a dataset like this. It gives you version control, which is really useful. If you mess up, you can just &amp;#39;roll back&amp;#39; to a previous state.&lt;/p&gt;
&lt;p&gt;Using &lt;code&gt;git&lt;/code&gt; locally isn&amp;#39;t the problem. Not realising that the linked GitHub repository is public and pushing to it was the fatal mistake. I&amp;#39;ll address this below.&lt;/p&gt;
&lt;p&gt;From 2024-10-08, this folder, which lives at &lt;code&gt;~/dev/amazon-ses&lt;/code&gt; on my laptop, continued to be used as a place where I stored lists of email addresses so that I could send email via Amazon SES. Every time I did that, I committed the changes and pushed them to GitHub. And so by yesterday, the repository held 3,638 unique email addresses.&lt;/p&gt;
&lt;h3 id=&quot;my-own-password-hygiene&quot;&gt;My own password hygiene&lt;/h3&gt;
&lt;p&gt;So that I don&amp;#39;t need to make the point below with regards to each specific service, I&amp;#39;ll make it here.&lt;/p&gt;
&lt;p&gt;I have exclusively used 1Password for password management since 2009. All of my passwords are unique and they exceed all modern standards for entropy. Where 2FA is an option I always enable it.&lt;/p&gt;
&lt;p&gt;It was, at least, nice to know from the start that this leak wasn&amp;#39;t the result of bad password management.&lt;/p&gt;
&lt;h3 id=&quot;my-secret-key-hygiene&quot;&gt;My &amp;#39;secret key&amp;#39; hygiene&lt;/h3&gt;
&lt;p&gt;Separate from passwords, developers of sites like mine have &amp;#39;secret keys&amp;#39; that are used by servers and services to talk to each other. From JDHQ, for example, you can opt-in to product notification emails. This is possible because the service that serves JDHQ, Netlify, has the secret key for Listmonk and can talk to it directly via the software I&amp;#39;ve written. If you have the secret key for a service, you can read all of the data contained therein.&lt;/p&gt;
&lt;p&gt;I was already planning an article detailing the steps I take to secure these keys, so I&amp;#39;ll just note here that they&amp;#39;re also all stored in 1Password, and that I had already taken what I believe to be extraordinary lengths to secure them against attack. More to follow.&lt;/p&gt;
&lt;h3 id=&quot;listmonk-and-pikapods&quot;&gt;Listmonk and PikaPods&lt;/h3&gt;
&lt;p&gt;I &amp;#39;self-host&amp;#39; my mailing list using Listmonk hosted on a PikaPod.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-self-host&quot; id=&quot;user-content-fnref-self-host&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; At 06:31 I identified that the Postgres instance used by Listmonk was open for login using a public console. This isn&amp;#39;t enabled by default: I had turned it on a few months earlier so that I could connect directly to the database using client software on my Mac.&lt;/p&gt;
&lt;p&gt;Forgetting to disable that access was definitely a mistake -- see action 4, below -- but the risk seemed low. The username and password are set by PikaPods and both were secure: the username not being &lt;code&gt;admin&lt;/code&gt; or similar, and the password being a 24-character string. Checks of the console software, Adminer 5.4.2, showed no vulnerabilities.&lt;/p&gt;
&lt;p&gt;For these reasons, I dismissed the possibility of a leak via this route. Because I was so sure that this wasn&amp;#39;t the cause, I didn&amp;#39;t email PikaPods until 15:36. Finally doing so, I asked them if there were any logs for this console endpoint that might be useful.&lt;/p&gt;
&lt;p&gt;Their reply just 45 minutes later was stunningly helpful, clearly written by a caring human. I could not have recommended them more &lt;em&gt;before&lt;/em&gt; this happened, and yet here we are, my endorsement stronger than ever. A superb service, utterly without fault.&lt;/p&gt;
&lt;p&gt;At this point (16:13) I hadn&amp;#39;t positively eliminated this as the cause, but it seemed vanishingly unlikely.&lt;/p&gt;
&lt;h3 id=&quot;buttondown&quot;&gt;Buttondown&lt;/h3&gt;
&lt;p&gt;Early data supported a theory that Buttondown&amp;#39;s service had been compromised. As a reminder, they hosted my mailing list from 2019–2024. So it&amp;#39;s not unusual that there was a 1:1 match between leaked email addresses. I mailed their support at 08:57 emphasising:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;This is NOT an accusation -- I&amp;#39;m trying to figure this out myself. It&amp;#39;s purely FYI, and I genuinely hope for you that I&amp;#39;m wrong.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;– thinking that, if a leak had occurred, their support might appreciate the data.&lt;/p&gt;
&lt;p&gt;Through the day I continued to receive data points, none of which disproved this idea. This analysis was basic science at work: build a hypothesis, collect data, see if data supports hypothesis.&lt;/p&gt;
&lt;p&gt;Of course good science is about a &lt;em&gt;falsifiable&lt;/em&gt; hypothesis, and at 15:31 I was made aware of 3× addresses that had received the phishing email that were &lt;em&gt;not&lt;/em&gt; in my Buttondown exports. It was a relief to rule them out as a cause and I notified them immediately.&lt;/p&gt;
&lt;p&gt;Again, I can&amp;#39;t sing the praises of a company enough. Anita from Buttondown support felt like a friend yesterday, keeping in touch even after I informed them of this finding. If you need an email newsletter, use Buttondown. They&amp;#39;re truly good people.&lt;/p&gt;
&lt;h3 id=&quot;how-i-came-to-the-answer&quot;&gt;How I came to the answer&lt;/h3&gt;
&lt;p&gt;Around 16:30 we went for our usual end-of-the-day walk. Still not knowing the cause, I replayed all of this to Lucy. Thoughtful questions followed and, via this conversation, the thought occurred to me. Back to science, this is Occam&amp;#39;s Razor in a nutshell: given all possibilities, the simplest should be considered the most likely.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-occam&quot; id=&quot;user-content-fnref-occam&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;The simplest possibility being that I, as a holder of all of this data on my laptop, committed it to a public repository. Getting home, this was confirmed at 18:00.&lt;/p&gt;
&lt;h3 id=&quot;a-note-on-the-data-sources-involved&quot;&gt;A note on the data sources involved&lt;/h3&gt;
&lt;p&gt;You might be on this list despite having never signed up for my mailing list. For example, hundreds of email addresses from JDHQ members are impacted. Those addresses aren&amp;#39;t on the public list, because I never sign you up without your explicit opt-in.&lt;/p&gt;
&lt;p&gt;These addresses are in the data because I used the leaked scripts and Amazon SES to send transactional emails as well as marketing emails to the public list. Similarly, addresses from previous platforms may be present.&lt;/p&gt;
&lt;h2 id=&quot;lessons-learned&quot;&gt;Lessons learned&lt;/h2&gt;
&lt;p&gt;Looking out of the window earlier this week I saw a fire engine, sirens blaring, scream up behind a learner driver. &lt;em&gt;Should be part of your driving test&lt;/em&gt;, I thought. Because you can&amp;#39;t truly be prepared for the panic induced by sirens a metre behind you until it happens.&lt;/p&gt;
&lt;p&gt;In a way, I&amp;#39;m glad this happened. Without trying to minimise the event, it&amp;#39;s fair to say that on the spectrum of security and data leaks, this is about as benign as it gets. Better that this happens now when I can learn from it, than a much worse event happens later.&lt;/p&gt;
&lt;p&gt;Because if this hadn&amp;#39;t happened, I would have spent the day developing JDHQ, where you&amp;#39;ll soon have the ability to store your own notes, and create your own IDs.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-jdhq-data&quot; id=&quot;user-content-fnref-jdhq-data&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt; It is impossible to convey the depth of responsibility I feel for this data. I lie awake at night thinking about how to keep it secure. (An enjoyable problem to solve, to be clear.)&lt;/p&gt;
&lt;p&gt;Like I said above, I&amp;#39;ve already been planning a post addressing this data and the measures I&amp;#39;ll take to protect it. So here let&amp;#39;s just talk about what I learned yesterday.&lt;/p&gt;
&lt;h3 id=&quot;if-you-dont-have-it-you-cant-lose-it&quot;&gt;If you don&amp;#39;t have it you can&amp;#39;t lose it&lt;/h3&gt;
&lt;p&gt;I can&amp;#39;t stress enough that I do not want your personal data. Having it means having responsibility for it: and then look what happens.&lt;/p&gt;
&lt;p&gt;You may notice that I don&amp;#39;t ask for your name when you sign up for JDHQ. Requiring a name is an option at Clerk, where your user account is held. I turned it off. You may notice that I don&amp;#39;t ask for your address when you make a purchase. This is an option at Stripe, who processes your payment. I turned it off.&lt;/p&gt;
&lt;p&gt;Still, in diagnosing this issue yesterday I realised how much data I have on this laptop. Again -- see above -- this is largely unavoidable. I run a business, I need to manage the business&amp;#39; data. For example, every quarter I need to download my transactions for tax reporting.&lt;/p&gt;
&lt;p&gt;But I can definitely change my behaviour.&lt;/p&gt;
&lt;h3 id=&quot;action-1-make-customer-data-more-difficult-to-access&quot;&gt;Action 1: make customer data more difficult to access&lt;/h3&gt;
&lt;p&gt;You might think I&amp;#39;d be safer just deleting it, but this data proved very useful in troubleshooting yesterday&amp;#39;s issue. Without it I&amp;#39;d have been blind. So I&amp;#39;d rather not &lt;em&gt;delete&lt;/em&gt; it; I don&amp;#39;t think there&amp;#39;s a problem that this would solve.&lt;/p&gt;
&lt;p&gt;The problem to solve is that having this stuff sitting in folders on my laptop is too loose.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-laptop&quot; id=&quot;user-content-fnref-laptop&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt; It&amp;#39;s too easy for something to leak; too easy for me to think of these files in the same way that I think of all my other files. Instead, I need to be acutely aware that when I&amp;#39;m interacting with them that I&amp;#39;m in &lt;em&gt;some special place&lt;/em&gt;. I need to be on high alert.&lt;/p&gt;
&lt;p&gt;I have created an APFS encrypted disk image and moved all existing customer data to it. It is mounted on-demand. The password is in 1Password and requires a manual copy/paste: I won&amp;#39;t store it in my Keychain, so the disk can&amp;#39;t ever mount without my explicit action.&lt;/p&gt;
&lt;p&gt;Mounting it will forever recall this incident, and I&amp;#39;ll be vigilant. I&amp;#39;ll do what I need to do and unmount it. There&amp;#39;s no chance that I&amp;#39;ll make the mistake of pushing something in there up to the cloud.&lt;/p&gt;
&lt;h3 id=&quot;action-2-only-download-what-i-need&quot;&gt;Action 2: only download what I need&lt;/h3&gt;
&lt;p&gt;When I download data from these platforms -- say that quarterly tax analysis from Stripe -- my tendency has been to be lazy, and grab everything. As in, choose all the columns, download everything offered.&lt;/p&gt;
&lt;p&gt;Because if you&amp;#39;re not exactly sure what you need, it&amp;#39;s more convenient to have everything to hand than to have to go back and get what you missed.&lt;/p&gt;
&lt;p&gt;From today, I&amp;#39;ll only download the specific data that I need to do the job. For Stripe&amp;#39;s tax analysis, that might be as minimal as the transaction ID, amounts, and the country of purchase. Your name and email address isn&amp;#39;t a factor in my reporting a quarterly sales tax total to the Australian Tax Office -- so why even request that in the export?&lt;/p&gt;
&lt;h3 id=&quot;action-3-proactively-delete-accounts&quot;&gt;Action 3: Proactively delete accounts&lt;/h3&gt;
&lt;p&gt;I still had a Buttondown account that I wasn&amp;#39;t using. It still contained thousands of email addresses.&lt;/p&gt;
&lt;p&gt;It, and its associated data, has been deleted. If I think of any other similar accounts, I&amp;#39;ll delete them.&lt;/p&gt;
&lt;h3 id=&quot;action-4-reminders-to-disable-open-services&quot;&gt;Action 4: reminders to disable open services&lt;/h3&gt;
&lt;p&gt;While it proved not to be relevant, I was disappointed to find that I&amp;#39;d left the Listmonk Postgres database console access enabled. This was an unnecessary risk and happened because I simply forgot to disable it when I was finished.&lt;/p&gt;
&lt;p&gt;In the future, if I open up anything like this -- which, again, is going to be necessary to run a business -- I&amp;#39;ll set a timed reminder for myself to close it when finished.&lt;/p&gt;
&lt;h3 id=&quot;action-5-github-is-not-a-backup-service&quot;&gt;Action 5: GitHub is not a backup service&lt;/h3&gt;
&lt;p&gt;I have a tendency to think of GitHub as a useful backup service. Do a quick &lt;code&gt;git push&lt;/code&gt; and now the precious data that I just spent all day massaging into shape is copied to the cloud.&lt;/p&gt;
&lt;p&gt;This isn&amp;#39;t what GitHub is for! Never again, for any data.&lt;/p&gt;
&lt;h3 id=&quot;action-6-compliancereporting&quot;&gt;Action 6: Compliance/reporting&lt;/h3&gt;
&lt;p&gt;Thanks to my Discord for flagging the possibility that I might need to register this breach with various national authorities.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve investigated a few, and this event is below the reporting threshold. GDPR says that I need to keep internal breach logs and learn from the event, which I was already doing. If you&amp;#39;re aware of a more strict requirement from your local authority, &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;let me know&lt;/a&gt; and I&amp;#39;ll gladly comply. Obviously I can&amp;#39;t check them all.&lt;/p&gt;
&lt;h2 id=&quot;what-can-you-do&quot;&gt;What can you do?&lt;/h2&gt;
&lt;p&gt;You, as in the reader. What can &lt;em&gt;you&lt;/em&gt; do to make yourself more safe online?&lt;/p&gt;
&lt;p&gt;Lucy and I have been talking for at least a year about producing a (free) video series addressing the basics of online hygiene. We&amp;#39;ve moved that idea to the top of the list and will start working on it immediately.&lt;/p&gt;
&lt;p&gt;I need to get this post published so I won&amp;#39;t go into details here, but the two things you can do to put yourself above 99% of everyone else are:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Use a password manager. Allow it to generate random passwords for you, different for every site. &lt;strong&gt;This isn&amp;#39;t optional in 2026&lt;/strong&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-coincidentally&quot; id=&quot;user-content-fnref-coincidentally&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Use unique email addresses for each service that you sign up for. This is more difficult, and introduces complexity.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We&amp;#39;ll cover both of these in the course.&lt;/p&gt;
&lt;h3 id=&quot;questions&quot;&gt;Questions?&lt;/h3&gt;
&lt;p&gt;If you have any questions please post them &lt;a href=&quot;https://forum.johnnydecimal.com/t/email-address-leak/2886&quot;&gt;at the dedicated forum thread for this incident&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you run a small business and need help: we are here. This stuff is &lt;strong&gt;difficult&lt;/strong&gt;: I messed up and I&amp;#39;m supposed to be an expert. Please ask and we will help you.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;End of incident review.&lt;/strong&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-script&quot;&gt;
&lt;p&gt;More accurately, the leaked data took the form of lists of email addresses in a &lt;code&gt;.sh&lt;/code&gt; script, which called the &lt;code&gt;aws sesv2&lt;/code&gt; command to send an email. For the sake of simplicity I&amp;#39;ll continue to refer to &amp;#39;CSV files&amp;#39; in the main story; the data is identical, the only difference being a file extension. &lt;a href=&quot;#user-content-fnref-script&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-self-host&quot;&gt;
&lt;p&gt;Acknowledging that this is a stretch of the definition of &amp;#39;self-hosting&amp;#39;; the point being that PikaPods provides me the raw instance, and that configuration and management of this instance is my responsibility. They sit between PaaS and SaaS. &lt;a href=&quot;#user-content-fnref-self-host&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-occam&quot;&gt;
&lt;p&gt;I know that&amp;#39;s a common mis-reading of Occam&amp;#39;s Razor, which actually states that the theorem that introduces the fewest new elements should be considered the most likely. Close enough. &lt;a href=&quot;#user-content-fnref-occam&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-jdhq-data&quot;&gt;
&lt;p&gt;One person has already written me asking why I think storing user data in JDHQ is a good idea. This isn&amp;#39;t the post to prosecute that question but briefly: I&amp;#39;m building features that &lt;em&gt;I want&lt;/em&gt;. I think you&amp;#39;ll find them useful too. If you never want to use them … just don&amp;#39;t. &lt;a href=&quot;#user-content-fnref-jdhq-data&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-laptop&quot;&gt;
&lt;p&gt;Noting that I don&amp;#39;t consider the laptop itself to be an attack vector. It requires my password immediately after being locked, has FileVault full-disk encryption, and has no open Internet ports. &lt;a href=&quot;#user-content-fnref-laptop&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-coincidentally&quot;&gt;
&lt;p&gt;Coincidentally, a friend of Lucy&amp;#39;s was hacked last week. They got her Microsoft OneDrive account and everything in it. She&amp;#39;s in the process of getting new passports and drivers licences. A true nightmare. Why? Shared passwords. &lt;strong&gt;Your password must be unique&lt;/strong&gt;. &lt;a href=&quot;#user-content-fnref-coincidentally&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0186 I uploaded your email address to GitHub</title><link>https://johnnydecimal.com/22.00.0186/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0186/</guid><description>I really did.</description><pubDate>Tue, 03 Mar 2026 18:18:13 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-uploaded-your-email-address-to-github&quot;&gt;I uploaded your email address to GitHub&lt;/h1&gt;
&lt;p&gt;Further to my discovery of &lt;a href=&quot;https://johnnydecimal.com/22.00.0185/&quot;&gt;the data leak&lt;/a&gt; earlier today, I spent most of the day trying to figure out what had happened. Finally, on a walk with Lucy after we knocked off, the lightbulb went off.&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t, did I? Surely not.&lt;/p&gt;
&lt;p&gt;I did.&lt;/p&gt;
&lt;p&gt;I uploaded a .csv containing your email address to a public GitHub repository. (For the non-technical of you: that&amp;#39;s just a web page. I published your email address on a web page.)&lt;/p&gt;
&lt;p&gt;Good news: not a &amp;#39;hack&amp;#39; in the traditional sense. Just a dumb mistake.&lt;/p&gt;
&lt;p&gt;Bad news: &lt;em&gt;oof&lt;/em&gt;. Johnny. So bad.&lt;/p&gt;
&lt;p&gt;To you, whose address is now public, I can only offer my humblest and sincerest apology. Unless you know me personally you won&amp;#39;t know what this means to me.&lt;/p&gt;
&lt;h3 id=&quot;full-report-to-follow&quot;&gt;Full report to follow&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ll write this up in detail tomorrow. There&amp;#39;s a &lt;em&gt;lot&lt;/em&gt; to learn.&lt;/p&gt;
&lt;p&gt;I haven&amp;#39;t mailed everyone affected yet because there hasn&amp;#39;t been much to say. I&amp;#39;ll send a link to tomorrow&amp;#39;s post once it&amp;#39;s up.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0185 A security incident</title><link>https://johnnydecimal.com/22.00.0185/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0185/</guid><description>Email addresses have leaked from somewhere.</description><pubDate>Tue, 03 Mar 2026 06:46:07 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-security-incident&quot;&gt;A security incident&lt;/h1&gt;
&lt;p&gt;This morning I received an email from someone whose unique &lt;code&gt;johnnydecimal@example.com&lt;/code&gt; address has received a PayPal phishing email. My personal address received the same email.&lt;/p&gt;
&lt;p&gt;The email is from &lt;code&gt;no.con**star@ca**a.cl&lt;/code&gt;. Its subject is &lt;code&gt;Please confirm your identity&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;I am investigating. If you received this email, please &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;forward it to me&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0184 February&apos;s YouTube roundup</title><link>https://johnnydecimal.com/22.00.0184/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0184/</guid><description>Links to the videos we published this month.</description><pubDate>Sat, 28 Feb 2026 08:39:45 GMT</pubDate><content:encoded>&lt;h1 id=&quot;februarys-youtube-roundup&quot;&gt;February&amp;#39;s YouTube roundup&lt;/h1&gt;
&lt;p&gt;We&amp;#39;re going to try to post much more regularly on YouTube this year. At the end of each month I&amp;#39;ll post a link to each of our videos.&lt;/p&gt;
&lt;p&gt;(It does help us if you &amp;#39;subscribe&amp;#39; to &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;the channel&lt;/a&gt;, in YouTube, even if you never actually go there. I promise I&amp;#39;ll never become a &lt;em&gt;like and subscribe!&lt;/em&gt; bro.)&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a lot of beginner-introductory stuff this month, and the start of a Small Business series that we&amp;#39;ll continue through the year.&lt;/p&gt;
&lt;h3 id=&quot;youtube-is-a-hot-mess-unfortunately&quot;&gt;YouTube is a hot mess, unfortunately&lt;/h3&gt;
&lt;p&gt;On testing this page, I notice that YouTube -- the largest video player on the Internet owned by one of the richest companies -- doesn&amp;#39;t actually work. As in, if you&amp;#39;re unlucky 👋🏼 you&amp;#39;ll be asked to &amp;#39;sign in to prove you&amp;#39;re not a bot&amp;#39; despite &lt;em&gt;being signed in&lt;/em&gt;, and there being no button to enable you to sign in.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-dark-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-dark-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Picard facepalm meme.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; width=&quot;1200&quot; height=&quot;900&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;I&amp;#39;ve put a link below each of the videos, and longer-term we&amp;#39;ll get these loaded up to JDHQ where you can watch ad-free without any of this nonsense.&lt;/p&gt;
&lt;p&gt;My apologies. Not my platform.&lt;/p&gt;
&lt;h3 id=&quot;what-filesystem-problems-am-i-trying-to-fix-2026-02-03&quot;&gt;What filesystem problems am I trying to fix? (2026-02-03)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/-GbmMJegYvM&quot;&gt;&lt;a href=&quot;https://youtu.be/-GbmMJegYvM&quot;&gt;https://youtu.be/-GbmMJegYvM&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;not-a-nerd-dont-use-tags-to-organise-your-files-2026-02-04&quot;&gt;Not a nerd? Don&amp;#39;t use tags to organise your files (2026-02-04)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/eO2CpYDzEGo&quot;&gt;&lt;a href=&quot;https://youtu.be/eO2CpYDzEGo&quot;&gt;https://youtu.be/eO2CpYDzEGo&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;a-simple-file-organisation-method-that-works-2026-02-05&quot;&gt;A simple file organisation method that works (2026-02-05)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/4cq1JfjV6Ts&quot;&gt;&lt;a href=&quot;https://youtu.be/4cq1JfjV6Ts&quot;&gt;https://youtu.be/4cq1JfjV6Ts&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;to-organise-your-files-first-you-need-a-little-structure-2026-02-06&quot;&gt;To organise your files, first you need a little structure (2026-02-06)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/HWyqibAL-TE&quot;&gt;&lt;a href=&quot;https://youtu.be/HWyqibAL-TE&quot;&gt;https://youtu.be/HWyqibAL-TE&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;simple-numbers-to-organise-and-track-your-files-and-more-2026-02-07&quot;&gt;Simple numbers to organise and track your files and more (2026-02-07)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/telnhQFnfJ4&quot;&gt;&lt;a href=&quot;https://youtu.be/telnhQFnfJ4&quot;&gt;https://youtu.be/telnhQFnfJ4&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;my-to-do-app-tells-me-when-my-jdex-tells-me-how-2026-02-18&quot;&gt;My to-do app tells me when, my JDex tells me how (2026-02-18)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/XR5LoY-aEMM&quot;&gt;&lt;a href=&quot;https://youtu.be/XR5LoY-aEMM&quot;&gt;https://youtu.be/XR5LoY-aEMM&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;a-central-record-to-organise-your-life-or-business-2026-02-21&quot;&gt;A central record to organise your life or business (2026-02-21)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/UtKGkgd3SPU&quot;&gt;&lt;a href=&quot;https://youtu.be/UtKGkgd3SPU&quot;&gt;https://youtu.be/UtKGkgd3SPU&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;how-i-use-johnnydecimal-to-do-tasks-and-projects-efficiently-2026-02-25&quot;&gt;How I use Johnny.Decimal to do tasks and projects efficiently (2026-02-25)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/bgPIEib4TWg&quot;&gt;&lt;a href=&quot;https://youtu.be/bgPIEib4TWg&quot;&gt;https://youtu.be/bgPIEib4TWg&lt;/a&gt;&lt;/a&gt;
&lt;h3 id=&quot;good-behaviours-for-saving-files-2026-02-28&quot;&gt;Good behaviours for saving files (2026-02-28)&lt;/h3&gt;
  
&lt;a href=&quot;https://youtu.be/o1CQhTcNXN4&quot;&gt;&lt;a href=&quot;https://youtu.be/o1CQhTcNXN4&quot;&gt;https://youtu.be/o1CQhTcNXN4&lt;/a&gt;&lt;/a&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0183 The &apos;work log&apos;</title><link>https://johnnydecimal.com/22.00.0183/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0183/</guid><description>An attempt -- again -- to be more deliberate in how I work.</description><pubDate>Thu, 26 Feb 2026 07:08:23 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-work-log&quot;&gt;The &amp;#39;work log&amp;#39;&lt;/h1&gt;
&lt;p&gt;I continue to &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0074-focus-and-productivity/&quot;&gt;try to be more deliberate&lt;/a&gt; in how I work.&lt;/p&gt;
&lt;p&gt;I continue to fail.&lt;/p&gt;
&lt;h3 id=&quot;why-bother&quot;&gt;Why bother?&lt;/h3&gt;
&lt;p&gt;This desire has a few roots. I&amp;#39;d like to be as close to the canonical ideal of Johnny.Decimal -- &lt;em&gt;the persona, not the man&lt;/em&gt; -- as possible. Every time I do something in my business and I&amp;#39;m not doing it JDex-first, a &lt;del&gt;fairy loses its wings&lt;/del&gt; decimal loses some precision.&lt;/p&gt;
&lt;p&gt;This isn&amp;#39;t some idealistic dream. Things are worse when I forget to update my JDex. I run a business with a whole bunch of complexity and I do it from a 13&amp;quot; laptop from a hotel room desk. So when I forget to update some detail about how my mailing list is configured, say, then that bites me later. It&amp;#39;s lost time, more work, and a frustration because &lt;em&gt;I have the tools&lt;/em&gt;. I have no excuse. I &lt;em&gt;invented&lt;/em&gt; the tools!&lt;/p&gt;
&lt;p&gt;I am also prone to jumping between tasks during the day. This isn&amp;#39;t good for an ADHD-ish brain, it isn&amp;#39;t good for productivity, and it&amp;#39;s exhausting.&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s the goal. Picture my work habits as a colony of ants, each holding some morsel of goodness, dashing around seemingly at random, every tempting scent an invitation to turn off the current path.&lt;/p&gt;
&lt;p&gt;I&amp;#39;d like to work more like an old dog heading towards its bowl. Plod towards the bowl. Eat what&amp;#39;s in the bowl. Maybe lie down a moment. Good dog.&lt;/p&gt;
&lt;h2 id=&quot;how&quot;&gt;How?&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve already got a task manager, and I already know how to use it -- see my tiny-window-at-the-top-left technique from &lt;a href=&quot;https://jdhq.johnnydecimal.com/jdu/taskpm/200&quot;&gt;this video at around 03:00&lt;/a&gt; (requires access to &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;JDU/Task &amp;amp; Project Management&lt;/a&gt;).&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0183A-Things_top_left--0-light-cx-720x450@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0183A-Things_top_left--0-dark-cx-720x450@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0183A-Things_top_left--0-light-cx-720x450@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0183A-Things_top_left--0-dark-cx-720x450@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Johnny&apos;s mostly-empty desktop. At the top left, as small as it&apos;s possible to make the window, is a very simple view of Things, my task manager. It shows a single task in &apos;focus&apos; mode.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0183A-Things_top_left--0-light-cx-720x450@2x.png&quot; width=&quot;720&quot; height=&quot;450&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0183A. Things, as small as a window can be made.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;And I&amp;#39;ve already got a JDex with an entry for everything I do. I&amp;#39;ve been playing with this idea of a &amp;#39;work log&amp;#39; for a while, so I&amp;#39;m going to combine these two techniques along with timers and some checkpoints through the day.&lt;/p&gt;
&lt;p&gt;None of this is rocket science. I just need to do it and form some good habits.&lt;/p&gt;
&lt;h3 id=&quot;work-log&quot;&gt;Work log&lt;/h3&gt;
&lt;p&gt;I still haven&amp;#39;t found a good tool for this, so it&amp;#39;s something I&amp;#39;m going to build into &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;JDHQ&lt;/a&gt;. But for now here&amp;#39;s what I&amp;#39;m doing in Obsidian, which runs my JDex for the business.&lt;/p&gt;
&lt;p&gt;The goal is to &amp;#39;check-in&amp;#39; and &amp;#39;check-out&amp;#39; of IDs as I work on them. This keeps me on track; allows me to log a quick line or two about what I did; and provides visibility of everything I touched at the end of the day/week/month.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll outline it here but don&amp;#39;t worry about the details. I&amp;#39;m still tweaking this and will do another post later.&lt;/p&gt;
&lt;p&gt;I have a note up in my &lt;a href=&quot;https://johnnydecimal.com/12.03/&quot;&gt;system standard zero&lt;/a&gt;, &lt;code&gt;00.15 Work logs, by the day&lt;/code&gt;. It serves purely as a target for backlinks, because in each entry that I touch through the day, I have a header &lt;strong&gt;Work logs&lt;/strong&gt; and under there I create entries that look like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;- [[00.15 Work logs, by the day#2026-02-26|2026-02-26 09:04]]
  - Checked in.
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;There&amp;#39;s a bit of Markdown magic going on there.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-raycast&quot; id=&quot;user-content-fnref-raycast&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Again, details for a future post. How this looks in note &lt;code&gt;00.15&lt;/code&gt; is what matters.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0183B-Obsidian_backlinks--0-light-cx-1836x1514@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0183B-Obsidian_backlinks--0-dark-cx-1836x1514@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0183B-Obsidian_backlinks--0-light-cx-1836x1514@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0183B-Obsidian_backlinks--0-dark-cx-1836x1514@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of this Obsidian note showing the backlinks.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0183B-Obsidian_backlinks--0-light-cx-1836x1514@2x.png&quot; width=&quot;918&quot; height=&quot;757&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0183B. Backlinks at 00.15.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I&amp;#39;ve filtered the backlinks on today&amp;#39;s date, and there&amp;#39;s what I&amp;#39;m doing now, and what I&amp;#39;ve done so far. Nice.&lt;/p&gt;
&lt;h2 id=&quot;statement-of-intent&quot;&gt;Statement of intent&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m telling you all that I&amp;#39;m doing this so that I keep doing it. I&amp;#39;ll report my findings each week, and summarise what I&amp;#39;ve been working on.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-raycast&quot;&gt;
&lt;p&gt;Also I don&amp;#39;t type this out every time. A Raycast snippet bound to &lt;code&gt;;;worklog&lt;/code&gt; expands it for me: &lt;code&gt;[[00.15 Work logs, by the day#{date format=&amp;quot;yyyy-MM-dd&amp;quot;}|{date format=&amp;quot;yyyy-MM-dd hh:mm&amp;quot;}]]&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-raycast&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0182 JDex deep-dive: data and storage options</title><link>https://johnnydecimal.com/22.00.0182/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0182/</guid><description>You can store data in your JDex, or externally. And you can store that JDex as files in your filesystem, or externally. This post is a deep-dive into these scenarios.</description><pubDate>Tue, 03 Feb 2026 10:59:56 GMT</pubDate><content:encoded>&lt;h1 id=&quot;jdex-deep-dive-data-and-storage-options&quot;&gt;JDex deep-dive: data and storage options&lt;/h1&gt;
&lt;p&gt;This post is a deep-dive into two aspects of your JDex: whether or not you use it to store data, and the different ways you can store the JDex itself. This article is long, and isn&amp;#39;t a tutorial; this is reference material that I can now link to when common questions arise.&lt;/p&gt;
&lt;h2 id=&quot;our-analogy-the-library&quot;&gt;Our analogy: the library&lt;/h2&gt;
&lt;p&gt;This analogy courtesy of &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267671288252600412/1464526017090556095&quot;&gt;Moriarty on Discord&lt;/a&gt;, who said:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;…the revelation was realising that my filesystem, (long-form) notes folder, physical filing cabinet etc were the bookshelves in a library, and my JDex was the index card drawer. One (the card index) describes the shelves and what&amp;#39;s on them, the other (the shelves) have the content.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That&amp;#39;s brilliant. Let&amp;#39;s make it really explicit. Put yourself in your local city library, some time in the 1960s. 🕺🏼&lt;/p&gt;
&lt;h3 id=&quot;index-cards&quot;&gt;Index cards&lt;/h3&gt;
&lt;p&gt;Before computers, libraries kept records of books on index cards.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of a metal filing cabinet, one drawer open, full of cardboard index cards.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182A-Filing_cabinet--0-cx-640x426.jpg&quot; width=&quot;640&quot; height=&quot;426&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182A. The good old days.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Crucially, you can think of &lt;strong&gt;the index card&lt;/strong&gt; as a representation of &lt;strong&gt;the book itself&lt;/strong&gt;. If a card doesn&amp;#39;t exist, the book might as well not exist. To find a book in a library you don&amp;#39;t start &lt;em&gt;at a bookshelf&lt;/em&gt;. You start &lt;em&gt;with the index of books&lt;/em&gt;. Here&amp;#39;s the process.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Go to the index.&lt;/li&gt;
&lt;li&gt;Using the structure of the index (Dewey, in the case of your library) find the book in question.&lt;/li&gt;
&lt;li&gt;The index card will tell you where the book is physically located.&lt;/li&gt;
&lt;li&gt;Assuming the book is in the building -- it might be out on loan -- walk to the location indicated on the card and get the book.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-library&quot; id=&quot;user-content-fnref-library&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;your-jdex&quot;&gt;Your JDex&lt;/h3&gt;
&lt;p&gt;Your Johnny.Decimal index (JDex) was designed to work &lt;em&gt;exactly&lt;/em&gt; the same way. Your Johnny.Decimal IDs are the index cards. Each ID belongs to a &lt;strong&gt;category&lt;/strong&gt;, which is analogous to the drawer. And -- not shown here because the diagrams are busy enough already -- we understand that each &lt;strong&gt;category&lt;/strong&gt; belongs to an &lt;strong&gt;area&lt;/strong&gt; just like each drawer is housed in a cabinet.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line diagram. A purple box labelled &apos;Index card drawer = category e.g. 12&apos; contains blue cards, one of which is labelled &apos;Index card = ID, e.g. 12.17&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182B-Category_ID_diagram--0-cx-540x468@2x.png&quot; width=&quot;270&quot; height=&quot;234&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182B. Categories hold IDs.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;This is why I say the JDex is the &lt;em&gt;most important thing&lt;/em&gt; in your system. A library without a catalogue is no longer a library: it&amp;#39;s just a room full of books. Your life without a JDex is no longer a Johnny.Decimal system: it&amp;#39;s just a bunch of files (even if they are neatly organised).&lt;/p&gt;
&lt;h3 id=&quot;metadata&quot;&gt;Metadata&lt;/h3&gt;
&lt;p&gt;Metadata is &amp;#39;data that defines and describes the characteristics of other data&amp;#39; (&lt;a href=&quot;https://en.wikipedia.org/wiki/Metadata&quot;&gt;Wikipedia&lt;/a&gt;). So if data is a book&amp;#39;s contents, metadata is its publication date, ISBN number, current location, and so on.&lt;/p&gt;
&lt;p&gt;We use this all the time without being conscious of it: the last modified time of a file is metadata. The fact that some piece of knowledge is in your email is metadata. (The knowledge itself being data.)&lt;/p&gt;
&lt;p&gt;The thing about metadata is that it&amp;#39;s typically tiny in comparison to the thing that it represents. As a result, we don&amp;#39;t have to find some new place to store it. We already have one: &lt;strong&gt;the index entry&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;For the library, this means writing this stuff directly on the index card. For your JDex, it means that your IDs&amp;#39; metadata is &lt;strong&gt;always&lt;/strong&gt; stored directly with the JDex entry. Metadata is a &lt;em&gt;fundamental component&lt;/em&gt; of the entry: it&amp;#39;s not some separate thing to manage.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s how that might look with a handful of entries from the Life Admin System. Remember: purple box = category. Blue note = ID.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The previous diagram, but now we have 3x of them. Each purple box is labelled with the number of a Johnny.Decimal category, and each blue note that it contains is labelled with an ID from that category.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182C-3x_categories_with_IDs--0-cx-684x1728@2x.png&quot; width=&quot;342&quot; height=&quot;864&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182C. IDs from the Life Admin System with metadata.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;metadata-should-be-standardised&quot;&gt;Metadata should be standardised&lt;/h3&gt;
&lt;p&gt;You should decide on a common set of metadata &amp;#39;keys&amp;#39; and use them consistently. This allows you to query it later: for example, finding all entries where &lt;code&gt;Last updated:&lt;/code&gt; is after &amp;#39;2026-01-29&amp;#39;, or all entries where &lt;code&gt;Location:&lt;/code&gt; is &amp;#39;fireproof lock box&amp;#39;.&lt;/p&gt;
&lt;p&gt;This is only possible if you always call it &lt;code&gt;Location&lt;/code&gt;. If you sometimes call it &lt;code&gt;Where is it?&lt;/code&gt;, that&amp;#39;s now a different thing.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Nerd note: we call these key/value pairs. &lt;strong&gt;Keys&lt;/strong&gt; are standard. Their &lt;strong&gt;values&lt;/strong&gt; change. As keys are special, I&amp;#39;ll show them &lt;code&gt;like this&lt;/code&gt; in this post.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is an important distinction as we consider what&amp;#39;s metadata vs. data, below.&lt;/p&gt;
&lt;p&gt;In the near future, the Johnny.Decimal system will recommend a standard set of metadata keys. If I use it in this post, you may assume it will be in that standard.&lt;/p&gt;
&lt;h3 id=&quot;above-the-line&quot;&gt;&amp;#39;Above the line&amp;#39;&lt;/h3&gt;
&lt;p&gt;Note the horizontal line in these diagrams. That&amp;#39;s deliberate: in my JDex, I use a line to separate &lt;strong&gt;metadata&lt;/strong&gt; from &lt;strong&gt;data&lt;/strong&gt;. Metadata is always &amp;#39;above the line&amp;#39;. We&amp;#39;ll see data &amp;#39;below the line&amp;#39; shortly.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Above the line: the book&amp;#39;s metadata.&lt;/li&gt;
&lt;li&gt;Below the line: the book&amp;#39;s contents.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;storing-data-in-your-jdex&quot;&gt;Storing data in your JDex&lt;/h2&gt;
&lt;p&gt;In contrast to metadata, your library&amp;#39;s index cards weren&amp;#39;t designed to store the data that they represent. They aren&amp;#39;t the book&amp;#39;s contents.&lt;/p&gt;
&lt;p&gt;But nor are computers 5×7&amp;quot; pieces of cardboard stored in a little metal box. So in this new world, you might choose to extend the usefulness of your index entries by using them to &lt;strong&gt;store data&lt;/strong&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The blue ID card from our previous example now has a bunch of data in the form of notes. The ID is about your passport, and the data is about its renewal and cost.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182D-ID_with_data--0-cx-684x828@2x.png&quot; width=&quot;342&quot; height=&quot;414&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182D. An ID entry with data &amp;#39;below the line&amp;#39;.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Here, we&amp;#39;re still recording the location of your passport as metadata &amp;#39;above the line&amp;#39;. But we&amp;#39;re also storing a bunch of other data &amp;#39;below the line&amp;#39;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Nerd note: we call this &amp;#39;structured&amp;#39; vs. &amp;#39;unstructured&amp;#39; data. Here &lt;strong&gt;metadata&lt;/strong&gt; is structured, with standard &lt;strong&gt;keys&lt;/strong&gt;. Our below-the-line &lt;strong&gt;data&lt;/strong&gt; is unstructured: it&amp;#39;s different for each entry.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is what I do and recommend. It&amp;#39;s simple. Everything&amp;#39;s in one place. It&amp;#39;s very hard to lose information, and very quick to retrieve it.&lt;/p&gt;
&lt;p&gt;To address the alternative scenario, we need to expand this model.&lt;/p&gt;
&lt;h2 id=&quot;storing-data-outside-your-jdex&quot;&gt;Storing data outside your JDex&lt;/h2&gt;
&lt;p&gt;Back to the physical library. There, index cards point at books, and books contain data.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Our block diagram now shows the representation of a book in purple/blue on the left, pointing to the contents of the book (Dickens&apos; _A Tale of Two Cities_) on the right. _It was the best of times, it was the worst of times…_&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182E-Diagram_of_book--0-cx-1476x504@2x.png&quot; style=&quot;background-color: #feede6;&quot; width=&quot;738&quot; height=&quot;252&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182E. A book&amp;#39;s index card points to the book&amp;#39;s contents.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;In exactly the same way, we can move the data out of our JDex note and into its own file.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The same diagram now represents our JDex on the left in purple/blue, and where we previously had notes in the JDex entry, they&apos;ve been moved out to .txt files on the right in orange. This mirrors the contents of the book from the previous diagram.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182F-External_data--0-cx-1476x756@2x.png&quot; style=&quot;background-color: #feede6;&quot; width=&quot;738&quot; height=&quot;378&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182F. A JDex entry points to its data.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Here, &lt;code&gt;11.12 Passports, residency, &amp;amp;…&lt;/code&gt; is an ID folder in our filesystem (orange). We&amp;#39;ve created 2 files there (yellow): one for our partner&amp;#39;s passport, and one for our own. And we&amp;#39;ve moved the data out of the index entry into these text files.&lt;/p&gt;
&lt;p&gt;To be sure we don&amp;#39;t forget about this data, we&amp;#39;ve reminded ourselves about it using a &lt;code&gt;Data&lt;/code&gt; property. (This is optional. But if in doubt, it&amp;#39;s worth doing. It takes no time.)&lt;/p&gt;
&lt;h3 id=&quot;a-note-on-location&quot;&gt;A note on &lt;code&gt;Location&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;Remember that this metadata relates to &lt;strong&gt;our passports&lt;/strong&gt;. As in, the little book you show at immigration: &lt;em&gt;not&lt;/em&gt; the Johnny.Decimal ID that is the &lt;em&gt;concept&lt;/em&gt; of your passport.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s why &lt;code&gt;Data&lt;/code&gt; is split from &lt;code&gt;Location&lt;/code&gt;. We have &lt;em&gt;data about the passports&lt;/em&gt;, which is in some place. And, separately, the &lt;em&gt;(physical) location of the passports&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;But let&amp;#39;s not get distracted. I&amp;#39;ll have more to say about &lt;code&gt;Location&lt;/code&gt; in a future post.&lt;/p&gt;
&lt;h3 id=&quot;recap&quot;&gt;Recap&lt;/h3&gt;
&lt;p&gt;To recap, we&amp;#39;ve introduced two scenarios.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You store data in your JDex entry, below-the-line.&lt;/li&gt;
&lt;li&gt;You store data externally, and (optionally) reference it above-the-line.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It might be interesting to note that here at JDHQ we use both of these methods. Johnny tends to prefer the first. Lucy, perhaps because of her career as a copywriter and editor, leans towards the second. They happily co-exist.&lt;/p&gt;
&lt;h3 id=&quot;quadrant-chart&quot;&gt;Quadrant chart&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s introduce the beginnings of what will become a quadrant chart. This will help us to orient these concepts relative to each other.&lt;/p&gt;
&lt;p&gt;The left/right split represents the scenarios just discussed.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A square, split into two rectangles. On the left, with an axis label of &apos;Data in JDex&apos;, there&apos;s a data point labelled &apos;Data below-the-line&apos;. On the right, axis labelled &apos;Data externally&apos;, a data point &apos;Data in filesystem&apos;.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182G-Quadrant_1--0-cx-930x930@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182G. All quadrant charts are born as two rectangles. True fact.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;this-is-a-continuum&quot;&gt;This is a continuum&lt;/h3&gt;
&lt;p&gt;There&amp;#39;s a hard line down the middle of this diagram, but life isn&amp;#39;t like that. The reality is that this is a continuum, with most cases somewhere in the middle.&lt;/p&gt;
&lt;p&gt;To the far left of this diagram is the situation where you &lt;em&gt;exclusively&lt;/em&gt; store data in your JDex. This is unrealistic: will you &lt;em&gt;never&lt;/em&gt; save a file? Files are data. So when I say that you &amp;#39;store data below-the-line&amp;#39;, I mean &lt;em&gt;some&lt;/em&gt; data: usually textual data, as it&amp;#39;s natural to add that to the existing JDex entry. As soon as you also save a file, or keep &lt;em&gt;any&lt;/em&gt; artefact related to this ID outside the JDex entry, you&amp;#39;ve moved away from that left edge.&lt;/p&gt;
&lt;p&gt;The right edge of this diagram is somewhere you might actually exist. In this situation, you &lt;em&gt;never&lt;/em&gt; store &lt;em&gt;any&lt;/em&gt; data in your JDex. For example, your JDex might be an Excel spreadsheet, with one row for each ID.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-excel&quot; id=&quot;user-content-fnref-excel&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; Excel is a terrible place to try to write any sort of long-form text, so it would make sense for &lt;em&gt;no&lt;/em&gt; data to be stored there.&lt;/p&gt;
&lt;p&gt;This diagram is just useful for us to map out all the ways we can do it. But none of them is more correct than the others. It&amp;#39;s all preference.&lt;/p&gt;
&lt;h2 id=&quot;where-is-your-jdex-stored&quot;&gt;Where is your JDex stored?&lt;/h2&gt;
&lt;p&gt;There&amp;#39;s another fundamental question to be addressed, and it relates to the storage &lt;strong&gt;of your JDex&lt;/strong&gt;. We&amp;#39;ve established that you &lt;em&gt;have&lt;/em&gt; a JDex. Where is it?&lt;/p&gt;
&lt;p&gt;This is another continuum, the opposing sides being:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Store your JDex as individual files in your filesystem.&lt;/li&gt;
&lt;li&gt;Store your JDex as some other artefact, not in your filesystem.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Let&amp;#39;s explore these options.&lt;/p&gt;
&lt;h3 id=&quot;jdex-as-individual-files-in-your-filesystem&quot;&gt;JDex as individual files in your filesystem&lt;/h3&gt;
&lt;p&gt;What we mean here is simply that each JDex entry is an individual file, usually a text file, often formatted with Markdown.&lt;/p&gt;
&lt;p&gt;You &lt;em&gt;could&lt;/em&gt; manage these manually, but it&amp;#39;s far more common to use an application, and the most common of those is &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt;. For those who don&amp;#39;t know it, you point it at a folder and it&amp;#39;ll show you the structure of that folder and all of the Markdown files in it. Select a file from the left, edit it on the right. JDHQ provides downloads for the Life Admin and Small Business Systems that are designed to work with Obsidian.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0182H-Obsidian--0-light-cx-1426x990@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0182H-Obsidian--0-dark-cx-1426x990@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0182H-Obsidian--0-light-cx-1426x990@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0182H-Obsidian--0-dark-cx-1426x990@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Obsidian. The left pane shows a folder structure which mirrors Johnny.Decimal. The right pane show the content of the entry.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182H-Obsidian--0-light-cx-1426x990@2x.png&quot; width=&quot;713&quot; height=&quot;495&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182H. Obsidian.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;People enjoy Obsidian because it sits &lt;em&gt;over&lt;/em&gt; your files: it&amp;#39;s a convenient utility. But if you get sick of Obsidian, or if they decide to charge $500/year for a licence, or if you want to give some other app a try, you can just stop using it. All of your files are still Markdown files in a folder that you control.&lt;/p&gt;
&lt;p&gt;The vertical axis of our chart now represents where your files are stored. Obsidian sits in the top half, where your JDex is &amp;#39;files in your filesystem&amp;#39;. It spans both top-left and top-right quadrants as you still have the choice of where to store data: in your JDex, or externally.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Our quadrant chart now has quadrants. The vertical axis has been labelled with &apos;JDex stored in filesystem&apos; at the top, and &apos;JDex elsewhere&apos; at the bottom.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182J-Quadrant_2--0-cx-930x930@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182J. Quadrant chart with Obsidian represented.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;jdex-stored-elsewhere&quot;&gt;JDex stored elsewhere&lt;/h3&gt;
&lt;p&gt;There are a &lt;em&gt;lot&lt;/em&gt; of options in this bottom half, so let&amp;#39;s explore the simplest.&lt;/p&gt;
&lt;p&gt;The other app that I love and support (with specifically-formatted downloads from JDHQ) is Bear. Superficially, Bear is identical to Obsidian: list on the left, editor on the right.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0182K-Bear--0-cx-light-1426x1084@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0182K-Bear--0-cx-dark-1426x1084@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0182K-Bear--0-cx-light-1426x1084@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0182K-Bear--0-cx-dark-1426x1084@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Bear. The left pane shows a list of JDex entries. The right pane shows the content of the entry.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182K-Bear--0-cx-light-1426x1084@2x.png&quot; width=&quot;713&quot; height=&quot;542&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182K. Bear.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;But there is a crucial difference: Bear manages these JDex entries entirely for you. There&amp;#39;s no concept of &amp;#39;text files on your disk&amp;#39; to manage. There&amp;#39;s no option in Bear to change the location of these files. You can&amp;#39;t, outside of Bear, go and look at them. Another app can&amp;#39;t edit them. You can&amp;#39;t put them in a shared folder and collaborate with your partner.&lt;/p&gt;
&lt;p&gt;(Technically, in fact, they aren&amp;#39;t even a collection of text files. Rather, Bear manages them &lt;a href=&quot;https://bear.app/faq/where-are-bears-notes-located/&quot;&gt;using a database&lt;/a&gt; which they &amp;#39;highly recommend&amp;#39; that you do not touch.)&lt;/p&gt;
&lt;p&gt;This sounds limiting, and in many ways it is. Why would you want this? Well, it&amp;#39;s a &lt;em&gt;lot&lt;/em&gt; simpler. You load your JDex files into Bear once, and then never have to think about where they are. Want them on your iPhone? Just install Bear and they&amp;#39;ll appear. They&amp;#39;re harder to lose because Bear stores them in your iCloud Drive so if you drop your laptop in a lake, no worries.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-not-a-backup&quot; id=&quot;user-content-fnref-not-a-backup&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Many apps work like this: Apple Notes, Craft, Evernote, Google Keep, Notion, and OneNote to name a few.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-export&quot; id=&quot;user-content-fnref-export&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s keep it simple and add Bear to our quadrant chart.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The previous quadrant chart with &apos;Bear&apos; added in the lower half.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182L-Quadrant_3--0-cx-930x930@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182L. Quadrant chart with Bear represented.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;The point of this distinction is that when you&amp;#39;re using a method in the bottom half of this chart -- more of which we&amp;#39;ll see shortly -- the decision of &lt;em&gt;where to store your JDex&lt;/em&gt; is made for you. This is one less thing for you to have to manage.&lt;/p&gt;
&lt;h2 id=&quot;where-are-your-jdex-files&quot;&gt;Where are your JDex files?&lt;/h2&gt;
&lt;p&gt;A question naturally arises: if we&amp;#39;re talking about you storing your JDex as &amp;#39;files in your filesystem&amp;#39;, where are those files? As usual, there are a few options.&lt;/p&gt;
&lt;p&gt;Ignoring your JDex for a moment, here&amp;#39;s a simple representation of your filesystem. As in, the Johnny.Decimal structure, probably in your Documents folder or on a cloud drive, where you save all your stuff.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre&gt;▓ 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;▓ └── 11 Me &amp; other living things/&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.11 Birth certificate &amp; proof of name&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.12 Passports, residency, &amp; citizenship&lt;/pre&gt;&lt;pre&gt;▓     └── …and so on&lt;/pre&gt;&lt;pre&gt;__________________&lt;/pre&gt;&lt;pre&gt;Figure 22.00.0182M.&lt;/pre&gt; &lt;/div&gt; 
&lt;blockquote&gt;
&lt;p&gt;The dark blocks on the left will make sense shortly. These tree diagrams don&amp;#39;t work well on mobile, sorry. I&amp;#39;ve made sure that they are clear and flow properly at larger sizes.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It&amp;#39;s pretty obvious that if you had a PDF that you needed to save -- say your latest passport renewal -- you&amp;#39;d put it in 11.12. Because it&amp;#39;s a file, that you&amp;#39;re saving in your filesystem. No new concepts there.&lt;/p&gt;
&lt;p&gt;So if we&amp;#39;re storing our JDex as files in our filesystem, it must be &lt;em&gt;in here somewhere&lt;/em&gt;. Where else would it be?&lt;/p&gt;
&lt;p&gt;This is one of the IDs that are reserved by the Johnny.Decimal system, and I hope the ID is obvious. It&amp;#39;s the very first thing you should encounter in your system, the top of the tree: &lt;code&gt;00.00&lt;/code&gt;. It lives inside the system-reserved category &lt;code&gt;00&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre&gt;▓ 00-09 System-management area/&lt;/pre&gt;&lt;pre&gt;▓ └── 00 System-management category/&lt;/pre&gt;&lt;pre&gt;▓     └── 00.00 JDex for the system&lt;/pre&gt;&lt;pre&gt;▓ 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;▓ └── …and so on&lt;/pre&gt;&lt;pre&gt;__________________&lt;/pre&gt;&lt;pre&gt;Figure 22.00.0182N.&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;Happy with that? There&amp;#39;s a lot going on, and it&amp;#39;s about to get deep. Get comfortable with that before we move on.&lt;/p&gt;
&lt;h3 id=&quot;what-goes-in-0000&quot;&gt;What goes in 00.00?&lt;/h3&gt;
&lt;p&gt;Above, we noted how Obsidian just watches a folder full of files and lets you edit them. The screenshot (figure 22.00.0182K) shows those folders in the left pane, full of text files. Those folders look like your Johnny.Decimal system. As this is your JDex, &lt;em&gt;they define your system&lt;/em&gt;. So they look something like this.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre&gt;░ 00-09 System-management area/&lt;/pre&gt;&lt;pre&gt;░ └── 00 System-management category/&lt;/pre&gt;&lt;pre&gt;░     └── 00.00 JDex for the system.md&lt;/pre&gt;&lt;pre&gt;░ 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;░ └── 11 Me &amp; other living things/&lt;/pre&gt;&lt;pre&gt;░     ├── 11.11 Birth certificate &amp; proof of name.md&lt;/pre&gt;&lt;pre&gt;░     ├── 11.12 Passports, residency, &amp; citizenship.md&lt;/pre&gt;&lt;pre&gt;░     └── …and so on&lt;/pre&gt;&lt;pre&gt;__________________&lt;/pre&gt;&lt;pre&gt;Figure 22.00.0182P.&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;No, I didn&amp;#39;t duplicate the previous figure by accident. Note the subtle difference from figure 22.00.0182M: now the IDs are Markdown (.md) files, which is what Obsidian will display in the right pane.&lt;/p&gt;
&lt;p&gt;So if we stitch these two diagrams together, this is what your filesystem looks like.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-obsidian-jdex&quot; id=&quot;user-content-fnref-obsidian-jdex&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre&gt;▓ 00-09 System-management area/&lt;/pre&gt;&lt;pre&gt;▓ └── 00 System-management category/&lt;/pre&gt;&lt;pre&gt;▓     └── 00.00 JDex for the system/&lt;/pre&gt;&lt;pre&gt;░         ├── 00-09 System-management area/&lt;/pre&gt;&lt;pre&gt;░         │   └── 00 System-management category/&lt;/pre&gt;&lt;pre&gt;░         │       └── 00.00 JDex for the system.md&lt;/pre&gt;&lt;pre&gt;░         └── 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;░             └── 11 Me &amp; other living things/&lt;/pre&gt;&lt;pre&gt;░                 ├── 11.11 Birth certificate&lt;/pre&gt;&lt;pre&gt;░                 │         &amp; proof of name.md&lt;/pre&gt;&lt;pre&gt;░                 └── 11.12 Passports, residency,&lt;/pre&gt;&lt;pre&gt;░                           &amp; citizenship.md&lt;/pre&gt;&lt;pre&gt;▓ 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;▓ └── 11 Me &amp; other living things/&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.11 Birth certificate &amp; proof of name&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.12 Passports, residency, &amp; citizenship&lt;/pre&gt;&lt;pre&gt;▓     └── …and so on&lt;/pre&gt;&lt;pre&gt;__________________&lt;/pre&gt;&lt;pre&gt;Figure 22.00.0182R.&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;Be &lt;em&gt;really&lt;/em&gt; comfortable with that before we continue. At first glance this looks bonkers. But when you understand that &lt;code&gt;00.00&lt;/code&gt; is a Johnny.Decimal ID that just happens to contain a folder structure that mirrors the overall structure … it&amp;#39;s fine. And you&amp;#39;re never spending any time in there yourself: let Obsidian manage it.&lt;/p&gt;
&lt;h3 id=&quot;this-is-the-partially-nested-pattern&quot;&gt;This is the &amp;#39;partially nested&amp;#39; pattern&lt;/h3&gt;
&lt;p&gt;When you download your JDex files from JDHQ, there are a handful of options for Obsidian. This is the &amp;#39;partially nested&amp;#39; pattern, in that the ID files are nested within an area/category structure. Obsidian shows this structure in the left pane.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s an alternative &amp;#39;flat&amp;#39; structure, in which those Markdown files aren&amp;#39;t nested within an area/category structure. Some people just prefer that. I&amp;#39;ll leave it as an exercise to the reader to imagine how this looks in your filesystem. (You can &lt;a href=&quot;https://jdhq.johnnydecimal.com/support/settings-downloads/life-admin-downloads/&quot;&gt;download these files from JDHQ&lt;/a&gt; as many times as you like: try it out. Note that you&amp;#39;ll need to &lt;a href=&quot;https://jdhq.johnnydecimal.com/support/settings-downloads/life-admin-settings/&quot;&gt;select Obsidian as your JDex app&lt;/a&gt; first. Both links require a JDHQ account.)&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s place a dot on the diagram that represents these patterns. We&amp;#39;re not concerned with whether we&amp;#39;re storing data in our JDex or not, so we&amp;#39;ll stick it in the middle.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The quadrant chart now has a single data point, horizontally centered, vertically in the top half, labelled &apos;Obsidian files saved at 00.00&apos;.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182S-Quadrant_4--0-cx-465x465@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182S. Obsidian on the quadrant chart.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;the-fully-nested-pattern&quot;&gt;The &amp;#39;fully nested&amp;#39; pattern&lt;/h3&gt;
&lt;p&gt;In the scenario just described, your JDex files were &lt;em&gt;separate&lt;/em&gt; from the rest of your files: they&amp;#39;re all saved at &lt;code&gt;00.00&lt;/code&gt; while the rest of your stuff is below.&lt;/p&gt;
&lt;p&gt;What if you didn&amp;#39;t want to do this? What if you wanted to merge these two structures -- JDex and filesystem -- so that there was only one? This is possible, of course, and we call it the &amp;#39;fully nested&amp;#39; pattern.&lt;/p&gt;
&lt;p&gt;In this pattern, folder &lt;code&gt;00.00&lt;/code&gt; goes unused.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-unused&quot; id=&quot;user-content-fnref-unused&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt; Instead, each of the Markdown files that are your JDex entries are scattered through your filesystem. Again, I&amp;#39;ve used the dark and light blocks to represent which components come from the original diagrams.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre&gt;▓ 00-09 System-management area/&lt;/pre&gt;&lt;pre&gt;▓ └── 00 System-management category/&lt;/pre&gt;&lt;pre&gt;▓     └── 00.00 JDex for this system/&lt;/pre&gt;&lt;pre&gt;░         └── 00.00 JDex for this system.md&lt;/pre&gt;&lt;pre&gt;▓ 10-19 Life administration/&lt;/pre&gt;&lt;pre&gt;▓ └── 11 Me &amp; other living things/&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.11 Birth certificate &amp; proof of name/&lt;/pre&gt;&lt;pre&gt;░     │   ├── 11.11 Birth certificate&lt;/pre&gt;&lt;pre&gt;░     │   │         &amp; proof of name.md&lt;/pre&gt;&lt;pre&gt;▓     │   └── Photograph of birth certificate.jpg&lt;/pre&gt;&lt;pre&gt;▓     ├── 11.12 Passports, residency, &amp; citizenship/&lt;/pre&gt;&lt;pre&gt;░     │   ├── 11.12 Passports, residency,&lt;/pre&gt;&lt;pre&gt;░     │   │         &amp; citizenship.md&lt;/pre&gt;&lt;pre&gt;▓     │   └── Passport application.pdf&lt;/pre&gt;&lt;pre&gt;▓     └── …and so on&lt;/pre&gt;&lt;pre&gt;__________________&lt;/pre&gt;&lt;pre&gt;Figure 22.00.0182T.&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;On the surface, this feels like a good idea. Why &lt;em&gt;wouldn&amp;#39;t&lt;/em&gt; you want it all integrated? But me and many others have tried this and the universal consensus is that this doesn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;The point of this article is to explain these methods, not to tell you why one of them is worse than the others. So, just briefly:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The clean separation of JDex from filesystem is a nice mental separation. It reinforces your JDex as being the more important thing. Merging them breaks that.&lt;/li&gt;
&lt;li&gt;Previously, you were pointing Obsidian at a folder full of tiny text files. Now, you&amp;#39;re pointing it at your entire filesystem. There might be terabytes of data in there. This can slow it down significantly.&lt;/li&gt;
&lt;li&gt;You&amp;#39;re no longer able to selectively synchronise folders because &lt;em&gt;the folder is the JDex entry&lt;/em&gt;. This was the killer blow for me.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So you probably shouldn&amp;#39;t do this. For completion, let&amp;#39;s add it to the diagram.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;We&apos;ve added &apos;Obsidian files fully nested&apos; _above_ &apos;Obsidian files saved at 00.00&apos;.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182U-Quadrant_5--0-cx-465x465@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182U. Two Obsidian options.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I&amp;#39;ve placed this item nearer the top of the chart as your JDex files are &lt;em&gt;more&lt;/em&gt; &amp;#39;in your filesystem&amp;#39; using this method than they were with the previous method.&lt;/p&gt;
&lt;h3 id=&quot;core-concepts-finished&quot;&gt;Core concepts finished&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s it for core concepts. In the next section, let&amp;#39;s fill out the diagram with some examples.&lt;/p&gt;
&lt;h2 id=&quot;examples&quot;&gt;Examples&lt;/h2&gt;
&lt;p&gt;There are a handful of scenarios that we already understand. The diagram&amp;#39;s getting busy so I&amp;#39;ll extract some meaning to a table.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;There are a bunch more data points as described in the table below.&quot; class=&quot; auto-dark astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0182V-Quadrant_6--0-cx-465x465@2x.png&quot; width=&quot;465&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0182V. I honestly thought I was going to run out of letters for the captions on this one. Close call.&lt;/figcaption&gt; &lt;/picture&gt; 

































































&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Data stored&lt;/th&gt;&lt;th&gt;JDex stored&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Obsidian 1&lt;/td&gt;&lt;td&gt;in JDex&lt;/td&gt;&lt;td&gt;&amp;#39;fully nested&amp;#39;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Obsidian 2&lt;/td&gt;&lt;td&gt;in JDex&lt;/td&gt;&lt;td&gt;&amp;#39;partially nested&amp;#39;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Obsidian 3&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;&amp;#39;fully nested&amp;#39;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Obsidian 4&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;&amp;#39;partially nested&amp;#39;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Bear 1&lt;/td&gt;&lt;td&gt;in JDex&lt;/td&gt;&lt;td&gt;managed by Bear&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Bear 2&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;managed by Bear&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Excel&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;as an .xlsx in your filesystem&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Google Sheets&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;in your Google Drive&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Notion&lt;/td&gt;&lt;td&gt;within Notion&lt;/td&gt;&lt;td&gt;by Notion in their cloud&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;SQLite database&lt;/td&gt;&lt;td&gt;within the database&lt;/td&gt;&lt;td&gt;as a .db file in your filesystem&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Airtable&lt;/td&gt;&lt;td&gt;externally&lt;/td&gt;&lt;td&gt;by Airtable in their cloud&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;h3 id=&quot;nit-picky-points&quot;&gt;Nit-picky points&lt;/h3&gt;
&lt;p&gt;We&amp;#39;re getting in the weeds here, but I positioned those dots carefully so we might as well explain why.&lt;/p&gt;
&lt;p&gt;The left/right split isn&amp;#39;t so interesting: you either store data in your JDex, or you don&amp;#39;t. Your choice here might be limited by the method you use to store your JDex. As we&amp;#39;ve already said, a spreadsheet is a terrible place to keep long-form notes; spreadsheets tend towards the right edge.&lt;/p&gt;
&lt;p&gt;If you use a database like Notion, it&amp;#39;s up to you. In this diagram I&amp;#39;ve designed a Notion where you &lt;em&gt;do&lt;/em&gt; keep data there. Given Notion&amp;#39;s power, this feels like a realistic scenario. But you could just have well designed a pure JDex-only database and stored all data externally.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Where&lt;/em&gt; the files are, on the vertical axis, is a touch more interesting. Google Sheets is in the lower half while Excel is in the upper because the Excel sheet is a file that you need to manage, and the Google Sheet exclusively lives in your Google Drive.&lt;/p&gt;
&lt;p&gt;That said, you do still need to specify &lt;em&gt;where&lt;/em&gt; in your Google Drive the file exists. You still need to file it somewhere, even if that somewhere happens to be in the cloud. Which is why Google Drive is above Airtable, an online database. With Airtable there is no consideration at all &amp;#39;where&amp;#39; your database is stored. You don&amp;#39;t get a folder structure that you have to &amp;#39;file your database&amp;#39; in. (Other than a rudimentary dashboard that you can rearrange.) Your database is just &lt;em&gt;at Airtable&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Similarly, Notion is at the bottom, because all of your stuff is in the Notion cloud. Conversely you might prefer to build yourself a SQLite database which &lt;em&gt;is&lt;/em&gt; now a file that you need to manage. As we now know, that database should be stored at &lt;code&gt;00.00&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;thatll-do&quot;&gt;That&amp;#39;ll do&lt;/h3&gt;
&lt;p&gt;I wrote this article to set up a framework that I can use in the future; a diagram into which I can slot more scenarios. This isn&amp;#39;t meant to be comprehensive. There are a thousand scenarios that aren&amp;#39;t included here.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-library&quot;&gt;
&lt;p&gt;You might be thinking, &amp;#39;that&amp;#39;s not how I use my library&amp;#39;. But when you go to the library you&amp;#39;re likely &lt;em&gt;browsing&lt;/em&gt; the shelves. You don&amp;#39;t know what you&amp;#39;re looking for. That&amp;#39;s a different behaviour from going to a reference library and recalling a specific book, which is the analogy here. &lt;a href=&quot;#user-content-fnref-library&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-excel&quot;&gt;
&lt;p&gt;A spreadsheet provides a nice way to think about your metadata. If each row is an ID, your columns store metadata. It&amp;#39;s easy to see how you&amp;#39;d have one standard column for &lt;code&gt;Location&lt;/code&gt;, and that adding another column for &lt;code&gt;Where is it?&lt;/code&gt; is obviously silly. Columns define the keys of our key/value pairs. &lt;a href=&quot;#user-content-fnref-excel&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-not-a-backup&quot;&gt;
&lt;p&gt;With the caveat that cloud storage is &lt;em&gt;not a backup&lt;/em&gt;. See my mini-series on &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0101-my-backup-strategy#in-this-series&quot;&gt;data, storage, and backups&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-not-a-backup&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-export&quot;&gt;
&lt;p&gt;If you use these apps, an important consideration becomes &amp;#39;lock-in&amp;#39;. How easy is it to export your data, if you choose? Bear makes this easy. Others might make it harder, or it might not be practical. Craft and Notion, for example, are database apps. You can&amp;#39;t just export a database to a bunch of text files and expect it to make sense. &lt;a href=&quot;#user-content-fnref-export&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-obsidian-jdex&quot;&gt;
&lt;p&gt;Actually, I add &lt;em&gt;another&lt;/em&gt; folder below &lt;code&gt;00.00&lt;/code&gt; that contains both of the folders &lt;code&gt;00-09&lt;/code&gt; and &lt;code&gt;10-19&lt;/code&gt;. This is because Obsidian doesn&amp;#39;t allow you to &amp;#39;rename&amp;#39; a vault: the vault name is just the name of the folder of files that you have opened. In the situation shown, the vault name would be &amp;#39;00.00 JDex for the system&amp;#39;.&lt;/p&gt;
&lt;p&gt;I manage multiple vaults and want a more descriptive name. My business system&amp;#39;s folder is named &amp;#39;D25 JDex&amp;#39;: D25 is the system identifier. This then appears as the vault name. In the screenshot above (figure 22.00.0182H) you can see the vault name is &amp;#39;JDex - Life Admin System&amp;#39;. This is how it&amp;#39;s downloaded from JDHQ. I left this detail out of the diagram as it&amp;#39;s not important to the fundamental concept. &lt;a href=&quot;#user-content-fnref-obsidian-jdex&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-unused&quot;&gt;
&lt;p&gt;Other than to store its &lt;em&gt;own&lt;/em&gt; JDex entry, as shown. &lt;a href=&quot;#user-content-fnref-unused&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0181 &apos;Powered by Johnny.Decimal&apos; badge</title><link>https://johnnydecimal.com/22.00.0181/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0181/</guid><description>Show people how organised you are with an official &apos;Powered by Johnny.Decimal&apos; badge!</description><pubDate>Thu, 22 Jan 2026 08:27:06 GMT</pubDate><content:encoded>&lt;h1 id=&quot;powered-by-johnnydecimal-badge&quot;&gt;&amp;#39;Powered by Johnny.Decimal&amp;#39; badge&lt;/h1&gt;
&lt;p&gt;Thanks to Karsten.Decimal on Discord for suggesting this idea, along with a proof-of-concept.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;ve ever wanted to show people how organised you are, now you can -- with an official &amp;#39;Powered by Johnny.Decimal&amp;#39; badge!&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0181A-Powered_by_JohnnyDecimal-cx-light-640x297.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0181A-Powered_by_JohnnyDecimal-cx-dark-640x297.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0181A-Powered_by_JohnnyDecimal-cx-light-640x297.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0181A-Powered_by_JohnnyDecimal-cx-dark-640x297.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A simple graphic. It has a border, and inside our logo and the words &apos;Powered by Johnny.Decimal&apos;. It&apos;s very line-arty.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0181A-Powered_by_JohnnyDecimal-cx-light-640x297.png&quot; width=&quot;480&quot; height=&quot;223&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;&lt;a href=&quot;https://files.johnnydecimal.com/d25/43/43.20/&quot;&gt;Full-res versions are available to download here&lt;/a&gt;. Don&amp;#39;t save the image from above, it&amp;#39;s super low-res.&lt;/p&gt;
&lt;h3 id=&quot;faq&quot;&gt;FAQ&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Q: Can I use these freely?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A: As you please.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Q: Would you like me to link back to your site when I use them?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A: I&amp;#39;d like that, but you don&amp;#39;t have to.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Q: Do you expect me to use these?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A: This is just a bit of fun. I expect nothing.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Q: Can I tweak them for my needs by resizing them or changing their format?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A: As long as it still looks mostly like this, yes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0180 Backups aren&apos;t enough: create &apos;restore points&apos;</title><link>https://johnnydecimal.com/22.00.0180/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0180/</guid><description>I had to use my backups, and it was scary, and I was unprepared. Here&apos;s what I&apos;m changing.</description><pubDate>Thu, 22 Jan 2026 07:03:05 GMT</pubDate><content:encoded>&lt;h1 id=&quot;backups-arent-enough-create-restore-points&quot;&gt;Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/h1&gt;
&lt;p&gt;I almost lost a bunch of data this week. Here&amp;#39;s how my backups saved me (&lt;em&gt;just&lt;/em&gt;), and what I&amp;#39;ve changed.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Warning:&lt;/strong&gt; thinking about backups can make you sleepy. But if you care about your data, you need to pay attention. There&amp;#39;s a lot here: ask for help on the forum and Discord. This is important.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; now that I&amp;#39;ve finished this post, yeah, it&amp;#39;s long, and complex. I might turn this into a short YouTube series. &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;Let me know&lt;/a&gt; if that&amp;#39;d be helpful.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;what-happened&quot;&gt;What happened&lt;/h3&gt;
&lt;p&gt;Actually this started months ago. I accidentally deleted my entire Documents folder! I was being too quick on the keyboard and I literally just &lt;strong&gt;Cmd+A&lt;/strong&gt; then &lt;strong&gt;Cmd+Deleted&lt;/strong&gt; everything. Turns out that&amp;#39;s surprisingly easy to do.&lt;/p&gt;
&lt;p&gt;I undid by pressing &lt;strong&gt;Cmd+Z&lt;/strong&gt; a second later. But the damage was done. I &lt;a href=&quot;https://support.apple.com/en-au/109344&quot;&gt;store my Documents folder in iCloud Drive&lt;/a&gt; and I knew as soon as it happened that I&amp;#39;d likely triggered a cascade of network activity. My &lt;em&gt;command to delete&lt;/em&gt; would have still been half-way to the cloud when I issued the &lt;em&gt;command to undo&lt;/em&gt; (i.e. move those files out of my Trash back to Documents), and it would have been a more robust service than iCloud that handled that without issue.&lt;/p&gt;
&lt;p&gt;What I &lt;em&gt;should&lt;/em&gt; have done at that point was stop everything and spend a few hours making sure everything was okay. I didn&amp;#39;t do that.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 1.&lt;/strong&gt; If something like this happens you MUST drop everything and fix it, completely and properly, before doing anything else.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;discovering-the-issue&quot;&gt;Discovering the issue&lt;/h3&gt;
&lt;p&gt;This week I finally found time to upgrade myself to &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; v2.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-lasv2&quot; id=&quot;user-content-fnref-lasv2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I thought I&amp;#39;d take the opportunity to really clean up some old stuff, and in doing so I realised that a bunch of &lt;em&gt;really old&lt;/em&gt; archive stuff was missing.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-suite&quot; id=&quot;user-content-fnref-suite&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; The folders were there, but there was nothing in them.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 2.&lt;/strong&gt; If it doesn&amp;#39;t have a proper Johnny.Decimal ID, it might as well not exist. In my case, files buried in an &amp;#39;archive&amp;#39; folder were, in fact, important to me. I was just too lazy to organise them properly. I&amp;#39;ve since given them their own IDs in a new area, &lt;a href=&quot;https://johnnydecimal.com/22.00.0176/#2900-jdex-for-the-omnium&quot;&gt;29 The Omnium&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Even if these files had their own ID, I might not have picked this up. Everything &lt;em&gt;looked&lt;/em&gt; okay, in the moment.&lt;/p&gt;
&lt;p&gt;These missing files were buried pretty deep -- this thing that I&amp;#39;m archiving is &lt;em&gt;itself an old Johnny.Decimal structure&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-deep&quot; id=&quot;user-content-fnref-deep&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; How would I have known to go looking for this file, way down at &lt;code&gt;41.14&lt;/code&gt;?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 3.&lt;/strong&gt; I&amp;#39;m going to keep a short list of &amp;#39;&lt;a href=&quot;https://en.wiktionary.org/wiki/canary_in_a_coal_mine&quot;&gt;canary&lt;/a&gt; files&amp;#39;. They&amp;#39;re files that I care about, but rarely look at. I will manually check them in case of a &amp;#39;restore event&amp;#39;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;so-now-i-need-to-restore-from-backup&quot;&gt;So now I need to restore from backup&lt;/h3&gt;
&lt;p&gt;Obviously I have backups. I &lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;wrote a whole series about it&lt;/a&gt;. But backups are complex, mine especially so. This is of my own making, but also hard to avoid given my situation. (I won&amp;#39;t recap here: read that series.)&lt;/p&gt;
&lt;p&gt;Here are a few of the problems I encountered.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;As soon as you actually need to restore from a backup because you lost some data, &lt;em&gt;shit gets real&lt;/em&gt; if you&amp;#39;ll excuse my language.
&lt;ul&gt;
&lt;li&gt;Stress levels rise. Everything becomes difficult.&lt;/li&gt;
&lt;li&gt;This is not a time to be confused.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;span id=&quot;lesson-4&quot;&gt;&lt;/span&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 4.&lt;/strong&gt; Good records are essential. This is what your JDex is for. See below for a template that you can download.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;Not knowing &lt;em&gt;which&lt;/em&gt; backup, as in from which date, to restore.
&lt;ul&gt;
&lt;li&gt;Because I can&amp;#39;t remember exactly when this data-loss event occurred. I think it was around August? That&amp;#39;s 4 months ago.&lt;/li&gt;
&lt;li&gt;I use &lt;a href=&quot;https://www.arqbackup.com&quot;&gt;Arq&lt;/a&gt; and it allows you to search, really quickly, for a specific file across all of your backups. This made things &lt;em&gt;much&lt;/em&gt; easier.&lt;/li&gt;
&lt;li&gt;Its restore is also really fast, and this backup was local, i.e. a hard drive attached to the server, not cloud. So I could quickly do test restores to identify which was the right one.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;span id=&quot;lesson-5&quot;&gt;&lt;/span&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 5.&lt;/strong&gt; Know your backup software. Use good software: if yours isn&amp;#39;t good, find another. I recommend &lt;a href=&quot;https://www.arqbackup.com&quot;&gt;Arq&lt;/a&gt; for Mac.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;span id=&quot;lesson-6&quot;&gt;&lt;/span&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 6.&lt;/strong&gt; Local backups are better than cloud backups when it comes to restoring data because they&amp;#39;re &lt;em&gt;much&lt;/em&gt; faster. (But you still need an offsite copy, in case your house burns down.)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;Not knowing &lt;em&gt;which&lt;/em&gt; backup, as in literally which one, to restore.
&lt;ul&gt;
&lt;li&gt;Because the way I&amp;#39;d configured them -- which I think is the way most people configure them -- didn&amp;#39;t make it really obvious &lt;em&gt;where&lt;/em&gt; things were.&lt;/li&gt;
&lt;li&gt;So when I came to use them, there was confusion. Not what you want in a time of crisis.&lt;/li&gt;
&lt;li&gt;More on this below.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;span id=&quot;lesson-7&quot;&gt;&lt;/span&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 7.&lt;/strong&gt; Change the way you structure backups. Previously, I backed up &lt;em&gt;a hard drive&lt;/em&gt; or &lt;em&gt;a computer&lt;/em&gt;. But what&amp;#39;s actually important to me is the unit of data which is &lt;em&gt;a Johnny.Decimal system&lt;/em&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;ul&gt;
&lt;li&gt;My backups are encrypted.
&lt;ul&gt;
&lt;li&gt;Which they should be. And I use 1Password, and my vault is &lt;em&gt;reasonably&lt;/em&gt; neat.&lt;/li&gt;
&lt;li&gt;But when I tried the password I thought it should be, it failed. Shit. I tried another. Failed! &lt;em&gt;Oh, shit&lt;/em&gt;. This is bad.&lt;/li&gt;
&lt;li&gt;I must have mis-copy/pasted the first password. When I tried again, that worked.&lt;/li&gt;
&lt;li&gt;But to have &lt;strong&gt;any possibility of doubt at all&lt;/strong&gt; here is a total failure.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;Ref: &lt;strong&gt;Lesson 4.&lt;/strong&gt; Good records are essential.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;set-and-forget&quot;&gt;&amp;#39;Set and forget&amp;#39;&lt;/h3&gt;
&lt;p&gt;This whole thing got me wondering if we&amp;#39;re doing it all wrong. Backup services advertise themselves as &amp;#39;set and forget&amp;#39;: just install, then never think about it again!&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what got me into this problem.&lt;/p&gt;
&lt;p&gt;If you know about backups you&amp;#39;re shouting at the computer: &lt;em&gt;but Johnny, you should test your backups regularly and then you wouldn&amp;#39;t be in this situation!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s true. But you know what I think most people do when forced, begrudingly, to test their backups? They think of a file that they deleted from their Desktop &lt;em&gt;yesterday&lt;/em&gt; and they restore that. &lt;strong&gt;This is not a realistic test&lt;/strong&gt;. It doesn&amp;#39;t stress you, or your system.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lesson 8.&lt;/strong&gt; Daily &amp;#39;set and forget&amp;#39; backups are great and you should not stop doing them. But you should &lt;em&gt;also&lt;/em&gt; have a subset of backups that are a lot more deliberate, and are manually activated. You must see these backups as an opportunity to be neat and tidy. You must cherish them. They are not a chore. They are your happy place.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;conscious-backups-aka-restore-points&quot;&gt;Conscious backups aka &amp;#39;restore points&amp;#39;&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s address that last &lt;strong&gt;lesson 8&lt;/strong&gt; first. I think there&amp;#39;s room in life for two types of backups. The first is the one I&amp;#39;ve already got: the &amp;#39;set and forget&amp;#39;. 90% of the time this is going to do the job. Don&amp;#39;t stop doing those.&lt;/p&gt;
&lt;p&gt;But the other type is what I&amp;#39;m calling a &amp;#39;restore point&amp;#39;. In the IT world, a restore point is a backup at a &lt;em&gt;specific&lt;/em&gt; point in time. You&amp;#39;re saying that you can &lt;strong&gt;restore to this point in time&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;They are much more deliberate, which means that they take more work. But they give you the sort of &amp;#39;comfortable awareness&amp;#39; of your system that only comes from giving it your clear attention.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-comfortable&quot; id=&quot;user-content-fnref-comfortable&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;today-is-a-restore-point&quot;&gt;Today is a restore point&lt;/h3&gt;
&lt;p&gt;I finished my migration to LAS v2 today, and with it a bunch of tidying up and moving around of data.&lt;/p&gt;
&lt;p&gt;Today -- now -- my system is in a really nice state. I&amp;#39;ve just looked at everything and I&amp;#39;m deeply familiar with it. I&amp;#39;m sure it&amp;#39;s good. &lt;strong&gt;Today is a restore point&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m configuring a new backup. Here&amp;#39;s what makes it different from my daily backups.&lt;/p&gt;
&lt;h3 id=&quot;restore-point-rules&quot;&gt;&amp;#39;Restore point&amp;#39; rules&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;They are manually triggered.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When I decide the time is right, I&amp;#39;ll run this backup. I&amp;#39;ll be &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;adding something to my task system&lt;/a&gt; to prompt me to do this, perhaps quarterly.&lt;/p&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;They have no retention rules.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Normal backups are smart about the data they retain. Your computer might perform a backup every hour, but you don&amp;#39;t need to keep every one of those backups. That would be a waste of space.&lt;/p&gt;
&lt;p&gt;A typical &amp;#39;retention cycle&amp;#39; might be to keep:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Every hour for the last 72 hours.&lt;/li&gt;
&lt;li&gt;Every day for the last 30 days.&lt;/li&gt;
&lt;li&gt;Every week for the last 52 weeks.&lt;/li&gt;
&lt;li&gt;Every month forever.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;My &amp;#39;restore points&amp;#39; have no retention cycle. Every one is saved forever.&lt;/p&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;They have no exclusion rules.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;My daily backup excludes a bunch of files and folders. Anything that looks temporary, or like a cached version, or like something I&amp;#39;ve downloaded, or like something that I know I could get from the cloud, is excluded.&lt;/p&gt;
&lt;p&gt;For my daily rules, this keeps them lean and fast. This is particularly important for me as I live on the road. But that isn&amp;#39;t relevant for &amp;#39;restore point&amp;#39; backups. &lt;strong&gt;It is more important that they are complete&lt;/strong&gt;, so they have no exclusions.&lt;/p&gt;
&lt;h3 id=&quot;the-structure-of-a-restore-point&quot;&gt;The structure of a &amp;#39;restore point&amp;#39;&lt;/h3&gt;
&lt;p&gt;Per &lt;a href=&quot;#lesson-7&quot;&gt;lesson 7&lt;/a&gt;, these backups don&amp;#39;t just back up an entire drive, say, or my user folder. (That&amp;#39;s what your daily backups probably do, which is appropriate in that context.)&lt;/p&gt;
&lt;p&gt;Instead, they back up &lt;em&gt;the specific folders&lt;/em&gt; and &lt;em&gt;only those folders&lt;/em&gt; that make up the Johnny.Decimal system that they target. I have 2 restore point backups: one for my &lt;code&gt;P76 Personal&lt;/code&gt; system, and another for &lt;code&gt;D25 Johnny.Decimal&lt;/code&gt;, the business system.&lt;/p&gt;
&lt;p&gt;The personal system has files split across 2 locations:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;My &lt;code&gt;~/Documents&lt;/code&gt; folder. This is stored in iCloud.&lt;/li&gt;
&lt;li&gt;An external hard drive. This contains ~500GB of media files that don&amp;#39;t need to use cloud storage space.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So it only backs up these folders. Not my whole laptop. No other cruft. Nothing is excluded: if something is in one of those folders, it&amp;#39;s because I put it there, and I want it backed up.&lt;/p&gt;
&lt;p&gt;The business system is simpler as everything is in a single folder. So that folder is the only one in the restore point backup.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-syncthing&quot; id=&quot;user-content-fnref-syncthing&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;local-backups-using-arq&quot;&gt;Local backups using Arq&lt;/h3&gt;
&lt;p&gt;These backups all take place on an always-on Mac mini which is connected via Ethernet to a Synology. We learn from &lt;a href=&quot;#lesson-5&quot;&gt;lessons 5&lt;/a&gt; and &lt;a href=&quot;#lesson-6&quot;&gt;6&lt;/a&gt;: use good software that you know well to make local backups because they&amp;#39;re fast.&lt;/p&gt;
&lt;h2 id=&quot;records-keeping&quot;&gt;Records-keeping&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;#lesson-4&quot;&gt;Lesson 4&lt;/a&gt; taught us that good records-keeping is vital. You must have total confidence in these backups, and have good records that you can depend on in a crisis.&lt;/p&gt;
&lt;p&gt;Of course, this is what your JDex is for. &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;LAS&lt;/a&gt; and &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;SBS&lt;/a&gt; both have a place for backups. At LAS that&amp;#39;s &lt;code&gt;14.14 My data storage &amp;amp; backups&lt;/code&gt;, so in that note I have left myself &lt;em&gt;copious&lt;/em&gt; notes. I&amp;#39;ve recorded:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The name of the restore point backup (in Arq).&lt;/li&gt;
&lt;li&gt;Its data sources (the folders it backs up).&lt;/li&gt;
&lt;li&gt;Its target (where it backs up to).&lt;/li&gt;
&lt;li&gt;Its frequency (manual).&lt;/li&gt;
&lt;li&gt;Any exclusion and retention rules (none).&lt;/li&gt;
&lt;li&gt;Where its encryption keys are held (1Password: be explicit and name the entry).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then, &lt;em&gt;every time I manually trigger a backup&lt;/em&gt;, I&amp;#39;m noting:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The date &amp;amp; time of the backup.&lt;/li&gt;
&lt;li&gt;How large each of the folders was at the time (right-click in Finder and &lt;strong&gt;Get Info&lt;/strong&gt;).&lt;/li&gt;
&lt;li&gt;That I checked my canary files.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You want this to be a story that you can return to. A place of total comfort.&lt;/p&gt;
&lt;h3 id=&quot;use-my-template&quot;&gt;Use my template&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ve knocked up a template that I&amp;#39;m using myself. It&amp;#39;s way far from perfect, but it does the job. &lt;a href=&quot;https://files.johnnydecimal.com/D25/50/50111/&quot;&gt;Get them here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Using the 3-2-1 method of data storage -- see the notes on pages 3 &amp;amp; 4 in the PDF, or &lt;a href=&quot;https://kagi.com/search?q=3+2+1+data+backup+rule&amp;r=au&amp;sh=tUPZpMNoRZ4pabJamAxDoQ&quot;&gt;search online&lt;/a&gt; -- it has a space for you to record:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Where the &lt;strong&gt;primary&lt;/strong&gt; copy of your data is.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This is the folder that you back up.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Where the &lt;strong&gt;secondary&lt;/strong&gt; copy of your data is.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Where the &lt;strong&gt;backup&lt;/strong&gt; of your data is.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Which of the &lt;strong&gt;secondary&lt;/strong&gt; or &lt;strong&gt;backup&lt;/strong&gt; is your &lt;strong&gt;offsite copy&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Fill that in, and save it in your system.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;LAS: &lt;code&gt;14.14 My data storage &amp;amp; backups&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;SBS: &lt;code&gt;14.23 Backups &amp;amp; recovery&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;ask-for-help&quot;&gt;Ask for help&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve created a &lt;a href=&quot;https://forum.johnnydecimal.com/t/backups-arent-enough-create-restore-points-22-00-0177/2857&quot;&gt;dedicated forum post for this topic&lt;/a&gt; as it&amp;#39;s a big one. Ask for help there, or in the &lt;a href=&quot;https://discord.com/channels/822215537589354566/1463558994986799209&quot;&gt;thread on Discord&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;This post is part of a series on storage, data, &amp;amp; backups.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;22.00.0116 Data [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0120/&quot;&gt;22.00.0120 Backups [SBS.14.23]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-lasv2&quot;&gt;
&lt;p&gt;We added a handful of IDs to v1 and moved things around in the finance area to align it with the Small Business System. &lt;a href=&quot;#user-content-fnref-lasv2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-suite&quot;&gt;
&lt;p&gt;Specifically, the file that started Johnny.Decimal: a carefully-designed PDF of ticket prices that was stuck to our office wall in 2010. I wanted a way to reference this file that wasn&amp;#39;t an ugly file path, so I came up with the idea of the numbers.&lt;/p&gt;
&lt;p&gt;That was 15 years ago, and I have no use for this file today. I think about it perhaps once a year. But I&amp;#39;d be devastated if I lost it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0180A-SuiteSynergy--0-light-cx-1002x705.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0180A-SuiteSynergy--0-dark-cx-1002x705.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0180A-SuiteSynergy--0-light-cx-1002x705.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0180A-SuiteSynergy--0-dark-cx-1002x705.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;An A4 page, laid out with boxes, of ticket prices. At the top is the ID: 41.14.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0180A-SuiteSynergy--0-light-cx-1002x705.png&quot; width=&quot;1002&quot; height=&quot;705&quot;&gt;  &lt;/picture&gt; 
&lt;a href=&quot;#user-content-fnref-suite&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-deep&quot;&gt;
&lt;p&gt;To make this clearer, here&amp;#39;s a screenshot. You can right-click and &lt;strong&gt;Open in new tab&lt;/strong&gt; to make bigger.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Finder showing an entire old Johnny.Decimal structure saved at ID 29.11 in my current system.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0180B-Finder-annotated--0-original-cx-1495x530.png&quot; width=&quot;1495&quot; height=&quot;530&quot;&gt;  &lt;/picture&gt; 
&lt;a href=&quot;#user-content-fnref-deep&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-comfortable&quot;&gt;
&lt;p&gt;A concept taken from my &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;task and project management&lt;/a&gt; methodology, where it works really well. &lt;a href=&quot;#user-content-fnref-comfortable&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-syncthing&quot;&gt;
&lt;p&gt;This folder is on our server, an always-on Mac mini. I synchronise partial copies to our laptops using &lt;a href=&quot;https://syncthing.net&quot;&gt;Syncthing&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-syncthing&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0179 The two-tea-towel method</title><link>https://johnnydecimal.com/22.00.0179/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0179/</guid><description>My Christmas gift to you: my patented two-tea-towel method of kitchen management.</description><pubDate>Wed, 24 Dec 2025 09:06:57 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-two-tea-towel-method&quot;&gt;The two-tea-towel method&lt;/h1&gt;
&lt;p&gt;It&amp;#39;s a little slow around here at this time of year. I&amp;#39;m spending time with my family in the UK; my first Christmas here since 2002! The year after, I went to Australia as a backpacker and just never came home. I like to say that I moved to Australia by accident.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s something for the holidays. I have access to a kitchen again, and the first thing I did was go and buy fresh tea towels. If you care about cooking, this is how you need to tea towel. This is the two-tea-towel method.&lt;/p&gt;
&lt;h2 id=&quot;theory&quot;&gt;Theory&lt;/h2&gt;
&lt;p&gt;When you&amp;#39;re in the kitchen, you have two requirements in the cloth department.&lt;/p&gt;
&lt;p&gt;First, you need one permanently slung over your shoulder that you can use to wipe your hands, the bench, to handle a pan, or mop a spill. &lt;strong&gt;This is your &amp;#39;bench towel&amp;#39;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Second, you need to dry things that you&amp;#39;ll eat with, or off. You&amp;#39;ll need to polish a glass or a spoon. &lt;strong&gt;This is your &amp;#39;clean towel&amp;#39;&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;implementation&quot;&gt;Implementation&lt;/h3&gt;
&lt;p&gt;You need two (2) types of towel to meet these two needs.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s start with your clean towel. This needs to be a decent towel that can actually dry a thing. It needs a bit of fuzz to it, y&amp;#39;know? Your clean towel can&amp;#39;t be one of those that feels like an old pair of underpants even when it&amp;#39;s brand new.&lt;/p&gt;
&lt;p&gt;Spend a &lt;em&gt;tiny&lt;/em&gt; bit of money on your clean towels. For me. If you&amp;#39;re on a budget, your bench towel doesn&amp;#39;t need to be &lt;em&gt;as&lt;/em&gt; fancy.&lt;/p&gt;
&lt;p&gt;As a rule, simple cotton does the job. Avoid linen. And of course wash them before use to fluff them up a touch.&lt;/p&gt;
&lt;h3 id=&quot;they-must-be-visually-distinct&quot;&gt;They must be visually distinct&lt;/h3&gt;
&lt;p&gt;It is &lt;strong&gt;vital&lt;/strong&gt; that these two towels are different so that you can see, at a glance, which is which. If possible, don&amp;#39;t choose a dark coloured &amp;#39;clean towel&amp;#39;: you want to be able to quickly intuit when it&amp;#39;s no longer clean.&lt;/p&gt;
&lt;p&gt;So find yourself two types of towels.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Clean: light (in colour), heavy (in weight and drying power).&lt;/li&gt;
&lt;li&gt;Bench: dark (in colour), and can be cheaper.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We used &lt;a href=&quot;https://www.ikea.com/jp/en/p/rinnig-tea-towel-white-dark-grey-patterned-80476348/&quot;&gt;these stalwarts from IKEA&lt;/a&gt; for many years. I used &amp;#39;stripes&amp;#39; as clean and &amp;#39;checks&amp;#39; as bench; while I wish they were &lt;em&gt;more&lt;/em&gt; visually distinct, it worked. Importantly, the fabric suited both jobs perfectly and the price is right. Because...&lt;/p&gt;
&lt;h3 id=&quot;buy-a-dozen-of-each&quot;&gt;Buy a dozen of each&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s twelve (12), six plus six. Two more than ten. Of each, not total. Eight more than you thought you needed before you read this article.&lt;/p&gt;
&lt;p&gt;No, that is not too many. &lt;strong&gt;You must be able to use these towels freely&lt;/strong&gt;. This is core to the method: you will never, ever use a dirty towel. You will use them with reckless abandon. You will be utterly free in your towel usage. This will change your life.&lt;/p&gt;
&lt;p&gt;When we lived in a house and I prepared three meals a day I used &lt;em&gt;at least&lt;/em&gt; one set of towels a day. On a normal day, one set is enough. It depends what you cook. But the &lt;em&gt;instant&lt;/em&gt; you look at a towel and wonder as to its cleanliness: get a fresh one. Chuck yours in the wash.&lt;/p&gt;
&lt;h3 id=&quot;you-need-hooks&quot;&gt;You need hooks&lt;/h3&gt;
&lt;p&gt;This tip courtesy of my mam, who currently &lt;em&gt;doesn&amp;#39;t&lt;/em&gt; have hooks. Your tea towels &lt;strong&gt;must&lt;/strong&gt; be on a hook, attached to an open wall. This removes all friction, literally.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t go hanging them over the oven handle or some other hack. Get &lt;a href=&quot;https://www.3m.com.au/3M/en_AU/p/c/b/command/&quot;&gt;a 3M hook&lt;/a&gt; and stick it on the wall. No excuses.&lt;/p&gt;
&lt;h3 id=&quot;the-weekly-towel-wash&quot;&gt;The weekly towel wash&lt;/h3&gt;
&lt;p&gt;We were lucky in having a house with a washing line (and generally sunny weather, in Canberra). As I sit and type this in a basement flat in the UK with my thermal top drying on a radiator I realise this situation is not universal. But do what you can.&lt;/p&gt;
&lt;p&gt;At the end of the week, you&amp;#39;ve got 14 towels to wash. Chuck in some bathroom towels and that&amp;#39;s a full load. Now you can hang them all out together and fold them together and that&amp;#39;ll speed things right up.&lt;/p&gt;
&lt;h3 id=&quot;merry-christmas&quot;&gt;Merry Christmas&lt;/h3&gt;
&lt;p&gt;Have a lovely Christmas. It&amp;#39;s not too late to pop down the shops to get yourself a last minute gift. I&amp;#39;m sure IKEA is delightful today.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0178 Lazy shortcuts lead to mistakes</title><link>https://johnnydecimal.com/22.00.0178/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0178/</guid><description>That last blog post wasn&apos;t ready and shouldn&apos;t have been published. It slipped out because I was lazy.</description><pubDate>Mon, 15 Dec 2025 17:26:31 GMT</pubDate><content:encoded>&lt;h1 id=&quot;lazy-shortcuts-lead-to-mistakes&quot;&gt;Lazy shortcuts lead to mistakes&lt;/h1&gt;
&lt;p&gt;I just un-published post 22.00.0177 as it shouldn&amp;#39;t have appeared. It&amp;#39;s not finished and was published by mistake. Here&amp;#39;s how.&lt;/p&gt;
&lt;p&gt;Without getting too technical, I add things to this site using the ubiquitous software &lt;code&gt;git&lt;/code&gt;. Normally this is a conscious action, and it takes two steps.&lt;/p&gt;
&lt;p&gt;First:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;git add 22.00.0177&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;– to say &lt;em&gt;please add this file to the list of things I&amp;#39;d like to commit&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-pseudo&quot; id=&quot;user-content-fnref-pseudo&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;And then:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;git commit [some message to say what you did]&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;– to &lt;em&gt;commit&lt;/em&gt; those changes to the site.&lt;/p&gt;
&lt;p&gt;Well, why do in two steps what can be done in one? Long ago I created an alias -- a shortcut -- that merges these two steps. So now I just:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;git addcommit [some message to say what I did]&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;The problem is that this &lt;code&gt;git addcommit&lt;/code&gt; alias adds &lt;em&gt;every new file&lt;/em&gt; to the commit. Which is very often what you want: but clearly not always. In this case, it added this unfinished post.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a reason this isn&amp;#39;t a built-in command. It&amp;#39;s a bad idea. I was being lazy.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve deleted the shortcut. The post will be finished and re-published tomorrow. Apologies for the error.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-pseudo&quot;&gt;
&lt;p&gt;These &lt;code&gt;git&lt;/code&gt; commands are what we call &lt;em&gt;pseudocode&lt;/em&gt;. They&amp;#39;re not the exact commands, but they vaguely resemble them. The idea is to give the layperson an idea of what&amp;#39;s going on while not getting caught up in the details. &lt;a href=&quot;#user-content-fnref-pseudo&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0176 Standard zero &apos;AC.00 JDex for …&apos; – what&apos;s it for?</title><link>https://johnnydecimal.com/22.00.0176/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0176/</guid><description>Clarifying a common confusion: what are these &apos;standard zero&apos; entries for?</description><pubDate>Mon, 15 Dec 2025 06:55:35 GMT</pubDate><content:encoded>&lt;h1 id=&quot;standard-zero-ac00-jdex-for---whats-it-for&quot;&gt;Standard zero &amp;#39;AC.00 JDex for …&amp;#39; – what&amp;#39;s it for?&lt;/h1&gt;
&lt;p&gt;There&amp;#39;s a reason &lt;a href=&quot;https://johnnydecimal.com/12.03/&quot;&gt;the standard zeros&lt;/a&gt; live in the site&amp;#39;s &lt;code&gt;12 Advanced&lt;/code&gt; section. Including them all in our &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;standard&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;systems&lt;/a&gt; was a difficult decision.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-included&quot; id=&quot;user-content-fnref-included&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s look at one of these specifically, the &lt;code&gt;AC.00 JDex for …&lt;/code&gt; entry.&lt;/p&gt;
&lt;h4 id=&quot;0000-jdex-for-the-system&quot;&gt;00.00 JDex for the system&lt;/h4&gt;
&lt;p&gt;This one is the clearest. As the &amp;#39;first&amp;#39; ID in any system, &lt;code&gt;00.00&lt;/code&gt; serves as its introductory document.&lt;/p&gt;
&lt;p&gt;If there&amp;#39;s anything that you need to know &lt;em&gt;about the system&lt;/em&gt;, it should go here. I think of it like, if I got amnesia, what&amp;#39;s the &lt;em&gt;one thing&lt;/em&gt; I&amp;#39;d need to know? It&amp;#39;s the location of this note. From here, you should be able to find everything else.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what I&amp;#39;ve written at &lt;code&gt;00.00&lt;/code&gt; in my personal system:&lt;/p&gt;
&lt;h4 id=&quot;0000-jdex-for-p76-johnnys-personal-system&quot;&gt;00.00 JDex for P76 Johnny&amp;#39;s personal system&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;JDex for this system is right here in Bear. You&amp;#39;re reading it.&lt;/li&gt;
&lt;li&gt;Filesystem for this system is primarily at &lt;code&gt;iCloud Drive/Documents/P76 Johnny&amp;#39;s personal system&lt;/code&gt;.
&lt;ul&gt;
&lt;li&gt;When folders live elsewhere, that location is specifically noted in the JDex entry.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h3 id=&quot;area-level-entry&quot;&gt;Area-level entry&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s go down to the area level, &lt;code&gt;10.00&lt;/code&gt;, &lt;code&gt;20.00&lt;/code&gt; and so on. In exactly the same way, the JDex entries for the area serve as the documentation for that area.&lt;/p&gt;
&lt;p&gt;What&amp;#39;s in it? Why did you decide to put these things in it? What isn&amp;#39;t in it?&lt;/p&gt;
&lt;p&gt;I just did a bit of a tidy-up and I created myself a new area. (I use the &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; system but it&amp;#39;s specifically not designed to handle all the &lt;em&gt;other&lt;/em&gt; stuff we do: our hobbies and jobs and whatnot.)&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t have a single hobby because I&amp;#39;m the sort of person who creates a bunch of stupid little &amp;#39;projects&amp;#39;. These have accumulated over the years and I have an archive I&amp;#39;d like to save. And I&amp;#39;ll need IDs for new projects from now on.&lt;/p&gt;
&lt;p&gt;I also need a place to store stuff that I&amp;#39;ve downloaded. So I created a new area, &lt;code&gt;20-29 Create &amp;amp; collect&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;An area is little more than the categories it contains, so the JDex entry &lt;code&gt;20.00&lt;/code&gt; is very simple. I&amp;#39;ve just told myself:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;This area is for all the crazy ideas. See the category JDex for more details.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;– and then linked to &lt;code&gt;21.00&lt;/code&gt;, &lt;code&gt;22.00&lt;/code&gt;, and &lt;code&gt;29.00&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;category-level-entry&quot;&gt;Category-level entry&lt;/h3&gt;
&lt;p&gt;Here are my categories:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;21 🧠 Imaginarium&lt;sup&gt;&lt;a href=&quot;#user-content-fn-imaginarium&quot; id=&quot;user-content-fnref-imaginarium&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;22 😍 Humans are brilliant&lt;/li&gt;
&lt;li&gt;29 🏛️ The Omnium&lt;sup&gt;&lt;a href=&quot;#user-content-fn-omnium&quot; id=&quot;user-content-fnref-omnium&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And here are their JDex entries:&lt;/p&gt;
&lt;h4 id=&quot;2100-jdex-for-imaginarium&quot;&gt;21.00 JDex for Imaginarium&lt;/h4&gt;
&lt;p&gt;This is a place for all the crazy projects. But &lt;em&gt;not&lt;/em&gt; for learning about, and documenting, technology and code. That&amp;#39;s more useful in a work context, and is going to be &lt;em&gt;way&lt;/em&gt; more useful for linking in Obsidian, so code learning and notes are at D25.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-d25&quot; id=&quot;user-content-fnref-d25&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h4 id=&quot;2200-jdex-for-humans-are-brilliant&quot;&gt;22.00 JDex for Humans are brilliant&lt;/h4&gt;
&lt;p&gt;A place for &amp;#39;collected works&amp;#39; but only things that are made &lt;em&gt;by other humans&lt;/em&gt;.&lt;/p&gt;
&lt;h4 id=&quot;2900-jdex-for-the-omnium&quot;&gt;29.00 JDex for The Omnium&lt;/h4&gt;
&lt;p&gt;This is a place for &lt;em&gt;your&lt;/em&gt; historical collected works. You shouldn&amp;#39;t be working in here day-to-day. Things here shouldn&amp;#39;t ever change.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;And don&amp;#39;t move completed things from &lt;strong&gt;21.00 JDex for Imaginarium&lt;/strong&gt; here. They just stay there and age out per the Johnny.Decimal system design.&lt;/li&gt;
&lt;li&gt;Only add entries here if, in the process of tidying up old hard drives/folders, you find more old things.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;summary&quot;&gt;Summary&lt;/h3&gt;
&lt;p&gt;So in summary, these JDex notes are your documentation of your own system&amp;#39;s structure and purpose, at each level.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;00.00&lt;/code&gt; is your description of &lt;em&gt;the entire system&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;A0.00&lt;/code&gt; is your description of &lt;em&gt;this area&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;AC.00&lt;/code&gt; is your description of &lt;em&gt;this category&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And if you don&amp;#39;t need them, or that&amp;#39;s confusing, you can just ignore or delete them.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-included&quot;&gt;
&lt;p&gt;In the end, we included them. It&amp;#39;s easier to delete what you don&amp;#39;t want than it is to create what you do. &lt;a href=&quot;#user-content-fnref-included&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-imaginarium&quot;&gt;
&lt;p&gt;A name gratefully borrowed from Lucy, who came up with it &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;when she built her own system&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-imaginarium&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-omnium&quot;&gt;
&lt;p&gt;Yes, I pushed this out to &lt;code&gt;29&lt;/code&gt;, further reinforcing its archive-ness. &lt;a href=&quot;#user-content-fnref-omnium&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-d25&quot;&gt;
&lt;p&gt;&lt;code&gt;D25&lt;/code&gt; is my &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business System&lt;/a&gt; and it lives in Obsidian. &lt;a href=&quot;#user-content-fnref-d25&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0175 Commercial licence</title><link>https://johnnydecimal.com/22.00.0175/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0175/</guid><description>Johnny.Decimal now offers an optional commercial licence for those of you who would like to support us.</description><pubDate>Sat, 13 Dec 2025 17:08:44 GMT</pubDate><content:encoded>&lt;h1 id=&quot;commercial-licence&quot;&gt;Commercial licence&lt;/h1&gt;
&lt;p&gt;The Johnny.Decimal system will always be free for everyone, including for commercial use. The &lt;a href=&quot;https://johnnydecimal.com/01.02/&quot;&gt;licence&lt;/a&gt; places no restrictions on use of the system.&lt;/p&gt;
&lt;p&gt;But you might work for an enlightened company who recognises that ideas like this need to be sustained. So we just created a commercial licence with 3 tiers.&lt;/p&gt;
&lt;p&gt;The employee numbers are &lt;em&gt;total at your company&lt;/em&gt;, and the currency is USD:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;10-100 employees: &lt;a href=&quot;https://buy.stripe.com/6oUaEYbZr7EL3GX1aZcZa07&quot;&gt;$1,000/year&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;100-1000 employees: &lt;a href=&quot;https://buy.stripe.com/7sY5kEaVn1gn6T97zncZa08&quot;&gt;$5,000/year&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;1000+ employees: &lt;a href=&quot;https://buy.stripe.com/eVq9AU0gJ2kr1yPdXLcZa09&quot;&gt;$10,000/year&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Full details are at &lt;a href=&quot;https://johnnydecimal.com/01.02/#commercial-licence&quot;&gt;01.02/Commercial licence&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0174 Finder folders to Markdown links in Bear</title><link>https://johnnydecimal.com/22.00.0174/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0174/</guid><description>Want a link from a Bear note that opens a Finder folder? Your Mac does all the work for you: just copy/paste.</description><pubDate>Fri, 12 Dec 2025 16:44:35 GMT</pubDate><content:encoded>&lt;h1 id=&quot;finder-folders-to-markdown-links-in-bear&quot;&gt;Finder folders to Markdown links in Bear&lt;/h1&gt;
&lt;p&gt;I was just trying to get a list of Finder folders as a bullet list in a Bear note. (I&amp;#39;m finally upgrading my own &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;LAS&lt;/a&gt; to v2 and am making it super neat as I go.)&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve known for a while that you can do this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Select some folders in the Finder. Typically I find myself shift-selecting a whole range, e.g. 20 dated subfolders within another folder.&lt;/li&gt;
&lt;li&gt;Cmd+C to &lt;strong&gt;copy&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Now if you Cmd+V to &lt;strong&gt;paste&lt;/strong&gt;, and you paste into a text field, you&amp;#39;ll get the &lt;em&gt;titles&lt;/em&gt; of the folders.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What you get depends where you&amp;#39;re pasting. If I do that into this Visual Studio Code window, I get a long file path. If I do it in to a TextEdit window in the default &lt;strong&gt;rich text&lt;/strong&gt; view, it tries to paste the contents of the folders!&lt;/p&gt;
&lt;p&gt;I have TextEdit set to open a &lt;strong&gt;plain text&lt;/strong&gt; window by default vs. RTF. That&amp;#39;s &lt;strong&gt;Settings &amp;gt; New Document (tab) &amp;gt; Format &amp;gt; Plain text&lt;/strong&gt;. And now when I paste there, I get a really simple list of the folder names.&lt;/p&gt;
&lt;h3 id=&quot;paste-to-bear-gets-you-a-markdown-link&quot;&gt;Paste to Bear gets you a Markdown link&lt;/h3&gt;
&lt;p&gt;If you paste into Bear (or, I presume, other Markdown-compatible apps), you get a Markdown link that, when clicked, &lt;em&gt;opens the folder in Finder!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s brilliant. Just what I want for my JDex: now it tells me what&amp;#39;s in my filesystem folders, and I can just click to go there.&lt;/p&gt;
&lt;h3 id=&quot;note-only-with-2-folders&quot;&gt;Note: only with 2+ folders&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://mastodon.nl/@ro/115711039014812760&quot;&gt;Robert points out on Mastodon&lt;/a&gt; that this only works if you have 2 or more folders selected. If you &amp;#39;copy&amp;#39; a single folder, that will paste as a massive blue folder icon!&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a lot more going on when you press &amp;#39;copy&amp;#39; than you thought...&lt;/p&gt;
&lt;h3 id=&quot;a-video&quot;&gt;A video&lt;/h3&gt;
&lt;p&gt;Here this is a quick video.&lt;/p&gt;
&lt;video controls=&quot;&quot;&gt;&lt;source src=&quot;/img/v6/22.00.0174A-Finder-to-Bear--0-717x874.mp4&quot; type=&quot;video/mp4&quot;&gt;&lt;p&gt;Your browser does not support the video tag.&lt;/p&gt;&lt;/video&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0173 Obsidian links (redux)</title><link>https://johnnydecimal.com/22.00.0173/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0173/</guid><description>I keep refining how I link back to my Obsidian notes. This feels pretty close to perfect.</description><pubDate>Fri, 12 Dec 2025 09:50:54 GMT</pubDate><content:encoded>&lt;h1 id=&quot;obsidian-links-redux&quot;&gt;Obsidian links (redux)&lt;/h1&gt;

&lt;blockquote&gt;
&lt;p&gt;Previously:&lt;br&gt;
– &lt;a href=&quot;https://johnnydecimal.com/22.00.0111/&quot;&gt;Things: cross-link to Obsidian and back&lt;/a&gt;&lt;br&gt;
– &lt;a href=&quot;https://johnnydecimal.com/22.00.0130/&quot;&gt;Obsidian tip: link directly to a header&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;m going to start creating &amp;#39;permalinks&amp;#39; for each of my Obsidian notes using the &lt;code&gt;^block&lt;/code&gt; syntax.&lt;/p&gt;
&lt;p&gt;I link to my notes prolifically &lt;em&gt;from outside Obsidian&lt;/em&gt;. My primary use-case is Things, where every project has this block at the top (mirrored in the Obsidian note).&lt;sup&gt;&lt;a href=&quot;#user-content-fn-mirror&quot; id=&quot;user-content-fnref-mirror&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0173A-Things--0-light-cx-752x512.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0173A-Things--0-dark-cx-752x512.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0173A-Things--0-light-cx-752x512.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0173A-Things--0-dark-cx-752x512.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The notes section at the top of a Things project. I have two Markdown links, one to Obsidian, one to Things.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0173A-Things--0-light-cx-752x512.png&quot; width=&quot;752&quot; height=&quot;512&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;If that Obsidian URL is the traditional format, where you link to the title of the note, it&amp;#39;s very fragile. My note titles are fluid; I shouldn&amp;#39;t be afraid to change them.&lt;/p&gt;
&lt;p&gt;So I use the &lt;a href=&quot;obsidian://show-plugin?id=obsidian-advanced-uri&quot;&gt;Advanced URI&lt;/a&gt; plugin which allows you to link to a &lt;code&gt;^block&lt;/code&gt;, and at the top of every note I create a permalink using the ID of the note.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0173B-Obsidian--0-light-cx-424x282.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0173B-Obsidian--0-dark-cx-424x282.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0173B-Obsidian--0-light-cx-424x282.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0173B-Obsidian--0-dark-cx-424x282.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Links as described in the post at the top of an Obsidian note.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0173B-Obsidian--0-light-cx-424x282.png&quot; width=&quot;424&quot; height=&quot;282&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Note that right-clicking on the block and selecting &lt;strong&gt;Copy URI for current block&lt;/strong&gt; gives you a longer URI which contains the note&amp;#39;s title. If you&amp;#39;re strict about making your block identifiers unique – easy when they mirror the ID of the note they&amp;#39;re in – you can remove that part of the URI, leaving it much neater.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;obsidian://adv-uri?vault=D25%20JDex&amp;amp;block=50105&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;– because now I can leave that URI string in the templates for both Obsidian notes and Things projects, and all I need to do each time is change the last couple of digits of that block ID. So this only takes a few seconds and is low-friction.&lt;/p&gt;
&lt;h3 id=&quot;a-note-on-the-experimental-501051454-syntax&quot;&gt;A note on the experimental &lt;code&gt;50105~14.54&lt;/code&gt; syntax&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s the note: it&amp;#39;s experimental. There&amp;#39;s a healthy debate &lt;a href=&quot;https://discord.com/channels/822215537589354566/1448385281681002687&quot;&gt;over on Discord&lt;/a&gt; and there&amp;#39;ll be a blog post shortly.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-mirror&quot;&gt;
&lt;p&gt;Yes, Things links to itself, as does Obsidian when I copy it over. But now this block of links is copy/pastable anywhere as it&amp;#39;s complete.&lt;/p&gt;
&lt;p&gt;This is why I use Markdown bullets and not Obsidian&amp;#39;s properties: I prefer that my frontmatter be human-readable, and copy/pastable to other Markdown-compatible apps. I don&amp;#39;t need to query it or use Bases. &lt;a href=&quot;#user-content-fnref-mirror&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0172 Terminal tricks</title><link>https://johnnydecimal.com/22.00.0172/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0172/</guid><description>Some neat tricks to get you to your folders faster using the macOS command line.</description><pubDate>Tue, 09 Dec 2025 16:55:54 GMT</pubDate><content:encoded>&lt;h1 id=&quot;terminal-tricks&quot;&gt;Terminal tricks&lt;/h1&gt;
&lt;p&gt;Since writing &lt;a href=&quot;https://johnnydecimal.com/12.04/&quot;&gt;this page&lt;/a&gt; years ago, I&amp;#39;ve become a bit better at using the Terminal.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-alias&quot; id=&quot;user-content-fnref-alias&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I just realised how simple it is to move to a Johnny.Decimal folder. Here&amp;#39;s how.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll explain &lt;em&gt;why&lt;/em&gt; this works, as you&amp;#39;ll need to tweak it for your own setup. So the first thing you need to know is where my system lives on my filesystem. My personal system, folder name &lt;code&gt;P76 Johnny&amp;#39;s personal system&lt;/code&gt;, is in my &lt;code&gt;~/Documents&lt;/code&gt; folder.&lt;/p&gt;
&lt;p&gt;To make the examples here simpler I&amp;#39;ll assume we&amp;#39;ve already &lt;code&gt;cd ~/Documents&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;wildcards&quot;&gt;Wildcards&lt;/h3&gt;
&lt;p&gt;Two quick things to know.&lt;/p&gt;
&lt;p&gt;A wildcard &lt;code&gt;*&lt;/code&gt; means &amp;#39;any text&amp;#39;. So instead of &lt;code&gt;P76 Johnny&amp;#39;s personal system&lt;/code&gt; I can just write &lt;code&gt;P76*&lt;/code&gt;. This works uniquely well in Johnny.Decimal because the majority of your folders start with a unique number.&lt;/p&gt;
&lt;p&gt;You can expand this by using the amazingly-named &lt;strong&gt;globstar&lt;/strong&gt; pattern. Within a path, &lt;code&gt;**&lt;/code&gt; will match &lt;em&gt;any folder&lt;/em&gt;. It&amp;#39;s like a really-wildcard.&lt;/p&gt;
&lt;h3 id=&quot;globs&quot;&gt;Globs&lt;/h3&gt;
&lt;p&gt;Seriously, this pattern is called a glob. You weren&amp;#39;t allowed to have those when I was at school.&lt;/p&gt;
&lt;p&gt;If I want to navigate to my ID &lt;code&gt;15.53&lt;/code&gt;, this is what I do.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;cd P76*/**/15.53*&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it! We&amp;#39;re saying please change directory to the folder that starts &lt;code&gt;P76&lt;/code&gt;, of which there is only one. Then, search all of its subfolders &lt;code&gt;**&lt;/code&gt;, until you find one that starts &lt;code&gt;15.53&lt;/code&gt;. There&amp;#39;s only one of those.&lt;/p&gt;
&lt;h3 id=&quot;open-the-folder-in-finder&quot;&gt;Open the folder in Finder&lt;/h3&gt;
&lt;p&gt;If you want to actually open a Finder window, vs. staying in the Terminal:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;open P76*/**/15.53*&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Amaaaaazing.&lt;/p&gt;
&lt;h3 id=&quot;advanced-script&quot;&gt;Advanced script&lt;/h3&gt;
&lt;p&gt;How&amp;#39;s this update to the &lt;code&gt;cdj&lt;/code&gt; script, &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267671496118239313/1447992461283819651&quot;&gt;from Murrax on Discord&lt;/a&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;setopt extended_glob
setopt dot_glob

cdj() {
  # Update with your document root folder
  if [ -z &amp;quot;$2&amp;quot; ]; then
  pushd ~/Documents/JD/*/*/${1}*/
  else
  pushd ~/Documents/JD/*/*/${1}*/*(#i)($2)**([1])
  fi
}

export cdj
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I&amp;#39;ll quote Murrax for the details:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;it lets you go into subfolders too, searching by substring, e.g. &lt;code&gt;cdj 31.14 COMSM0067&lt;/code&gt; puts me in &lt;code&gt;~/Documents/31 Formal Education/31.14 University of Bristol/+COMSM0067 Advanced Topics in Programming Languages&lt;/code&gt;, or if I forget the unit code I can do &lt;code&gt;cdj 31.14 languages&lt;/code&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;A-&lt;em&gt;maaaa&lt;/em&gt;-zing.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-alias&quot;&gt;
&lt;p&gt;That &lt;code&gt;cdj()&lt;/code&gt; script came from someone else, I didn&amp;#39;t write it. If you did, let me know! Authorship is lost to the sands of time. &lt;a href=&quot;#user-content-fnref-alias&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0171 Configuration management</title><link>https://johnnydecimal.com/22.00.0171/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0171/</guid><description>Or, &apos;what&apos;s worth remembering?&apos;</description><pubDate>Mon, 08 Dec 2025 13:32:40 GMT</pubDate><content:encoded>&lt;h1 id=&quot;configuration-management&quot;&gt;Configuration management&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0159/&quot;&gt;A few weeks ago&lt;/a&gt; I was admiring Japanese train drivers&amp;#39; very &amp;#39;deliberate&amp;#39; behaviour. And I talked about it in the new &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;task and project management&lt;/a&gt; (T&amp;amp;PM) course, specifically in the context of &lt;a href=&quot;https://jdhq.johnnydecimal.com/jdu/taskpm/290&quot;&gt;setting up a dashboard and &amp;#39;logging&amp;#39; your work&lt;/a&gt; (link requires access to the course).&lt;/p&gt;
&lt;p&gt;Effective immediately, I&amp;#39;m committing myself to a new set of behaviours. I don&amp;#39;t think this will be easy, but I&amp;#39;m going to stick with it, and document it here. This will be one of my major themes for 2026.&lt;/p&gt;
&lt;p&gt;In summary:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Every action I take on my business &lt;a href=&quot;https://datatracker.ietf.org/doc/html/rfc2119#section-1&quot;&gt;MUST&lt;/a&gt; start and end in my JDex.&lt;/li&gt;
&lt;li&gt;Every thing that I create, reference, or update, MUST be contained in my JDex. This includes technical details e.g. all changes to this website and JDHQ.&lt;/li&gt;
&lt;li&gt;This documentation needs to be good enough such that a competent stranger could understand what I&amp;#39;ve done.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To reinforce point 1: there are &lt;strong&gt;no exceptions&lt;/strong&gt;. &lt;strong&gt;Everything&lt;/strong&gt; that I touch or do &lt;strong&gt;MUST&lt;/strong&gt; be documented in my JDex. This might not be practical or helpful; I&amp;#39;m not committing to do this for all of time. But let&amp;#39;s find out.&lt;/p&gt;
&lt;h2 id=&quot;case-study-our-recent-bogo-offer&quot;&gt;Case study: our recent &amp;#39;BOGO&amp;#39; offer&lt;/h2&gt;
&lt;p&gt;I was late in dealing with Black Friday and for reasons that aren&amp;#39;t relevant, setting up a &amp;#39;buy one, gift one&amp;#39; offer &lt;del&gt;was&lt;/del&gt; felt simpler than, say, a 20% discount.&lt;/p&gt;
&lt;p&gt;Regardless of the offer, there&amp;#39;s still a &lt;em&gt;ton&lt;/em&gt; of complexity in building something like this. In this case:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Inject some sort of notice of the offer onto &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;a&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;whole&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;bunch&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;of&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;pages&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Create a public database to receive people&amp;#39;s invitation data.
&lt;ul&gt;
&lt;li&gt;Make it so a stranger can&amp;#39;t randomly add a record to this database.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Modify the template that sends you the &amp;#39;create an account&amp;#39; email so that it includes a link to this database, pre-filled with your details.&lt;/li&gt;
&lt;li&gt;Track which account is a gift purchase, and which is a recipient, so that recipients don&amp;#39;t also get a link to gift an account, creating a never-ending chain.&lt;/li&gt;
&lt;li&gt;Check the database every day and manually create these gift accounts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And more. A whole bunch of work! The point here isn&amp;#39;t these specific details. It&amp;#39;s that many things in business are this complex.&lt;/p&gt;
&lt;h3 id=&quot;its-not-like-driving-a-train&quot;&gt;It&amp;#39;s not like driving a train&lt;/h3&gt;
&lt;p&gt;Not to take away from the skill of driving a Japanese train, but there I think it&amp;#39;s orders of magnitude easier to be more deliberate. Each station, each action, the same. Check the time. Check the doors. Pull away. Check your speed. Slow down. Apply the brakes. Repeat.&lt;/p&gt;
&lt;p&gt;Very little of modern knowledge work is like this.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-knowledge&quot; id=&quot;user-content-fnref-knowledge&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;whats-worth-remembering&quot;&gt;What&amp;#39;s worth remembering?&lt;/h2&gt;
&lt;p&gt;All day long, people in PKM forums ask a variant of the question: &lt;em&gt;how do I remember everything that I read?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I get why they ask. They&amp;#39;ve been told by Big PKM that you&amp;#39;re a better person if you remember everything. And if you didn&amp;#39;t have so much to remember, you wouldn&amp;#39;t need to spend money on that &amp;#39;second brain&amp;#39;. ;-)&lt;/p&gt;
&lt;p&gt;But I disagree, in the most part. (If you&amp;#39;re studying for a degree, you might ignore this section.)&lt;/p&gt;
&lt;p&gt;I think you&amp;#39;ll remember what you&amp;#39;re naturally inclined to remember. When I read a book my primary goal isn&amp;#39;t internalising every piece of information. That sounds exhausting. And, to what end?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is why I&amp;#39;ve always seen Johnny.Decimal more as &lt;a href=&quot;https://johnnydecimal.com/22.00.0112/&quot;&gt;PRM vs. PKM&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;configuration&quot;&gt;Configuration&lt;/h3&gt;
&lt;p&gt;But some things &lt;em&gt;are&lt;/em&gt; worth remembering. All that stuff I did to my website: now I want to un-do it. The deal&amp;#39;s over: let&amp;#39;s revert to normal. It sure would be nice if I could just reverse my steps.&lt;/p&gt;
&lt;p&gt;I did it in the first place. Surely I can just remember what I did in order to un-do it?&lt;sup&gt;&lt;a href=&quot;#user-content-fn-git&quot; id=&quot;user-content-fnref-git&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Well, spoiler: I can&amp;#39;t. It&amp;#39;s just &lt;em&gt;too complex&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-loc&quot; id=&quot;user-content-fnref-loc&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;In the corporate IT world we call this sort of stuff &amp;#39;configuration&amp;#39;. There&amp;#39;s a whole field of &amp;#39;configuration management&amp;#39;: staff, processes, and software. And it&amp;#39;s &lt;em&gt;really difficult&lt;/em&gt;. I&amp;#39;ve never seen it done right.&lt;/p&gt;
&lt;p&gt;Because humans, what are we good at? What do we enjoy? Work! Changing things. Making things better. We dive in and change stuff; we hack away and get it done.&lt;/p&gt;
&lt;p&gt;What &lt;em&gt;isn&amp;#39;t&lt;/em&gt; fun? Keeping records! Stopping, after the fact, and writing down what you did. Who wants to do that, vs. getting on with the next fun job? We&amp;#39;re so bad at it. So it never happens.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-change&quot; id=&quot;user-content-fnref-change&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;my-bogo-configuration&quot;&gt;My &amp;#39;BOGO&amp;#39; configuration&lt;/h2&gt;
&lt;p&gt;So what configuration should I have recorded in the context of this BOGO offer? I think it&amp;#39;s sufficient to be complete, but concise. Especially so in the context of computer code: I don&amp;#39;t need to describe exactly what my code &lt;em&gt;does&lt;/em&gt;. To determine that, I can read the code.&lt;/p&gt;
&lt;p&gt;But I need to describe which pieces I created, updated, and deleted. What &lt;em&gt;changed&lt;/em&gt;, at a high level? Because that&amp;#39;s what allows me to trivially un-wind the thing.&lt;/p&gt;
&lt;p&gt;I think if I&amp;#39;d written 5 bullet points, each of less than 50 words, that would have done the job. Hardly onerous.&lt;/p&gt;
&lt;h3 id=&quot;this-will-slow-me-down&quot;&gt;This will slow me down&lt;/h3&gt;
&lt;p&gt;Another theme from the T&amp;amp;PM course was that, to do things &lt;em&gt;well&lt;/em&gt;, I think it&amp;#39;s necessary to do them &lt;em&gt;more slowly&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Computers allow us to be fast. You should see me using this Mac: it can be a blur. I&amp;#39;m good at computers.&lt;/p&gt;
&lt;p&gt;But does this help? We just saw how my haste actually got me into trouble. Doing things quickly can be a false economy. When I exhorted you to be &lt;a href=&quot;https://johnnydecimal.com/22.00.0126/#lazy-is-default&quot;&gt;neither lazy nor stupid&lt;/a&gt; I noted that &amp;#39;being lazy &lt;em&gt;now&lt;/em&gt; just means that I have to do it again &lt;em&gt;later&lt;/em&gt;&amp;#39;. There&amp;#39;s no net time saved.&lt;/p&gt;
&lt;h3 id=&quot;ill-youtube-this-in-2026&quot;&gt;I&amp;#39;ll YouTube this (in 2026)&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ve long wanted to publish an ongoing series of &amp;#39;how Johnny works&amp;#39;. This is it. I&amp;#39;ll give it some thought and, when I start, show my working here and on YouTube.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-knowledge&quot;&gt;
&lt;p&gt;Almost by definition? If it becomes rote it ceases to become knowledge work. Now its outsourceable. &lt;a href=&quot;#user-content-fnref-knowledge&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-git&quot;&gt;
&lt;p&gt;I know, I should have been better at controlling my &lt;code&gt;git&lt;/code&gt; commits and then I could have just reverted those changes. I didn&amp;#39;t do that either. &lt;a href=&quot;#user-content-fnref-git&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-loc&quot;&gt;
&lt;p&gt;There are 13,573 lines of code in the Astro files that make JDHQ work. That doesn&amp;#39;t include any of the &lt;em&gt;content&lt;/em&gt;. &lt;a href=&quot;#user-content-fnref-loc&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-change&quot;&gt;
&lt;p&gt;At work there&amp;#39;s an accompanying field of &lt;em&gt;change management&lt;/em&gt; that theoretically helps. I see parallels there too, and might explore this in a future post. &lt;a href=&quot;#user-content-fnref-change&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0170 Decimal Diary: TGIF and vintage annual reports</title><link>https://johnnydecimal.com/22.00.0170/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0170/</guid><description>Wednesday&apos;s blog posts will be guest appearances by Lucy from now. This week she tells us about tidying up her vintage annual report collection.</description><pubDate>Wed, 26 Nov 2025 09:20:33 GMT</pubDate><content:encoded>&lt;h1 id=&quot;decimal-diary-tgif-and-vintage-annual-reports&quot;&gt;Decimal Diary: TGIF and vintage annual reports&lt;/h1&gt;
&lt;p&gt;Dear Decimal Diary,&lt;/p&gt;
&lt;p&gt;Last week I did a little TGIF – &lt;a href=&quot;https://jdcm.al/22.00.0097&quot;&gt;Thank God I Filed it&lt;/a&gt; – time. And when I was nosing around I found a fun folder I&amp;#39;d forgotten about in &lt;code&gt;43 Images&lt;/code&gt; in our &lt;a href=&quot;https://jdcm.al/15.04&quot;&gt;Small Business System&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;TGIF is Johnny&amp;#39;s idea about spending some time on Friday afternoons filing things properly and neatening your system. When your brain is too tired for other stuff.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; It&amp;#39;s the kind of thing I put off, and then when I start I can&amp;#39;t stop. Now I know about how files &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/11-core/11.06-saving-files/#sorting-by-year-month&quot;&gt;sort beautifully using the date&lt;/a&gt;, I get a small thrill from tidying up messy filenames.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-2&quot; id=&quot;user-content-fnref-2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;The ID I neatened last week was &lt;code&gt;43.21 Vintage annual reports&lt;/code&gt;. It has some PDFs I&amp;#39;d downloaded for inspiration at some point. The filenames were haphazard and as-downloaded. And since they&amp;#39;re annual reports, putting the year out the front makes sense to me. Now they&amp;#39;re all lined up and tidy. It&amp;#39;s a small win, but satisfying. And I&amp;#39;ll remember I have these in the chamber.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A nicely sorted ID&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.43.21-vintageannualreports--cx-844x859.png&quot; width=&quot;844&quot; height=&quot;859&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170A. A nicely sorted ID.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;some-reports&quot;&gt;Some reports&lt;/h3&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Bureau of Economic Geology&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-bureauofeconomicgeology--cx-632x821.png&quot; width=&quot;632&quot; height=&quot;821&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170B. The Bureau of Economic Geology.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Ford Foundation&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-fordfoundation--cx-738x953.png&quot; width=&quot;738&quot; height=&quot;953&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170C. The Ford Foundation.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Deep East Texas MHMR&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-deepeasttexasmhmr-cx-635x811.png&quot; width=&quot;635&quot; height=&quot;811&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170D. The Deep East Texas MHMR.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A page with a financial report&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-deepeasttexasmhmr-finances--cx-635x811.png&quot; width=&quot;635&quot; height=&quot;811&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170E. A page with a financial report.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Philippine Wood Products Association&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-philippinewoodproductsassociation--cx-635x821.png&quot; width=&quot;635&quot; height=&quot;821&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170F. The Philippine Wood Products Association.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Jet Propulsion Laboratory&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-jetpropulsionlaboratory-cover--cx-619x806.png&quot; width=&quot;619&quot; height=&quot;806&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170G. The Jet Propulsion Laboratory.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A page with a photo by the Voyager probe&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1980-jetpropulsionlaboratory--cx-628x825.png&quot; width=&quot;628&quot; height=&quot;825&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170H. A page with a photo by the Voyager probe.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Electricity Supply Board&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1981-electricitysupplyboard--737x1067.jpeg&quot; width=&quot;737&quot; height=&quot;1067&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170I. The Electricity Supply Board.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Jet Propulsion Laboratory&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1981-jetpropulsionlaboratory--cx-617x805.png&quot; width=&quot;617&quot; height=&quot;805&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170J. The Jet Propulsion Laboratory.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Jet Propulsion Laboratory&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0170.1985 - Jet Propulsion Laboratory--cx-1136x1169.png&quot; width=&quot;1136&quot; height=&quot;1169&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0170K. The Jet Propulsion Laboratory.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;If you have any leanings this way, the vintage annual report world can be a dangerous rabbit hole.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-3&quot; id=&quot;user-content-fnref-3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; And so can filing using the date to sort.&lt;/p&gt;
&lt;p&gt;From Lucy&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Our Friday afternoon soundtrack is often the &lt;a href=&quot;https://en.wikipedia.org/wiki/Platinum_Collection_(Genesis_album)&quot;&gt;Platinum Collection by Genesis&lt;/a&gt;, but anything similar will improve this type of admin. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-2&quot;&gt;
&lt;p&gt;Remember, you can set up a &lt;a href=&quot;https://jdcm.al/22.00.0094&quot;&gt;shortcut to add dates automatically&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-3&quot;&gt;
&lt;p&gt;Especially the space ones. &lt;a href=&quot;#user-content-fnref-3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>14.04 Task and Project Management</title><link>https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.04-task-and-project-management/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.04-task-and-project-management/</guid><description>How I manage to stay on top of life. A 4-hour video course.</description><pubDate>Fri, 21 Nov 2025 14:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;task-and-project-management-a-course&quot;&gt;Task and Project Management: a course&lt;/h1&gt;
&lt;p&gt;Having a neat filesystem and notes is just the start.&lt;/p&gt;
&lt;p&gt;So in our latest video course, I&amp;#39;ll show you how I use my system to manage my own life and business.&lt;/p&gt;
&lt;p&gt;Turns out, having a highly-structured system where everything fits into a category is an &lt;em&gt;amazing&lt;/em&gt; way to organise the stuff you need to get done. Here&amp;#39;s how.&lt;/p&gt;
&lt;h3 id=&quot;tasks&quot;&gt;Tasks&lt;/h3&gt;
&lt;p&gt;I think of this as a monster with two heads: first, there are &lt;strong&gt;tasks&lt;/strong&gt;. That&amp;#39;s all the day-to-day stuff that you need to stay on top of. Whether you&amp;#39;re at home or work, you&amp;#39;ve got a bunch of one-off stuff that just needs to get done. This is &lt;em&gt;keeping on top of life&lt;/em&gt; and it&amp;#39;s boring, but unavoidable.&lt;/p&gt;
&lt;h3 id=&quot;projects&quot;&gt;Projects&lt;/h3&gt;
&lt;p&gt;And then there&amp;#39;s the longer-term stuff that &lt;em&gt;drives life forward&lt;/em&gt;. These &lt;strong&gt;projects&lt;/strong&gt; are the things you want to spend your weekends doing, or the things that make your business better. The more of this you can make time for, the happier you&amp;#39;re going to be.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll show you how to use the same tools, techniques, and mindset to manage them both.&lt;/p&gt;
&lt;h3 id=&quot;comfortable-awareness&quot;&gt;Comfortable awareness&lt;/h3&gt;
&lt;p&gt;I won&amp;#39;t pretend to have a solution for getting it all done. You won&amp;#39;t get it all done. I have 542 tasks in my system: I won&amp;#39;t live long enough to get them all done! I&amp;#39;m at peace with that.&lt;/p&gt;
&lt;p&gt;Instead, what I&amp;#39;ll give you is a &lt;em&gt;comfortable awareness&lt;/em&gt; of it all. Because much of what&amp;#39;s in there is just ideas for the future. It&amp;#39;s stuff that you&amp;#39;d &lt;em&gt;like&lt;/em&gt; to do, when you get time. But if it isn&amp;#39;t ever done, &lt;em&gt;life will go on&lt;/em&gt;. Trust me, it will.&lt;/p&gt;
&lt;p&gt;My system is pragmatic and utterly practical. It ensures that you can&amp;#39;t forget the really important stuff, while helping you make time for everything else. It&amp;#39;s designed to never be overwhelming.&lt;/p&gt;
&lt;p&gt;We stick to one of the themes of Johnny.Decimal: &lt;strong&gt;reduction of stress&lt;/strong&gt;. Because at least if you&amp;#39;re &lt;em&gt;aware&lt;/em&gt; of it all, there&amp;#39;ll be no nasty surprises.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve been using this system for a year now. It&amp;#39;s a really nice feeling.&lt;/p&gt;
&lt;h3 id=&quot;i-use-things-for-mac-a-lot&quot;&gt;I use Things for Mac a lot&lt;/h3&gt;
&lt;p&gt;I didn&amp;#39;t set out to make a &amp;#39;&lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things for Mac&lt;/a&gt;&amp;#39; course. But Things is the app I use and I use its features heavily.&lt;/p&gt;
&lt;p&gt;And so, at least in this initial release, this is very Things-heavy. I&amp;#39;d &lt;em&gt;like&lt;/em&gt; to generalise it over time, but at last count there were over 815 productivity apps, so I obviously can&amp;#39;t cover any meaningful fraction of them.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-madeup&quot; id=&quot;user-content-fnref-madeup&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I had to choose one app, and it&amp;#39;s Things. It&amp;#39;s a great app.&lt;/p&gt;
&lt;p&gt;That said, I spend a lot of time explaining &lt;em&gt;why&lt;/em&gt; I&amp;#39;m doing things a certain way: you&amp;#39;ll see my thinking. I&amp;#39;m not just clicking buttons. So you should be able to adapt this for your own setup.&lt;/p&gt;
&lt;p&gt;I felt it only right to make you aware of this.&lt;/p&gt;
&lt;h3 id=&quot;heres-the-first-episode&quot;&gt;Here&amp;#39;s the first episode&lt;/h3&gt;
&lt;p&gt;Rather than record a trailer, here&amp;#39;s the first episode where I tell you about the course.&lt;/p&gt;
&lt;div style=&quot;padding:56.25% 0 0 0;position:relative;&quot;&gt;&lt;iframe src=&quot;https://player.vimeo.com/video/1137333222?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479&quot; frameborder=&quot;0&quot; allow=&quot;autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share&quot; referrerpolicy=&quot;strict-origin-when-cross-origin&quot; style=&quot;position:absolute;top:0;left:0;width:100%;height:100%;&quot; title=&quot;Introduction and course goals (50051)&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;p&gt;And here&amp;#39;s another that I recorded later for YouTube. This one&amp;#39;s a 10-minute overview of the process.&lt;/p&gt;
&lt;div style=&quot;padding:56.25% 0 0 0;position:relative;&quot;&gt;&lt;iframe src=&quot;https://player.vimeo.com/video/1173903331?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479&quot; frameborder=&quot;0&quot; allow=&quot;autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share&quot; referrerpolicy=&quot;strict-origin-when-cross-origin&quot; style=&quot;position:absolute;top:0;left:0;width:100%;height:100%;&quot; title=&quot;W0138 - A summary of our Task &amp;#38; Project Management course&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;h3 id=&quot;how-much-is-it&quot;&gt;How much is it?&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s part of &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;Johnny.Decimal University&lt;/a&gt;, so you get this course, &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;the Johnny.Decimal Workshop&lt;/a&gt;, the &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin System&lt;/a&gt;, and more, for just &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;. No subscriptions, with updates for life.&lt;/p&gt;
&lt;p class=&quot;ppp-notice ppp-only&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;

&lt;div style=&quot;margin: 0 auto; width: fit-content;&quot;&gt;&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=jdu&quot; data-umami-event=&quot;1402-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&quot;human-guaranteed&quot;&gt;Human, guaranteed&lt;/h3&gt;
&lt;p&gt;Lovingly crafted by two humans. No AI here. If you don&amp;#39;t like it, let me know within 14 days and you can have your money back. No questions asked.&lt;/p&gt;
&lt;h3 id=&quot;people-like-it&quot;&gt;People like it&lt;/h3&gt;
&lt;p&gt;Ellane wrote a lovely review &lt;a href=&quot;https://ellanew.com/2025/12/15/ptpl-186-johnny-decimal-tasks-missing-piece-obsidian-widgets&quot;&gt;over on her blog&lt;/a&gt;. And &lt;a href=&quot;https://discord.com/channels/822215537589354566/1440957194937045013/1452801191602946188&quot;&gt;on Discord&lt;/a&gt;, Chris wrote:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ve taught GTD courses for 20+ years, teach Project Management to seniors studying CS and information systems, and consider myself pretty dialed in on productivity methods and tools. I loved the course!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You&amp;#39;ll find other nice comments in that Discord channel. (You need to &lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;join the server&lt;/a&gt; first.)&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-madeup&quot;&gt;
&lt;p&gt;I made that number up. But, right? There are a &lt;em&gt;lot&lt;/em&gt;. &lt;a href=&quot;#user-content-fnref-madeup&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>14.03 The Workshop</title><link>https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.03-workshop/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.03-workshop/</guid><description>The workshop is the best way to build your own Johnny.Decimal system.</description><pubDate>Fri, 21 Nov 2025 14:03:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-johnnydecimal-workshop&quot;&gt;The Johnny.Decimal Workshop&lt;/h1&gt;
&lt;p&gt;If you want to build your own Johnny.Decimal system, the fastest way with the best result is with our 5-hour+ video workshop. There, we&amp;#39;ll guide you through the process step-by-step.&lt;/p&gt;
&lt;h3 id=&quot;how-does-it-work&quot;&gt;How does it work?&lt;/h3&gt;
&lt;p&gt;We called this a &amp;#39;workshop&amp;#39; and not a &amp;#39;course&amp;#39; because it isn&amp;#39;t just me telling you what to do.&lt;/p&gt;
&lt;p&gt;Instead, &lt;strong&gt;Lucy is our on-camera student and you&amp;#39;ll work with her as she builds her system&lt;/strong&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-prerecorded&quot; id=&quot;user-content-fnref-prerecorded&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Lucy&amp;#39;s progress and questions are genuine. So as you have questions, we hope that she asks them on your behalf.&lt;/p&gt;
&lt;p&gt;Over the five carefully-structured areas of the workshop you&amp;#39;ll define the scope of your new system, perform a comprehensive discovery exercise, shape it, create it, and finally build yourself a JDex so you can never lose anything again.&lt;/p&gt;
&lt;p&gt;You&amp;#39;ll see me explaining concepts at my whiteboard, or the two of us working on her system together. We tried to ensure there&amp;#39;s a variety of videos so you won&amp;#39;t get bored.&lt;/p&gt;
&lt;p&gt;If you need any help, just ask on the forum or Discord. I answer every question personally. By the end, you&amp;#39;ll be the most organised person you know.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.02A-JDHQ-JDU--0-light-cx-1000x1489.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.02A-JDHQ-JDU--0-dark-cx-1000x1489.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.02A-JDHQ-JDU--0-light-cx-1000x1489.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.02A-JDHQ-JDU--0-dark-cx-1000x1489.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the workshop. Johnny &amp;#38; Lucy are in front of a wall of brightly-coloured Post-it notes.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/14.02A-JDHQ-JDU--0-light-cx-1000x1489.png&quot; width=&quot;1000&quot; height=&quot;1489&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;We spent months planning and recording the workshop. It&amp;#39;s meticulously designed, with regular checkpoints so you can&amp;#39;t go wrong. And it&amp;#39;s backed up by the 20,000-word workbook, which we reference throughout.&lt;/p&gt;
&lt;p&gt;People love it. Devesh said that &amp;#39;&lt;span class=&quot;highlight&quot;&gt;your workshop is another level&lt;/span&gt;&amp;#39;, Ari said that &amp;#39;&lt;span class=&quot;highlight&quot;&gt;implementing this process will significantly reduce the stress I have about my digital mess&lt;/span&gt;&amp;#39;, and Marcus said that &amp;#39;&lt;span class=&quot;highlight&quot;&gt;the speed and ease of finding what I&amp;#39;m looking for has been totally energizing&lt;/span&gt;&amp;#39;. There&amp;#39;s more &lt;a href=&quot;https://jdhq.johnnydecimal.com/#testimonials&quot;&gt;at JDHQ&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;how-much-is-it&quot;&gt;How much is it?&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s part of &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;Johnny.Decimal University&lt;/a&gt;, so you get the workshop, our &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;task and project management&lt;/a&gt; course, the &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin System&lt;/a&gt;, and more, for just &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;. No subscriptions, with updates for life.&lt;/p&gt;
&lt;p class=&quot;ppp-notice ppp-only&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;

&lt;div style=&quot;margin: 0 auto; width: fit-content;&quot;&gt;&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=jdu&quot; data-umami-event=&quot;1402-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&quot;human-guaranteed&quot;&gt;Human, guaranteed&lt;/h3&gt;
&lt;p&gt;Lovingly crafted by two humans. No AI here.&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t like it, let me know within 14 days and you can have your money back. No problem.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-prerecorded&quot;&gt;
&lt;p&gt;Just in case it isn&amp;#39;t totally clear, this is all pre-recorded. You don&amp;#39;t need to &amp;#39;turn up&amp;#39; at a time, and you&amp;#39;re not literally working alongside Lucy. (People have asked.) &lt;a href=&quot;#user-content-fnref-prerecorded&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0169 An invoice disappears</title><link>https://johnnydecimal.com/22.00.0169/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0169/</guid><description>Well that&apos;s weird. At least I noticed. Here&apos;s how I&apos;ll make sure it doesn&apos;t happen again.</description><pubDate>Wed, 19 Nov 2025 00:49:03 GMT</pubDate><content:encoded>&lt;h1 id=&quot;an-invoice-disappears&quot;&gt;An invoice disappears&lt;/h1&gt;
&lt;p&gt;Well this is weird. I just lost an invoice, as in one that I was &lt;em&gt;sure&lt;/em&gt; I had raised a couple of weeks ago. Here&amp;#39;s how I discovered it, and what I&amp;#39;ll do to make sure it doesn&amp;#39;t happen again.&lt;/p&gt;
&lt;h3 id=&quot;the-invoice&quot;&gt;The invoice&lt;/h3&gt;
&lt;p&gt;I don&amp;#39;t raise many invoices manually. This one was to a friend, whose domain name I manage. It&amp;#39;s a fancy expensive domain so, when it renews, my company bills his company for it.&lt;/p&gt;
&lt;p&gt;I raised it the other week. I remember doing it. And yet now: no trace. A puzzle.&lt;/p&gt;
&lt;h3 id=&quot;discovering-its-loss&quot;&gt;Discovering its loss&lt;/h3&gt;
&lt;p&gt;I know I&amp;#39;m not going entirely mad because, in reviewing my Small Business category &lt;code&gt;13 Money earned, spent, saved, &amp;amp; owed&lt;/code&gt; this morning, I saw a task due next week:&lt;/p&gt;
&lt;p&gt;▷ &lt;strong&gt;Check that [name] has paid his invoice&lt;/strong&gt;&lt;br&gt;
▷ &lt;em&gt;Due: 25 Nov&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;– and I thought to have a quick look. So I&amp;#39;d done some things right:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Set a quick reminder to myself, in a trusted place.&lt;/li&gt;
&lt;li&gt;Made sure that I actually saw that reminder, by reviewing my system regularly.&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ll show you how I do this in the upcoming series &amp;#39;Task and Project Management using the Johnny.Decimal system&amp;#39;. Will be released on &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; in the next couple of weeks.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;the-vanishing-act&quot;&gt;The vanishing act&lt;/h3&gt;
&lt;p&gt;I went to look for this invoice in the only place that it could possibly exist: my &lt;a href=&quot;https://stripe.com&quot;&gt;Stripe&lt;/a&gt; console. It just isn&amp;#39;t there. No trace.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m deeply confused by this, but whatever. No point dwelling; let&amp;#39;s just make sure it doesn&amp;#39;t happen again.&lt;/p&gt;
&lt;h3 id=&quot;deliberate-record-keeping&quot;&gt;Deliberate record-keeping&lt;/h3&gt;
&lt;p&gt;Last time, I raised the invoice in Stripe and that was it. Other than leaving myself the follow-up task, I didn&amp;#39;t record its existence anywhere else.&lt;/p&gt;
&lt;p&gt;If only I had a predefined ID for this sort of thing. Oh wait, is that &lt;code&gt;13.23 Invoices &amp;amp; sales for your work&lt;/code&gt; at the door? Oh, come in old friend.&lt;/p&gt;
&lt;h3 id=&quot;update-found-it&quot;&gt;Update: found it!&lt;/h3&gt;
&lt;p&gt;Talk about real-time updates. Gripping stuff.&lt;/p&gt;
&lt;p&gt;So there &lt;em&gt;isn&amp;#39;t&lt;/em&gt; only one place that this could possibly exist. There are two: the other being my &lt;a href=&quot;https://xero.com&quot;&gt;Xero&lt;/a&gt; account.&lt;/p&gt;
&lt;p&gt;This makes our solution more interesting. Why did I choose Xero over Stripe in this instance?&lt;sup&gt;&lt;a href=&quot;#user-content-fn-australian&quot; id=&quot;user-content-fnref-australian&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; How would I know which to choose in the future?&lt;/p&gt;
&lt;h3 id=&quot;solution-new-ops-manual&quot;&gt;Solution: new ops manual&lt;/h3&gt;
&lt;p&gt;This is a textbook ops manual. Next time I need to raise an invoice, I need to be following a process. Last time, I just made it up on the fly.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s what my new &lt;code&gt;13.23+OPS1 Raise an invoice&lt;/code&gt; says:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Raise all invoices directly in Xero, because this integrates with your accounting system.&lt;/li&gt;
&lt;li&gt;Raise the invoice, and create a note at &lt;a href=&quot;https://jdhq.johnnydecimal.com/sbs/13.23/&quot;&gt;&lt;code&gt;13.23&lt;/code&gt;&lt;/a&gt; with its number and a link.&lt;/li&gt;
&lt;li&gt;Create a new customer record at &lt;a href=&quot;https://jdhq.johnnydecimal.com/sbs/33.11/&quot;&gt;&lt;code&gt;33.11&lt;/code&gt;&lt;/a&gt; and from there, link to &lt;code&gt;13.23&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That&amp;#39;s it. Three easy steps; but now they&amp;#39;re unambiguous, and I won&amp;#39;t make the same silly mistake again.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-australian&quot;&gt;
&lt;p&gt;I&amp;#39;ll tell you why. Because this invoice has nothing to do with Johnny.Decimal, really. In my mind, that&amp;#39;s what the Stripe/Xero split is. Stripe was JD stuff, Xero was more fundamental company stuff. Logically, I now understand, this makes no sense. &lt;a href=&quot;#user-content-fnref-australian&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0168 How to remember the Markdown link syntax</title><link>https://johnnydecimal.com/22.00.0168/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0168/</guid><description>Square or regular brackets? Link first or title first? It took me ages to remember: here&apos;s a handy memory tip.</description><pubDate>Sat, 15 Nov 2025 02:16:10 GMT</pubDate><content:encoded>&lt;h1 id=&quot;how-to-remember-the-markdown-link-syntax&quot;&gt;How to remember the Markdown link syntax&lt;/h1&gt;
&lt;p&gt;In &lt;a href=&quot;https://daringfireball.net/projects/markdown/&quot;&gt;Markdown&lt;/a&gt;, a universally-handy text formatting language, you create a link like this:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;[Title of link](https://…)&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Easy enough, but there&amp;#39;s a bunch to remember there. Which comes first, the title or the link? And which is in square brackets, which in regular brackets?&lt;/p&gt;
&lt;p&gt;Get any of those things wrong, and your link won&amp;#39;t work.&lt;/p&gt;
&lt;h3 id=&quot;name-and-address-please-sir&quot;&gt;&amp;#39;Name and address please, sir&amp;#39;&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s do the stuff inside the brackets first. When you get pulled over by the cops you&amp;#39;d never be asked for your &amp;#39;address and name&amp;#39;, would you? Same here.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-innocent&quot; id=&quot;user-content-fnref-innocent&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Name and address&lt;/strong&gt; in that order.&lt;/p&gt;
&lt;h3 id=&quot;addresses-contain-numbers&quot;&gt;Addresses contain numbers&lt;/h3&gt;
&lt;p&gt;Those regular brackets &lt;code&gt;()&lt;/code&gt; live on the keys &lt;code&gt;9&lt;/code&gt; and &lt;code&gt;0&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What contains numbers? An address&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;What doesn&amp;#39;t? Your name.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-andre3000&quot; id=&quot;user-content-fnref-andre3000&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;thats-it&quot;&gt;That&amp;#39;s it&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;[Johnny](90 Main St)&lt;/code&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-innocent&quot;&gt;
&lt;p&gt;Yeah, yeah, you&amp;#39;re innocent. Save it for the judge. &lt;a href=&quot;#user-content-fnref-innocent&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-andre3000&quot;&gt;
&lt;p&gt;Unless you&amp;#39;re &lt;a href=&quot;https://en.wikipedia.org/wiki/Andr%C3%A9_3000&quot;&gt;this guy&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-andre3000&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0167 An(other) advantage of the creative pattern</title><link>https://johnnydecimal.com/22.00.0167/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0167/</guid><description>As we approach 100 IDs in our creative system, the pattern keeps proving itself. Here&apos;s another nice advantage of the system.</description><pubDate>Fri, 14 Nov 2025 00:43:29 GMT</pubDate><content:encoded>&lt;h1 id=&quot;another-advantage-of-the-creative-pattern&quot;&gt;An(other) advantage of the creative pattern&lt;/h1&gt;
&lt;p&gt;Our &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;creative system&lt;/a&gt; here at JDHQ is in heavy use with production of the upcoming &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; series &amp;#39;task and project management&amp;#39;, seeing me create ID &lt;code&gt;50092&lt;/code&gt; yesterday. We&amp;#39;ll crack that hundred before long.&lt;/p&gt;
&lt;p&gt;Previous creative projects -- recording the workshop, say -- tended to sit in their own isolated world. They take up a bunch of disk space, and if you&amp;#39;re on a laptop you don&amp;#39;t want to (or simply can&amp;#39;t) carry those files around forever.&lt;/p&gt;
&lt;p&gt;You produce a series, upload the final videos, and archive the original files. So it feels simpler to have all of those files in one folder, and you can just move that folder around.&lt;/p&gt;
&lt;p&gt;This is a problem, though, if you ever want to re-edit those videos. To correct a mistake, say. Now you have to get the vidoes off &amp;#39;the archive drive&amp;#39; and put them back either &lt;em&gt;exactly&lt;/em&gt; where they were, which involves you remembering exactly where that was, or you have to re-point your video editing software to their new location. &lt;a href=&quot;https://www.blackmagicdesign.com/products/davinciresolve/&quot;&gt;DaVinci Resolve&lt;/a&gt; calls this &amp;#39;re-linking the media&amp;#39;.&lt;/p&gt;
&lt;p&gt;Neither of us are video editing professionals. This is an exercise fraught with danger that often results in us looking at this dreaded screen. &lt;a href=&quot;https://kagi.com/search?q=relink+media+davinci+resolve+site%3Ablackmagicdesign.com&amp;r=au&amp;sh=ZwVf-4o74LOS-cQZeX2yiw&quot;&gt;We&amp;#39;re not the only ones&lt;/a&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of a video timeline. Most of the icons representing video frames are red and have a question mark icon. Not good.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0167A-Davinci-unlinked--0-cx-698x522.png&quot; width=&quot;698&quot; height=&quot;522&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0167A. DaVinci Resolve&amp;#39;s dreaded &amp;#39;unlinked media&amp;#39; icon.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;what-if-the-files-never-moved&quot;&gt;What if the files never moved?&lt;/h3&gt;
&lt;p&gt;With the creative pattern, the path to the file &lt;em&gt;never changes&lt;/em&gt;. It&amp;#39;s always (truncated for simplicity)&lt;br&gt;
&lt;code&gt;D25/50-59/50082/file.mov&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;What changes is whether the original video files are actually at that location on disk. On my laptop, I&amp;#39;ve told &lt;a href=&quot;https://syncthing.net&quot;&gt;Syncthing&lt;/a&gt;, which &lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;keeps our files in sync&lt;/a&gt; across the world, to remove those files. Lucy, our editor, still holds a copy.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll eventually remove all of these files from both laptops. We say that I&amp;#39;m &amp;#39;dehydrating&amp;#39; those folders. At this point, launching DaVinci will look like the screenshot above. But the only thing I&amp;#39;ll need to do if Lucy wants to edit a video is &amp;#39;rehydrate&amp;#39; those files, synchronising them across the network from our server in Melbourne.&lt;/p&gt;
&lt;p&gt;Nothing changed from DaVinci&amp;#39;s perspective. Nothing ever will. Bye bye, red timeline of confusion.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0166 Decimal Diary: Business links and food trucks</title><link>https://johnnydecimal.com/22.00.0166/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0166/</guid><description>Wednesday&apos;s blog posts will be guest appearances by Lucy from now. This week she tells us about researching links for the Small Business System.</description><pubDate>Wed, 12 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;decimal-diary-business-links-and-food-trucks&quot;&gt;Decimal Diary: Business links and food trucks&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Today&amp;#39;s blog is a guest post by Lucy.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Dear Decimal Diary,&lt;/p&gt;
&lt;p&gt;Yesterday I added a bunch of new resource links to several IDs in the &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business System&lt;/a&gt;. And one of them led me to start an imaginary food truck business.&lt;/p&gt;
&lt;h3 id=&quot;sensible-governmenty-links&quot;&gt;Sensible, governmenty links&lt;/h3&gt;
&lt;p&gt;Turns out there&amp;#39;s a lot of great small-business-related information out there. But it can be hard to find if you don&amp;#39;t know where to start (or have the time).&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; We originally planned to include a few curated links in most Small Business IDs. There aren&amp;#39;t many yet – I add new ones as I discover and vet them to check they&amp;#39;re reputable.&lt;/p&gt;
&lt;p&gt;Since we&amp;#39;re Australian they&amp;#39;re mostly from our Government or &amp;#39;sensible&amp;#39; government-adjacent organisations. But I do try to find things that are relevant no matter where a business is. For example, there&amp;#39;s links to some good general advice in:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;14.42 Technical cybersecurity&lt;/code&gt;, and&lt;/li&gt;
&lt;li&gt;&lt;code&gt;14.43 Behavioural cybersecurity&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;But if you need country-specific guidance, hopefully anything we find can help you search for similar advice from &lt;em&gt;your&lt;/em&gt; government.&lt;/p&gt;
&lt;p&gt;This may or may not be a useful feature, but we thought we&amp;#39;d give it a go and see if it evolves into anything.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-2&quot; id=&quot;user-content-fnref-2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; At the very least I&amp;#39;m learning heaps of stuff about running a small business that I didn&amp;#39;t know before.&lt;/p&gt;
&lt;h3 id=&quot;refining-search&quot;&gt;Refining search&lt;/h3&gt;
&lt;p&gt;At the same time I also try to think of new keywords for &lt;a href=&quot;https://jdhq.johnnydecimal.com/&quot;&gt;JDHQ&amp;#39;s&lt;/a&gt; search feature (remember you can just type &lt;code&gt;/&lt;/code&gt; to activate search).&lt;/p&gt;
&lt;p&gt;So if you&amp;#39;ve tried to find something in Small Business (or elsewhere) and search didn&amp;#39;t surface it, let us know. The words we use to describe something in Australian business might be different to yours. But it&amp;#39;s easy to add keywords that will help you find what you need.&lt;/p&gt;
&lt;p&gt;For example, we learned from a Decimal this week that it&amp;#39;s common to have an &amp;#39;&lt;a href=&quot;https://www.investopedia.com/terms/l/llc-operating-agreement.asp&quot;&gt;operating charter&lt;/a&gt;&amp;#39; in American business. So I added that to the examples list for &lt;code&gt;11.11 Structure &amp;amp; registrations&lt;/code&gt;. And now it appears in search.&lt;/p&gt;
&lt;h3 id=&quot;my-imaginary-food-truck&quot;&gt;My imaginary food truck&lt;/h3&gt;
&lt;p&gt;The first link I found for &lt;code&gt;11.12 Licences, permits, &amp;amp; accreditations&lt;/code&gt; is from the &lt;a href=&quot;https://ablis.business.gov.au/&quot;&gt;Australian Business Licence and Information Service (ABLIS)&lt;/a&gt;. ABLIS has a &lt;a href=&quot;https://ablis.business.gov.au/search/activity&quot;&gt;handy tool&lt;/a&gt; to research licences, regulations, council approvals, and compliance requirements for different businesses. So I thought I&amp;#39;d take it for a spin.&lt;/p&gt;
&lt;p&gt;I pretended I wanted to start a:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Simple food truck business (aka &amp;#39;mobile food van operation&amp;#39;),&lt;/li&gt;
&lt;li&gt;Located in central Canberra in the Australian Capital Territory,&lt;/li&gt;
&lt;li&gt;And I would operate as a sole trader.&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A cartoon that Lucy drew. It&apos;s a big red food truck with a &apos;Simple Joe&apos; sign. A stick figure is waiting to sell you $2 coffee (bargain!).&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0166A-SimpleJoe--0-cx-1000x737.png&quot; width=&quot;1000&quot; height=&quot;737&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0166A. Simple Joe.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I then answered a short series of questions about how I thought my business would run. And I got back this list of &lt;a href=&quot;https://ablis.business.gov.au/search/services/print?curl=H4sIAAAAAAAEAEVQu1LDMBD8GzdpdE9JhQsGGgqo8gPOxMyEgTjjBL6fRLcWjXe1t9pb6zC9T9%2fz%2bLYcTl%2fz7mNZjrvf6bxbLvM63U7LebhcX49jtZqGz%2fHpeT9cbw0OD9mH6f41SQ0zUUO32pAodM%2fasGoOXwlgHEUiJkUcSczJ4ppSxJkGKuI9h19ZoAOdw29Yn6KW1sjzklAbeTUw14I9%2bA2NHMVZH31flvM87tefeVj%2f6eMpJJNZY%2bwN1FKWGJG4wpSAFabMXjeWqbH780AQMGcOk7B6mMQoFTCpsVg5ObSSPHZrsq0EI1iIFCFemDZNcp9uJbNjQynah9IvbO0KQeNkqWu2hZQeIr0wWMU%2fkEUNw0Lngl6Fc0%2fs9QWvUU3kD4aRKC%2fAAgAA&quot;&gt;40 (!) things that I might need to consider&lt;/a&gt;. To anyone out there who has a business that involves any regulation, I tip my cap. I had no idea how much there was to know.&lt;/p&gt;
&lt;p&gt;I was just playing around and some of my results were more important than others, like safe food handling. But there&amp;#39;s so many other hangers on that might be relevant – there&amp;#39;s an entire code of practice just for having a &lt;a href=&quot;https://ablis.business.gov.au/service/act/movable-signs-code-of-practice/32050?bsId=6&quot;&gt;movable sign&lt;/a&gt;! But I think my favourite is the &lt;a href=&quot;https://ablis.business.gov.au/service/ag/workplace-and-telephone-on-hold-music-licence/39533?bsId=6&amp;locations=ACT&quot;&gt;Workplace and Telephone on Hold Music Licence&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Like many people, Johnny and I have pretend-talked about having a simple hospitality business.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-3&quot; id=&quot;user-content-fnref-3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; However, I reckon if more budding entrepreneurs went to a licencing site like ABLIS before committing money to their idea, they might find it quite sobering.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not saying don&amp;#39;t dream big dreams.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The world needs successful small business owners – you make daily life so much more interesting than big corporations.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Just try hard not to procrastinate reading all the tediously boring government regulatory information before taking out a big business loan on a food truck in Canberra. 😉&lt;/p&gt;
&lt;p&gt;From Lucy&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Of course everyone probably just uses AI now. But given its &lt;a href=&quot;https://www.afr.com/companies/professional-services/deloitte-to-refund-government-after-admitting-ai-errors-in-440k-report-20251005-p5n05p&quot;&gt;lacklustre citation skills&lt;/a&gt; I would personally always check what reference sites it&amp;#39;s using for serious business stuff. As a former science writer this is a habit I will never drop, sorry Chatty-G. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-2&quot;&gt;
&lt;p&gt;A library of recommendations for go-to, trustworthy small business sites from around the world? ¯\_(ツ)_/¯ &lt;a href=&quot;#user-content-fnref-2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-3&quot;&gt;
&lt;p&gt;Not seriously, we&amp;#39;re not qualified. But we often do back-of-the-envelope maths and logistics to see if something is food truck-able. At the moment though, we wish someone would start cheap filter-coffee-only carts in Australia, hint hint. You can even use our proposed business name – Simple Joe. &lt;a href=&quot;#user-content-fnref-3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0165 Find the hidden option</title><link>https://johnnydecimal.com/22.00.0165/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0165/</guid><description>Companies – particularly budget airlines – will try to stiff you. Here&apos;s what to look out for.</description><pubDate>Sat, 08 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;find-the-hidden-option&quot;&gt;Find the hidden option&lt;/h1&gt;
&lt;p&gt;I was trying to book a flight from Rome (FCO) to Bristol (BRS) yesterday. That&amp;#39;s where we&amp;#39;ll be at Christmas: my sister lives there. Lovely city, worth a visit.&lt;/p&gt;
&lt;p&gt;easyJet flies the route, which is handy. Their advertised fare is €70. Not bad. So 2×€70 is about AU$250. Bearable. Within our budget.&lt;/p&gt;
&lt;p&gt;Not so fast, of course. We&amp;#39;ll need to upgrade our baggage as easyJet&amp;#39;s default allowance is basically a bag of crisps. This is the first screen that you see after adding the base flights to your cart.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;easyJet&apos;s &apos;bundles&apos;, which I explain below.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0165A-easyJet-bundles--0-cx-897x583.png&quot; width=&quot;897&quot; height=&quot;583&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.165A. easyJet&amp;#39;s bundles.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;That&amp;#39;s … not as cheap any more. The middle column is what we need: it&amp;#39;s the addition of the &amp;#39;large cabin bag&amp;#39; I&amp;#39;m looking for. That&amp;#39;s &lt;em&gt;another&lt;/em&gt; €70 per person.&lt;/p&gt;
&lt;p&gt;And we only need one of these upgrades: we can fit our larger stuff in Lucy&amp;#39;s bag, and mine fits the &amp;#39;small under seat cabin bag&amp;#39; constraints. But this screen is all-or-nothing. Two, or none. Double the cost.&lt;/p&gt;
&lt;p&gt;AU$500 is no longer bearable. That&amp;#39;s &lt;em&gt;wonder-if-we-can-get-the-train-instead&lt;/em&gt; money, or the dreaded &lt;em&gt;what-if-we-flew-to-Heathrow-and-caught-the-bus&lt;/em&gt; option.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-train&quot; id=&quot;user-content-fnref-train&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;We started looking at options. And then I thought…&lt;/p&gt;
&lt;h3 id=&quot;always-look-for-the-trick&quot;&gt;Always look for the trick&lt;/h3&gt;
&lt;p&gt;These companies employ people whose job it is to design these &amp;#39;dark patterns&amp;#39;. Be smarter than them.&lt;/p&gt;
&lt;p&gt;I selected that leftmost column, &amp;#39;get light&amp;#39;. No extras. And lo-and-behold, what happens in a handful of screens?&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing a single bag selection option for €42!&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0165B-easyJet-bags--0-cx-661x610.png&quot; width=&quot;661&quot; height=&quot;610&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0165B. easyJet&amp;#39;s baggage options.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Well &lt;em&gt;he-llo there&lt;/em&gt;, an option to add a bag to a single passenger for a mere €42! That&amp;#39;s €100 less than what we were initially presented. A massive difference to us.&lt;/p&gt;
&lt;p&gt;This sort of thing is really common. But if you see the first option and think, &lt;em&gt;that should be illegal!&lt;/em&gt; -- well maybe it is. Maybe you just have to find the hidden option. Always look for it.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-train&quot;&gt;
&lt;p&gt;Normally I&amp;#39;d love the option of taking the train from Rome through Italy, France, and under the Channel, but the week before Christmas? Nah, let&amp;#39;s not mess about. &lt;a href=&quot;#user-content-fnref-train&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0164 🎁 Holiday season 2025: Buy one, gift one</title><link>https://johnnydecimal.com/22.00.0164/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0164/</guid><description>Give the gift of organised this year.</description><pubDate>Fri, 07 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;-holiday-season-2025-buy-one-gift-one&quot;&gt;🎁 Holiday season 2025: Buy one, gift one&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This offer has now ended.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This holiday season, give the gift of organised. Buy anything from &lt;a href=&quot;https://jdhq.johnnydecimal.com/#pricing&quot;&gt;JDHQ&lt;/a&gt;, and we&amp;#39;ll gift the same again.&lt;/p&gt;
&lt;p&gt;Just sign up for anything. Your welcome email will include a link: fill in the form, tell us who it&amp;#39;s for, when you want them to receive it, and add a message.&lt;/p&gt;
&lt;p&gt;Whatever you signed up for, we&amp;#39;ll send them an invitation for the same. Simple.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=las&quot;&gt;Life Admin System&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=jdu&quot;&gt;Johnny.Decimal University&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=sbs&quot;&gt;Small Business System&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;or the bundle, or Lifetime membership.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;im-already-a-member-what-about-upgrades&quot;&gt;I&amp;#39;m already a member, what about upgrades?&lt;/h3&gt;
&lt;p&gt;It won&amp;#39;t be automatic (I&amp;#39;d have to build it; too hard) but if you upgrade your account while this offer is on, just &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;drop me an email&lt;/a&gt; and I&amp;#39;ll look after you.&lt;/p&gt;
&lt;h3 id=&quot;the-small-print&quot;&gt;The small print&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Offer ends Wednesday &lt;strong&gt;31st December 2025&lt;/strong&gt;.
&lt;ul&gt;
&lt;li&gt;I.e. purchases made after this date will not receive the gift link.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Update 2025-12-02: I ended it early. Frankly, it wasn&amp;#39;t that popular.&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Final date for redeeming gifts is &lt;strong&gt;Monday 5th January 2026&lt;/strong&gt;.
&lt;ul&gt;
&lt;li&gt;I.e. this is the last date that you can complete the online form.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Last date that I will send a gift link to a recipient is &lt;strong&gt;Saturday 31st January 2026&lt;/strong&gt;.
&lt;ul&gt;
&lt;li&gt;I.e. if you have a friend whose birthday is 1st February, that&amp;#39;s too late.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0163 /tmp is bad</title><link>https://johnnydecimal.com/22.00.0163/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0163/</guid><description>Storing things in &apos;temporary&apos; folders is (usually) quick, lazy, and wrong. Don&apos;t do it.</description><pubDate>Thu, 06 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;tmp-is-bad&quot;&gt;/tmp is bad&lt;/h1&gt;
&lt;p&gt;In recording the upcoming (soon, I promise) &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; series on task and project management, I&amp;#39;m switching out my real Things database with a test database so I can show some simple examples rather than all of my own actual stuff.&lt;/p&gt;
&lt;p&gt;This is easy enough: just move &lt;a href=&quot;https://culturedcode.com/things/support/articles/2982272/#gqevu&quot;&gt;a file&lt;/a&gt; from one place to another place. I&amp;#39;m using the &amp;#39;&lt;a href=&quot;https://www.youtube.com/watch?v=BzJ8j0Q_Ed4&amp;t=338s&quot;&gt;leave Finder windows permanently open in a known place&lt;/a&gt;&amp;#39; trick to great effect: I have a new Finder window (&lt;em&gt;not&lt;/em&gt; the usual one I have open in that video) with 2× tabs open specifically for this.&lt;/p&gt;
&lt;p&gt;One tab is that &lt;code&gt;~/Library/…&lt;/code&gt; location as per the Things article. That&amp;#39;s my live Things database. And the other is &lt;em&gt;some other location&lt;/em&gt; where I&amp;#39;m storing copies of that database as I swap in my real file out for the demo.&lt;/p&gt;
&lt;h3 id=&quot;my-nemesis&quot;&gt;My nemesis&lt;/h3&gt;
&lt;p&gt;So I rebooted, and that Finder window went away, and I had to set it up again.&lt;/p&gt;
&lt;p&gt;Aaannnnddd … I didn&amp;#39;t know where that second folder was. The one with the demo databases. There it is again, my nemesis: &lt;em&gt;I don&amp;#39;t know where a thing is&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Fortunately you &lt;em&gt;can&lt;/em&gt; search for stuff, and you can search by file type, and in macOS this is quite intuitive.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0163A-Finder-search-Things--0-light-cx-542x527.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0163A-Finder-search-Things--0-dark-cx-542x527.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0163A-Finder-search-Things--0-light-cx-542x527.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0163A-Finder-search-Things--0-dark-cx-542x527.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing the search explained in the next paragraph.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0163A-Finder-search-Things--0-light-cx-542x527.png&quot; width=&quot;542&quot; height=&quot;527&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;That search field in your Finder window understands file &lt;strong&gt;types&lt;/strong&gt;. So here I&amp;#39;m searching for &lt;code&gt;Things Database&lt;/code&gt;, and when I select that item it shows me only those items. This quickly revealed the location I&amp;#39;d chosen, a few weeks ago.&lt;/p&gt;
&lt;h3 id=&quot;tmp&quot;&gt;&lt;code&gt;~/tmp&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;I have a folder called &lt;code&gt;tmp (not backed up)&lt;/code&gt; which is exactly what it sounds like. I use it for stuff I know you won&amp;#39;t need forever, and it&amp;#39;s excluded from backups so I don&amp;#39;t send gigs across the wire unnecessarily.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s where I&amp;#39;d put this stuff. 🤦🏼‍♂️ Why? I don&amp;#39;t know. A quick, lazy decision.&lt;/p&gt;
&lt;h3 id=&quot;where-should-it-be&quot;&gt;Where should it be?&lt;/h3&gt;
&lt;p&gt;Where it belongs: in the folder for this project, which is &lt;code&gt;21.41&lt;/code&gt;. And a note in my JDex so that if I search there, it&amp;#39;ll surface.&lt;/p&gt;
&lt;p&gt;Beware of &amp;#39;temporary&amp;#39; folders of any nature. Your Desktop and Downloads are temporary folders. Don&amp;#39;t store things there. You&amp;#39;ll lose them, or you&amp;#39;ll be frustrated as you have to look for them.&lt;/p&gt;
&lt;p&gt;Doing the right thing takes an extra ten seconds.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0162 Decimal Diary: Not-Kondo and deleting Canva</title><link>https://johnnydecimal.com/22.00.0162/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0162/</guid><description>Wednesday&apos;s blog posts will be guest appearances by Lucy from now. This week she tells us about deleting stuff.</description><pubDate>Wed, 05 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;decimal-diary-not-kondo-and-deleting-canva&quot;&gt;Decimal Diary: Not-Kondo and deleting Canva&lt;/h1&gt;
&lt;p&gt;Dear Decimal Diary,&lt;/p&gt;
&lt;p&gt;The other day we had breakfast in a cafe with a TV showing an organise-your-house type of program.&lt;/p&gt;
&lt;p&gt;This is right up my alley. Ten years ago Johnny gave me a book by a Japanese author called &lt;a href=&quot;https://www.goodreads.com/book/show/30231806-goodbye-things&quot;&gt;Goodbye, Things&lt;/a&gt; that had a big impact on both of us. So given that we&amp;#39;re in Japan I was excited to see the end of the show.&lt;/p&gt;
&lt;p&gt;When the &amp;#39;experts&amp;#39; were finished the residents pulled lots of zany shocked delighted faces. But I was disappointed. They didn&amp;#39;t throw anything out! It was more like a &lt;a href=&quot;https://en.wikipedia.org/wiki/Sliding_puzzle&quot;&gt;sliding puzzle&lt;/a&gt; where they just moved stuff around.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t see the point of a re-organisation project if you&amp;#39;re also not going to get rid of anything. I&amp;#39;m too addicted to that fresh-start feeling.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-2&quot; id=&quot;user-content-fnref-2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;canva-stress&quot;&gt;Canva stress&lt;/h3&gt;
&lt;p&gt;This was my state of mind as I began a long-avoided &lt;a href=&quot;https://johnnydecimal.com/22.00.0034/#p3-should-donice-to-do&quot;&gt;P3 task&lt;/a&gt; labelled &amp;#39;Decimalise Canva properly&amp;#39;. There was more than 2 years&amp;#39; worth of work-related mess in there. Some files had IDs, most didn&amp;#39;t. And the IDs pre-dated the &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business System&lt;/a&gt; that we use now.&lt;/p&gt;
&lt;p&gt;I really like making things in &lt;a href=&quot;https://www.canva.com&quot;&gt;Canva&lt;/a&gt;. It&amp;#39;s easy and fun. But I don&amp;#39;t really like &lt;em&gt;being&lt;/em&gt; in Canva, all the buttons make me dizzy. So about 10 minutes later I thought &amp;quot;bugger this&amp;quot; and deleted everything in the account.&lt;/p&gt;
&lt;h3 id=&quot;canva-calm&quot;&gt;Canva calm&lt;/h3&gt;
&lt;p&gt;All that&amp;#39;s in there now is an empty area folder called &lt;code&gt;50-59 Portfolio of creative outputs&lt;/code&gt;, ala &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;the creative pattern&lt;/a&gt;. Ready and waiting to hold new folders labelled with IDs for future creative jobs.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Lucy&apos;s Canva window. It is, as described above, mostly empty.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0162A-Canva--0-cx-1512x945.png&quot; width=&quot;1512&quot; height=&quot;945&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0162A. Canva, Kondo&amp;#39;d.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I &lt;em&gt;could&lt;/em&gt; have spent all day re-naming old files and creating links in our current &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt; for them. But I was honest with myself and knew I&amp;#39;d never actually re-use those files again. And so I purged. It felt great.&lt;/p&gt;
&lt;h3 id=&quot;procreate-refresh&quot;&gt;Procreate refresh&lt;/h3&gt;
&lt;p&gt;This inspired me to do some organising and tidying in the &lt;a href=&quot;https://procreate.com&quot;&gt;Procreate&lt;/a&gt; app on my iPad.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Lucy&apos;s Procreate home screen. Lots of stacks of images.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0162B-Procreate-before--0-cx-1180x820.png&quot; width=&quot;1180&quot; height=&quot;820&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0162B. Procreate, neater stacks of similar items.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Again, I deleted a lot of old stuff (freeing up at least 2GB of storage). I grouped existing files into logical &amp;#39;stacks&amp;#39; of similar work. I made filenames clearer and added IDs where there were none. And I&amp;#39;ve promised myself that when I start a new creative job in the future, it will be labelled with its ID from &lt;code&gt;50-59&lt;/code&gt; (&lt;a href=&quot;https://en.wikipedia.org/wiki/Pinky_swear&quot;&gt;pinky swear&lt;/a&gt;).&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Lucy&apos;s Procreate screen. It shows 4 items, neatly labelled with JD IDs.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0162C-Procreate-after--0-cx-1180x356.png&quot; width=&quot;1180&quot; height=&quot;356&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0162C. Procreate, files with IDs.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;It&amp;#39;s far from perfect, but it&amp;#39;s a lot better. I tried to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Be realistic and make an improvement in the time I had,&lt;/li&gt;
&lt;li&gt;Get some &amp;#39;comfortable awareness&amp;#39;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-3&quot; id=&quot;user-content-fnref-3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; of what&amp;#39;s there and could be re-used,&lt;/li&gt;
&lt;li&gt;Give myself a bit of that fresh-start feeling.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I know I can&amp;#39;t delete all my old files because that would be madness. But I do think it&amp;#39;s good to delete &lt;em&gt;some&lt;/em&gt; files on the reg. It feels healthy. And I think that tiny Japanese apartment would have looked way better if they&amp;#39;d had a proper purge. So I&amp;#39;m going to keeping poking around my digital life, neatening and deleting as I go.&lt;/p&gt;
&lt;h3 id=&quot;hot-tip-circle-masks&quot;&gt;Hot tip: circle masks&lt;/h3&gt;
&lt;p&gt;I just learned how to do this – if you&amp;#39;ve ever wanted to crop a regular photo into a fancy circle, you can do this really easily in Canva:&lt;sup&gt;&lt;a href=&quot;#user-content-fn-4&quot; id=&quot;user-content-fnref-4&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Upload your photo in to the &amp;#39;Uploads&amp;#39; area,&lt;/li&gt;
&lt;li&gt;Open a new blank canvas in the dimensions you want,&lt;/li&gt;
&lt;li&gt;In the &amp;#39;Elements&amp;#39; tab search for &amp;#39;Frames&amp;#39;,&lt;/li&gt;
&lt;li&gt;Find the circle and drag it on to your canvas,&lt;/li&gt;
&lt;li&gt;Go to your Uploads and drag your photo onto the frame,&lt;/li&gt;
&lt;li&gt;It automatically crops it into a circle,&lt;/li&gt;
&lt;li&gt;Make it the size you want and hit download.&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of a duck, in a circle.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0162D-Duck--0-cx-300x300.png&quot; width=&quot;300&quot; height=&quot;300&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0162D. A duck in a circle.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Canva is fuuuun.&lt;/p&gt;
&lt;p&gt;From Lucy&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Which included a ridiculous amount of stuffed animals for an adult couple who live in a tiny apartment. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-2&quot;&gt;
&lt;p&gt;There&amp;#39;s even a video dedicated to this &lt;a href=&quot;https://jdhq.johnnydecimal.com/jdu/workshop/43.01-the-process/&quot;&gt;at &lt;code&gt;43&lt;/code&gt;&lt;/a&gt; in the &lt;a href=&quot;https://johnnydecimal.com/14.02&quot;&gt;Workshop&lt;/a&gt; where Johnny basically says &amp;quot;don&amp;#39;t bring a whole lot of old crap into your beautiful new zen house that you&amp;#39;ve just designed&amp;quot;. 😬 &lt;a href=&quot;#user-content-fnref-2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-3&quot;&gt;
&lt;p&gt;A concept that&amp;#39;s being explored in the new task and project management course we&amp;#39;re making for &lt;a href=&quot;https://johnnydecimal.com/14.02&quot;&gt;Johnny.Decimal University&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-4&quot;&gt;
&lt;p&gt;An account with basic features like this is free. There are paid tiers if you want more features or storage. &lt;a href=&quot;#user-content-fnref-4&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0161 Work log</title><link>https://johnnydecimal.com/22.00.0161/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0161/</guid><description>Leaving simple notes-to-self so you can pick up where you left off.</description><pubDate>Tue, 04 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;work-log&quot;&gt;Work log&lt;/h1&gt;
&lt;p&gt;I&amp;#39;m trying to get better at leaving myself a log so I know what I was up to when I come back to a piece of work.&lt;/p&gt;
&lt;p&gt;Whenever you do a thing and put it down unfinished, to return to later, you&amp;#39;re sure you&amp;#39;ll remember exactly what you were doing. But who knows, it might be days until you return to it.&lt;/p&gt;
&lt;p&gt;A simple work log in your JDex can help.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0161A-Obsidian-0-light-cx-1690x1254.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0161A-Obsidian-0-dark-cx-1690x1254.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0161A-Obsidian-0-light-cx-1690x1254.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0161A-Obsidian-0-dark-cx-1690x1254.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Obsidian. My work log for this entry tells me what I did, and reminds me what I need to do next. It&apos;s a simple bulleted list.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0161A-Obsidian-0-light-cx-1690x1254.png&quot; width=&quot;845&quot; height=&quot;627&quot;&gt;  &lt;/picture&gt; 
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0160 An anti-distraction trick</title><link>https://johnnydecimal.com/22.00.0160/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0160/</guid><description>A quick trick to reveal your own bad habits. Shame yourself in to change!</description><pubDate>Mon, 03 Nov 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;an-anti-distraction-trick&quot;&gt;An anti-distraction trick&lt;/h1&gt;
&lt;p&gt;I fall in to the YouTube or Reddit rabbit-holes sometimes. Not that they&amp;#39;re all bad all the time: I love watching a &lt;a href=&quot;https://www.youtube.com/watch?v=ByrKdwQMGYc&quot;&gt;good music video&lt;/a&gt; with my headphones in. (That track is slow to start but seriously: watch it all the way. I dare you not to love it.)&lt;/p&gt;
&lt;p&gt;But being sucked in to Shorts? Lazy-scrolling the Reddit feed? I know that&amp;#39;s not how I want to spend my time.&lt;/p&gt;
&lt;p&gt;Well it turns out all of these things leave a trace, and you can use that trace to reveal your bad habits. I find this confronting. It causes me to change.&lt;/p&gt;
&lt;p&gt;The trick is easy: just open your browser history, and search for the site you don&amp;#39;t love.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0160A-Safari-history--0-light-cx-2012x1348.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0160A-Safari-history--0-dark-cx-2012x1348.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0160A-Safari-history--0-light-cx-2012x1348.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0160A-Safari-history--0-dark-cx-2012x1348.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Safari&apos;s history view, with &apos;YouTube&apos; as the search revealing 571 items.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0160A-Safari-history--0-light-cx-2012x1348.png&quot; width=&quot;1006&quot; height=&quot;674&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0160A. War on Drugs and chickens. Pretty standard.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;In Safari, hit &lt;strong&gt;Command+Y&lt;/strong&gt; to bring up your history, then type in the search field. Here, I have 571 hits for YouTube. That&amp;#39;s okay: most of them are music videos.&lt;/p&gt;
&lt;p&gt;But when I did this for Reddit last week, well … shame. So shameful, I deleted them. &lt;strong&gt;Command+A&lt;/strong&gt; to select all, then &lt;strong&gt;Delete&lt;/strong&gt;. So I can&amp;#39;t show them to you.&lt;/p&gt;
&lt;p&gt;This is &lt;em&gt;particularly&lt;/em&gt; revealing for YouTube Shorts, each one of which leaves a record. I&amp;#39;ve only binged there once, because seeing that record later was honestly enough for me to have never done it again.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s your life, scrolling away. Do something better.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0159 Deliberately</title><link>https://johnnydecimal.com/22.00.0159/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0159/</guid><description>Take inspiration from Japanese train drivers. Act deliberately.</description><pubDate>Fri, 31 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;deliberately&quot;&gt;Deliberately&lt;/h1&gt;
&lt;p&gt;We took the train from Morioka to Kitakami earlier today. Not some fancy Shinkansen: just a &lt;a href=&quot;https://en.wikipedia.org/wiki/701_series#701-1000_series&quot;&gt;two-car regional train&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-shinkansen&quot; id=&quot;user-content-fnref-shinkansen&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This allowed me to stand basically in the driver&amp;#39;s cab the entire way, which of course I did. I&amp;#39;d heard about the Japanese &amp;#39;&lt;a href=&quot;https://www.youtube.com/watch?v=9LmdUz3rOQU&quot;&gt;pointing and calling&lt;/a&gt;&amp;#39; behaviour but never seen it myself. The idea is that before every action, they point at the thing they&amp;#39;re about to do, say it out loud, then do it. This reduces mistakes.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://share.icloud.com/photos/0640RvvqJC9U81-YIeHvg0EkQ&quot;&gt;Here&amp;#39;s a video that I took&lt;/a&gt;, which iCloud tells me will work until the end of November. (If that no longer works, just see the previous YouTube link.)&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Doors locked&lt;/em&gt;. [00:27, points at orange light in the console.] &lt;em&gt;Scheduled departure time.&lt;/em&gt; [Points at iPad, just out of frame on the right, then at his timepiece, center.] &lt;em&gt;Other things checked.&lt;/em&gt; [Some more pointing.] And off we go.&lt;/p&gt;
&lt;p&gt;They do this pulling out of every station. Very deliberate, every time.&lt;/p&gt;
&lt;h3 id=&quot;coding-by-pencil&quot;&gt;Coding by pencil&lt;/h3&gt;
&lt;p&gt;Over the last week or so I&amp;#39;ve had Claude Code knock me up a proof of concept for the &lt;a href=&quot;https://johnnydecimal.com/22.00.0151/&quot;&gt;LLM-based file categorisation&lt;/a&gt; thing I&amp;#39;m working on. Then, as usual, I realised that I had no idea how this thing that I &amp;#39;&lt;a href=&quot;https://en.wikipedia.org/wiki/Vibe_coding&quot;&gt;vibe coded&lt;/a&gt;&amp;#39; worked, so I&amp;#39;m starting again.&lt;/p&gt;
&lt;p&gt;(I don&amp;#39;t consider this a waste of time. A &amp;#39;proof of concept&amp;#39; is just that. It did its job.)&lt;/p&gt;
&lt;p&gt;I started with a pencil and my notepad. I&amp;#39;m writing down what I want this thing to do. In what stages? Using what commands? I can already feel the difference: rather than just sitting down and bashing the keyboard, it feels like I&amp;#39;m pausing; pointing at the thing; saying it out loud.&lt;/p&gt;
&lt;p&gt;Doing it deliberately.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-shinkansen&quot;&gt;
&lt;p&gt;The Shinkansen does this route in 18 minutes. It must be one of the shortest station-to-stations on the network (once you get outside the major cities). Our train took about 50 minutes. We chose it. Deliberately. &lt;a href=&quot;#user-content-fnref-shinkansen&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0158 Personal Business</title><link>https://johnnydecimal.com/22.00.0158/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0158/</guid><description>A lovely editorial piece from Charles Broskoski at Are.na.</description><pubDate>Thu, 30 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;personal-business&quot;&gt;Personal Business&lt;/h1&gt;
&lt;p&gt;Charles Broskoski of the &lt;a href=&quot;https://are.na&quot;&gt;Are.na&lt;/a&gt; team posted a lovely article yesterday titled &lt;strong&gt;&lt;a href=&quot;https://www.are.na/editorial/personal-business&quot;&gt;Personal Business&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;quot;In You&amp;#39;ve Got Mail, Kathleen Kelly is positioned as virtuous but naive, a hopeless romantic stuck in the old way of doing things. But I agree with her, I think more businesses should be personal. In 1998, her proclamation could be seen as proto-nostalgia for a soon-to-be bygone time, but now that we&amp;#39;ve actually experienced the Joe Fox vision of the future, the line simply reads as solid business advice.&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;You should &lt;a href=&quot;https://www.are.na/editorial/personal-business&quot;&gt;read the whole thing&lt;/a&gt; (and then watch &lt;em&gt;&lt;a href=&quot;https://www.justwatch.com/us/movie/youve-got-mail&quot;&gt;You&amp;#39;ve Got Mail&lt;/a&gt;&lt;/em&gt;, which as it happens we did last year).&lt;/p&gt;
&lt;p&gt;This is the sort of business we&amp;#39;re trying to run. It feels slower. There are probably things we could do to grow more aggressively; frankly, to make more money. But whenever I think about those things, it just doesn&amp;#39;t &lt;a href=&quot;https://johnnydecimal.com/22.00.0124/&quot;&gt;feel like who I am&lt;/a&gt;. So I don&amp;#39;t do them.&lt;/p&gt;
&lt;p&gt;And then I realise that I quit my job two years ago because I didn&amp;#39;t enjoy it. So if I also end up not enjoying &lt;em&gt;this&lt;/em&gt; job, what would have been the point?&lt;/p&gt;
&lt;p&gt;So here we are. A personal business.&lt;/p&gt;
&lt;h3 id=&quot;arena&quot;&gt;&lt;a href=&quot;https://are.na&quot;&gt;Are.na&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;Lucy has had her eye on it for ages. Honestly, I&amp;#39;m not exactly sure what it is. But it looks cool and they sound like &lt;a href=&quot;https://www.are.na/about#team&quot;&gt;good people&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;She signed up this morning.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0157 Decimal Diary: Confronting mortality and messy passwords</title><link>https://johnnydecimal.com/22.00.0157/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0157/</guid><description>Wednesday&apos;s blog posts will be guest appearances by Lucy from now. This week she tells us about neatening up her life.</description><pubDate>Wed, 29 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;decimal-diary-confronting-mortality-and-messy-passwords&quot;&gt;Decimal Diary: Confronting mortality and messy passwords&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Today&amp;#39;s blog is a guest post by Lucy.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Dear Decimal Diary,&lt;/p&gt;
&lt;p&gt;In May, we left the country on a long trip and we&amp;#39;re not sure when we&amp;#39;ll return. And what if something bad happens and we &lt;em&gt;never&lt;/em&gt; return? We acknowledged that this is a possibility, which triggered a flurry of tedious (and confronting) personal admin.&lt;/p&gt;
&lt;h3 id=&quot;first-stop-write-a-will&quot;&gt;First stop, write a will&lt;/h3&gt;
&lt;p&gt;Neither of us had ever done this. I&amp;#39;ve had a task in my to-do app that I&amp;#39;ve ignored for the last 5 years. Ten years earlier I bought a will kit, ignored it, and threw it out when I moved house. The shame.&lt;/p&gt;
&lt;p&gt;Our life is pretty simple so we opted for an &lt;a href=&quot;https://auspost.com.au/shop/home-office/will-kits-legal-documents&quot;&gt;Australian will kit&lt;/a&gt;. We&amp;#39;ll do a proper lawyer version someday if we&amp;#39;re lucky enough to have chickens again.&lt;/p&gt;
&lt;p&gt;In my Johnny.Decimal system this is now stored in &lt;code&gt;33.16 Will &amp;amp; emergency&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; And the physical copy is in a secure lockbox.&lt;/p&gt;
&lt;p&gt;As we were doing this we realised we &lt;em&gt;also&lt;/em&gt; needed emergency digital recovery kits. These items are interlinked – our executor can&amp;#39;t do much if they can&amp;#39;t access the important stuff.&lt;/p&gt;
&lt;h3 id=&quot;second-stop-emergency-digital-recovery-kit&quot;&gt;Second stop, emergency digital recovery kit&lt;/h3&gt;
&lt;p&gt;This ended up being a document that outlines our most important accounts – like a map of our online lives (but &lt;em&gt;without&lt;/em&gt; logins/passwords). There was a bit of overlap with the will, but a document like this has more room for detail than the will kit.&lt;/p&gt;
&lt;p&gt;In my system this is now stored in &lt;code&gt;33.16 Will &amp;amp; emergency&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-2&quot; id=&quot;user-content-fnref-2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; And there&amp;#39;s a printed copy in the lockbox.&lt;/p&gt;
&lt;p&gt;As we were doing this we realised we &lt;em&gt;also&lt;/em&gt; needed to organise our password apps so they would make sense to our trusted executor and/or family members.&lt;/p&gt;
&lt;h3 id=&quot;third-stop-decimalise-password-app&quot;&gt;Third stop, Decimalise password app&lt;/h3&gt;
&lt;p&gt;This might sound unnecessary, but our rationale was that it&amp;#39;s a nice thing we could do for someone else. Sure they can use search to find stuff. But leaving everything neat and matched up with our &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt; and filesystems might be less frustrating.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve both used &lt;a href=&quot;https://1password.com&quot;&gt;1Password&lt;/a&gt; for many years and there was &lt;em&gt;a lot&lt;/em&gt; of clutter in there. So we approached the job like this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Create a new &amp;#39;vault&amp;#39; in the sidebar for each category in our personal systems.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-3&quot; id=&quot;user-content-fnref-3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Move everything into the Archive (this allows you to start fresh in the main area).&lt;/li&gt;
&lt;li&gt;Review the Archive bit-by-bit (which is easy since it&amp;#39;s organised by the alphabet).
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Delete&lt;/strong&gt; old junk.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Restore&lt;/strong&gt; active logins.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;File&lt;/strong&gt; logins in the best vault/category in the sidebar (you can drag &amp;#39;n drop from the main area).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Neaten&lt;/strong&gt; up titles so everything is clear.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the categories in Lucy&apos;s 1Password sidebar. She&apos;s got about 20; they mirror her JD system.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0157A-1Password-categories--0-cx-533x1785.png&quot; width=&quot;266&quot; height=&quot;892&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;A nice side effect of this process was a bit of what Johnny is calling &amp;#39;&lt;strong&gt;comfortable awareness&lt;/strong&gt;&amp;#39;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-4&quot; id=&quot;user-content-fnref-4&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt; 1Password is another area of my digital chaos that is now tidy. And I have an awareness of what&amp;#39;s in that Very Important App, and how far and wide my details are scattered.&lt;/p&gt;
&lt;p&gt;Anyways, I&amp;#39;m just an ordinary &lt;a href=&quot;https://en.wikipedia.org/wiki/Average_Joe&quot;&gt;Jo Lunchbucket&lt;/a&gt;. But I did the best I could, in the time I had, to make my &amp;#39;will and estate planning&amp;#39; paperwork clear and organised for anyone that might have to deal with it. And given that I&amp;#39;ve put this off my whole adult life, that makes me feel better.&lt;/p&gt;
&lt;h3 id=&quot;hot-tip-drag-n-drop&quot;&gt;Hot tip: drag &amp;#39;n drop&lt;/h3&gt;
&lt;p&gt;After Johnny&amp;#39;s lesson on &lt;a href=&quot;https://www.youtube.com/watch?v=yKbtoR2q_Ds&quot;&gt;drag &amp;#39;n drop&lt;/a&gt; last week, I bravely tried dragging a file from my computer on to the 1Password icon in my dock to see if anything would happen.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-5&quot; id=&quot;user-content-fnref-5&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt; And it automatically created an entry! I had no idea. I did this for some account backup codes I&amp;#39;d downloaded as text files. But it probably works for all sorts.&lt;/p&gt;
&lt;p&gt;From,
Lucy&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;In &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; this would go in &lt;code&gt;11.16 Legal documents &amp;amp; certificates&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-2&quot;&gt;
&lt;p&gt;In Life Admin this would go in &lt;code&gt;14.21 My emergency digital recovery kit&lt;/code&gt;. It&amp;#39;s also something to consider in &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business&lt;/a&gt; at &lt;code&gt;11.23 Risk &amp;amp; emergency management plans&lt;/code&gt; and &lt;code&gt;14.23 Backups &amp;amp; recovery&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-3&quot;&gt;
&lt;p&gt;Categories were enough organisation for me. Although I did create a couple of IDs to keep some items separate. &lt;a href=&quot;#user-content-fnref-3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-4&quot;&gt;
&lt;p&gt;A concept that&amp;#39;s being explored in the new task and project management course we&amp;#39;re making for &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;Johnny.Decimal University&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-4&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-5&quot;&gt;
&lt;p&gt;From the YouTube playlist: &lt;a href=&quot;https://www.youtube.com/playlist?list=PLtBN5zRaar6pB7QvoCjsMDMNl-DzYTkRA&quot;&gt;Be better at computer&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-5&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0156 A nice JDex entry: 14.32+1Password</title><link>https://johnnydecimal.com/22.00.0156/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0156/</guid><description>It struck me that this was a particularly neat entry, so I thought I&apos;d share it.</description><pubDate>Tue, 28 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-nice-jdex-entry-14321password&quot;&gt;A nice JDex entry: 14.32+1Password&lt;/h1&gt;
&lt;p&gt;I was editing this JDex entry the other day and it struck me that it was an exemplar, the Platonic ideal of what a JDex entry should be. So I thought I&amp;#39;d share it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0156A-Obsidian-1432-1Password--0-original-light-cx-1424x1558.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0156A-Obsidian-1432-1Password--0-original-dark-cx-1424x1558.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0156A-Obsidian-1432-1Password--0-original-light-cx-1424x1558.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0156A-Obsidian-1432-1Password--0-original-dark-cx-1424x1558.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the note, which I will explain below.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0156A-Obsidian-1432-1Password--0-original-light-cx-1424x1558.png&quot; width=&quot;712&quot; height=&quot;779&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;id--title&quot;&gt;ID &amp;amp; title&lt;/h3&gt;
&lt;p&gt;This is a textbook &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extend-the-end&lt;/a&gt;. This is my &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business System&lt;/a&gt;, so the parent is &lt;code&gt;14.32 External software &amp;amp; services&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;One of those external softwares that I use is &lt;a href=&quot;https://1password.com&quot;&gt;1Password&lt;/a&gt;. So this is where its configuration lives.&lt;/p&gt;
&lt;h3 id=&quot;a-log-of-events&quot;&gt;A log of events&lt;/h3&gt;
&lt;p&gt;Then I tell myself what I did, using links liberally. I created a service account; that link takes me directly to that setting in the web console.&lt;/p&gt;
&lt;p&gt;When I note which of my &lt;code&gt;14.11 Computers &amp;amp; servers&lt;/code&gt; I affected with this change, I wiki-link to them. So this note now shows in their backlinks.&lt;/p&gt;
&lt;h3 id=&quot;my-memory&quot;&gt;My memory&lt;/h3&gt;
&lt;p&gt;Then I tell myself how to use this new config to launch VSCode in the future. You think you&amp;#39;ll remember this stuff. You never do. Write it down.&lt;/p&gt;
&lt;h3 id=&quot;thats-it&quot;&gt;That&amp;#39;s it&lt;/h3&gt;
&lt;p&gt;Mine tend to be pretty short. Get to the point.&lt;/p&gt;
&lt;p&gt;This is exactly what your JDex is for. Especially in a business context: this becomes your operations guide.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0155 The front door and the elephant</title><link>https://johnnydecimal.com/22.00.0155/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0155/</guid><description>Things are easier to find if you do it the long way.</description><pubDate>Mon, 27 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-front-door-and-the-elephant&quot;&gt;The front door and the elephant&lt;/h1&gt;
&lt;p&gt;When I &lt;a href=&quot;https://johnnydecimal.com/22.00.0125/&quot;&gt;migrated everyone from our various 3rd-party platforms&lt;/a&gt; to &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;JDHQ&lt;/a&gt; in August, I ended up with this ginormous spreadsheet: who came from where, with what access, to what product, based on which previous purchase on which platform. It&amp;#39;s hideous, but it worked.&lt;/p&gt;
&lt;p&gt;I thought that spreasheet&amp;#39;s work was done, but it&amp;#39;s never that simple. Two months later I still get emails from people who missed the invitation email and can&amp;#39;t sign in to their old accounts (which no longer exist). That&amp;#39;s okay: customer support is part of the job, that I enjoy. I get to email people and make them happy.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;ve still been using this spreadsheet, weekly. Here&amp;#39;s the problem: it was called &lt;code&gt;2025-08-07 Working out who is Life vs. Annual by extracting Clerk data and munging it with Shopify.xlsx&lt;/code&gt; (for real), and I&amp;#39;d been accessing it via Excel&amp;#39;s &amp;#39;recently opened&amp;#39; list. Which worked great. Until it didn&amp;#39;t.&lt;/p&gt;
&lt;p&gt;Because last week I opened a bunch of other sheets, causing it to be pushed off the bottom of the list. So when I went to open it -- predictably enough, in some sort of a rush -- wait … agh … &lt;em&gt;where the hell is it?&lt;/em&gt;&lt;/p&gt;
&lt;h3 id=&quot;an-identifiable-stress&quot;&gt;An identifiable stress&lt;/h3&gt;
&lt;p&gt;I think this entire endeavour, my life&amp;#39;s work, is to remove from the world a type of stress that I&amp;#39;ve come to immediately recognise. It&amp;#39;s this one: &lt;strong&gt;I know it exists and I&amp;#39;m stressed because I don&amp;#39;t immediately know where it is&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;So I just want to note that stress here. I see you, tiny stress. I poke you in the eye.&lt;/p&gt;
&lt;h3 id=&quot;the-front-door&quot;&gt;The front door&lt;/h3&gt;
&lt;p&gt;So here&amp;#39;s the first thing I&amp;#39;m going to start doing: stop relying on that &amp;#39;recent&amp;#39; list. It&amp;#39;s a crutch. Handy, for sure, and I&amp;#39;m not going to stop using it entirely. But if you find yourself using it over and over, ask yourself, do you &lt;em&gt;actually know&lt;/em&gt; where that file is?&lt;/p&gt;
&lt;p&gt;When your recents is obliterated due to some sort of crash or bug, is that An Event? It shouldn&amp;#39;t be.&lt;/p&gt;
&lt;h3 id=&quot;back-to-basics&quot;&gt;Back to basics&lt;/h3&gt;
&lt;p&gt;The fundamental nature of Johnny.Decimal is this property where you start at the top, and you have at most 10 things to choose from, then you have at most 10 again, and now you&amp;#39;re looking at your IDs.&lt;/p&gt;
&lt;p&gt;With this constraint, my system would work without numbers. Numbers are secondary: they help the system along. But its heart beats to the rhythm of constraint.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Use the system as it was designed&lt;/strong&gt;. And I&amp;#39;m talking to me here. What should I have done in this moment of tiny stress? Just start at the top. I only have 5 areas. Which one? The one that contains customers. Now 5 categories. Repeat. Now I only have 8 IDs in there! This one is &lt;code&gt;33.14 Customer data mashing and munging&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Three easy decisions. So chill out, and follow the bouncing ball.&lt;/p&gt;
&lt;h3 id=&quot;the-elephant&quot;&gt;The elephant&lt;/h3&gt;
&lt;p&gt;Of course the true crime is that filename. Every time I opened it I knew it was bad. So, improve it. Stick the ID in there: this is exactly what it&amp;#39;s for.&lt;/p&gt;
&lt;p&gt;When the filename is &lt;code&gt;33.14 Customer data from store migration.xlsx&lt;/code&gt;, I can use that recent list all I like. Because every time I open the file I&amp;#39;m reinforcing where it is.&lt;/p&gt;
&lt;p&gt;This is &lt;em&gt;exactly&lt;/em&gt; what &lt;a href=&quot;https://johnnydecimal.com/22.00.0136/&quot;&gt;be a better human&lt;/a&gt; time is for. Tidy up. Poke stress in the eye.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0154 Mitsu-bishi 9852</title><link>https://johnnydecimal.com/22.00.0154/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0154/</guid><description>Pencil + orange = heaven.</description><pubDate>Sun, 26 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;mitsu-bishi-9852&quot;&gt;Mitsu-bishi 9852&lt;/h1&gt;
&lt;p&gt;We all know I&amp;#39;m a &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0018-defaults/#pencil&quot;&gt;sucker&lt;/a&gt; for a &lt;a href=&quot;https://johnnydecimal.com/22.00.0033/&quot;&gt;good pencil&lt;/a&gt;, and an orange hue. So when I walked past this beauty in Morioka&amp;#39;s &lt;a href=&quot;https://fesan-jp.com/en/&quot;&gt;FES”AN&lt;/a&gt; (sic.) the other day, I was helpless.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;An orangey-yellow pencil. Brand new.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0154A-Mitsu-bishi-9852--0-cx-1738x312.png&quot; width=&quot;869&quot; height=&quot;156&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0154A. Mitsu-bishi 9852.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I realise, for someone travelling with a single tiny bag, that I&amp;#39;m now over-pencilled. I have this, a 9850, another Mitsubishi &amp;#39;Uni&amp;#39; whose exact model I can&amp;#39;t track down but it&amp;#39;s the &lt;a href=&quot;https://brandnamepencils.com/wp-content/uploads/2020/02/uni_red_blue-1400x221.png&quot;&gt;blue one from this image&lt;/a&gt;, and 1.5 Blackwing Pearls, the smaller of which I just discovered Blu-Tacked in to the back of a notebook.&lt;/p&gt;
&lt;p&gt;Given that you can buy a pencil literally anywhere, I might not have needed to bring that many with me.&lt;/p&gt;
&lt;h3 id=&quot;mitsubishi&quot;&gt;Mitsubishi&lt;/h3&gt;
&lt;p&gt;Interestingly, the &lt;a href=&quot;https://en.wikipedia.org/wiki/Uni-ball&quot;&gt;Mitsubishi Pencil Company&lt;/a&gt; has no relation to the broader Mitsubishi Group. It&amp;#39;s a name I gravitate towards; I&amp;#39;m pretty sure I viewed my &lt;a href=&quot;https://www.youtube.com/watch?v=N3dhzRgaybM&quot;&gt;Sinclair ZX Spectrum+&lt;/a&gt; through a late-1980s Mitsubishi TV set.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0153 Bum Man [safe!]</title><link>https://johnnydecimal.com/22.00.0153/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0153/</guid><description>More people should know who Bum Man is.</description><pubDate>Sat, 25 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;bum-man-safe&quot;&gt;Bum Man [safe!]&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Programming notice. Mon-Fri I&amp;#39;ll keep these posts JD-relevant. Weekends might be leisure time.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Lucy has been drawing &amp;#39;Bum Man&amp;#39; since the early 1990s. A man who is primarily a bum, he &amp;quot;came to her in a dream&amp;quot;. She used to keep paper beside her bed so she could draw him when she woke up. Here&amp;#39;s the latest.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A very colourful cartoon. In a 9-holed bento box sit 9 rounded &apos;men&apos;, whose primary characteristic is that they&apos;re shaped like a bum.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0153A-bum-man-0-original-cx-1425x1050.png&quot; width=&quot;1425&quot; height=&quot;1050&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Bum Man&amp;#39;s antics usually reflect what&amp;#39;s going on in our own lives. It&amp;#39;s nice to look back through the archives, which are at &lt;a href=&quot;https://bum-man.com.au&quot;&gt;bum-man.com.au&lt;/a&gt; or on &lt;a href=&quot;https://www.instagram.com/_bumman/&quot;&gt;Instagram&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re in Australia, you can buy a colouring book, professionally printed in Fitzroy, VIC. The lovely people at POP Canberra (now POP Local, they went nationwide) &lt;a href=&quot;https://www.poplocal.com.au/product/bum-man-colouring-book/?variant=DOJUGDH7H37RVZO4STYWXQEK&amp;pid=UDLG3BUBEDAQRPUG3U5AMZ2Q&quot;&gt;stock it here&lt;/a&gt;. A great Christmas gift. :-)&lt;/p&gt;
&lt;p&gt;That&amp;#39;s all. He&amp;#39;s too cheerful not to share.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0152 The Japanese web is delightful</title><link>https://johnnydecimal.com/22.00.0152/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0152/</guid><description>Japan shows us that we should have stopped at 1.0.</description><pubDate>Fri, 24 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-japanese-web-is-delightful&quot;&gt;The Japanese web is delightful&lt;/h1&gt;
&lt;p&gt;The Japanese web feels like it stopped at 1.0 and it&amp;#39;s a delight.&lt;/p&gt;
&lt;p&gt;Remember when webpages were simply dense information-delivery mechanisms? I present: the &lt;a href=&quot;https://www.library.pref.iwate.jp/index.html&quot;&gt;Iwate Prefectural Library&lt;/a&gt;. I mean &lt;em&gt;come on&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I only just realised in pasting that link, that&amp;#39;s even an old-school &lt;code&gt;index.html&lt;/code&gt;! None of this fancy-dancy &lt;em&gt;just end with a directory path&lt;/em&gt; nonsense.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s the &lt;a href=&quot;https://iwate-morioka-city-marathon.jp&quot;&gt;Morioka City Marathon&lt;/a&gt;: just a colourful page, full of information.&lt;/p&gt;
&lt;p&gt;Our web got so bland; everything just this homogenous lump of rounded-corner pastel. I don&amp;#39;t know how the Japanese have held on to theirs. A function of isolation, I suppose?&lt;/p&gt;
&lt;p&gt;Either way, I&amp;#39;m envious.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0151 Automated organisation?</title><link>https://johnnydecimal.com/22.00.0151/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0151/</guid><description>A practical use for &apos;AI&apos;: have it analyse and sort your data for you.</description><pubDate>Wed, 22 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;automated-organisation&quot;&gt;Automated organisation?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Today&amp;#39;s post was sent to the mailing list 4 days ago. &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;Sign up&lt;/a&gt; for the occasional early treat.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Hi, Decimals. This one&amp;#39;s going out [to the list] a few days before I put it on the blog. I&amp;#39;m looking for organisations that might be interested in testing this out at scale. Is that you? Let me know, I&amp;#39;ll prioritise responses from this list.&lt;/p&gt;
&lt;p&gt;I loathe much of &amp;#39;generative AI&amp;#39;, and you&amp;#39;ll never read a word of mine that was written by a machine. But to deny its usefulness in other situations feels dogmatic. One of those situations is in the automation of repetitive tasks: exactly the sort of thing that computers are good at.&lt;/p&gt;
&lt;p&gt;We spent months creating the Small Business System so that you don&amp;#39;t have to. But a hurdle remains: the effort in implementing it! And, unless you happen to be me, &lt;em&gt;organising information&lt;/em&gt; isn&amp;#39;t your business. It&amp;#39;s an overhead.&lt;/p&gt;
&lt;p&gt;So what if the machine could do it for us? I see new apps every day that promise to organise your stuff using AI, but without a framework, they&amp;#39;re all just guessing. The results are going to be different every time. They&amp;#39;re not going to be internally consistent. It might look neater but you &lt;em&gt;still&lt;/em&gt; won&amp;#39;t know, with total confidence, where everything is.&lt;/p&gt;
&lt;p&gt;Would that be different if you gave the machine access to a 55,000-word business operations manual, along with clear instructions on the Johnny.Decimal structure and its various patterns and standards? Well I have those things, so let&amp;#39;s see.&lt;/p&gt;
&lt;p&gt;I downloaded two files: our latest bank statement, and my latest superannuation report. Both filenames were left unchanged. Then I asked Claude:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;quot;i&amp;#39;ve downloaded our most recent bank statement and john noble&amp;#39;s latest superannuation report. they&amp;#39;re in my downloads folder. please file them for me.&amp;quot;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s what happened.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of my interaction with Claude. The relevant parts are described below.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0151A-Claude-organising-a-bank-statement-and-superannuation-report-cx-670x1287.png&quot; width=&quot;670&quot; height=&quot;1287&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0151A. I really run a green-on-black Terminal, yes.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;There&amp;#39;s my instruction.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Claude reads the folder, identifying the files. It immediately knows which JD ID these documents should go in, because the basic structure of the system is in-memory.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&amp;#39;ve given it extra patterns, like the fact that some subfolders need to be organised according to staff member. So it checks whether those structures exist. It reads the contents of the files so that it can be sure they&amp;#39;re going to the right place.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Comfortable that it knows what to do, it moves both documents, creating a subfolder for me in the payroll folder, and renaming them according to my specified standards.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And wraps up by confirming what it did.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I&amp;#39;ve cleaned up this screenshot (you don&amp;#39;t need to see it listing folders on my drive), but this was a &amp;#39;one-shot&amp;#39; action: it didn&amp;#39;t ask me any follow-up questions after my initial prompt. It just worked.&lt;/p&gt;
&lt;p&gt;This is pretty good! I&amp;#39;d want to wrap a bunch more controls around it before I set it loose on my business, e.g.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All file operations must be logged. If it moved something, you want to know what it was before and after.&lt;/li&gt;
&lt;li&gt;I wouldn&amp;#39;t be letting this run on an entire unorganised structure in &amp;#39;move files&amp;#39; mode. I&amp;#39;d be getting it to &lt;em&gt;copy&lt;/em&gt; everything over to a new structure that we could then verify.&lt;/li&gt;
&lt;li&gt;There are a bunch more JD-level heuristics I need to add. But for a first crack, a proof of concept … I think the concept is proven?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The nice thing about this is that we&amp;#39;re still 100% useful without the AI. It&amp;#39;s not a requirement of an ongoing system – it&amp;#39;s a tool we can call on as required. We can have it make notes in our JDex so that we can both understand what&amp;#39;s going on: it can refer to its own notes in the future, so it&amp;#39;ll reinforce its own patterns. And you can refer to those notes just like any other JDex entry without having the AI in the loop.&lt;/p&gt;
&lt;p&gt;And of course we can run this on local models so we&amp;#39;re not sending our data up to the cloud, provided we have the hardware for it. (My M1 MacBook Air, not so much.)&lt;/p&gt;
&lt;p&gt;I&amp;#39;m going to keep working on this. Would you use it? Would you pay for it?… ;-)&lt;/p&gt;
&lt;h2 id=&quot;update-4-days-later&quot;&gt;Update, 4 days later&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve already made good progress. I have a proof-of-concept app that authenticates against your account at &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;JDHQ&lt;/a&gt; and pulls what it needs from an API endpoint.&lt;/p&gt;
&lt;p&gt;This allows me to continually refine the system and its prompts, so your local app will be &amp;#39;smarter&amp;#39; within an hour of me making updates.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshow showing me issuing `deno task` commands that run my fledgling app. We confirm authentication and SBS system status, then send a PDF to the OpenAI API. It responds with a JD ID.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0151B-deno-demo-0-original-cx-748x830.png&quot; width=&quot;748&quot; height=&quot;830&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;local--slow&quot;&gt;Local = slow&lt;/h3&gt;
&lt;p&gt;What didn&amp;#39;t work out was the local model. Even tiny models brought Ollama on my M1 MacBook Air to a crawl. A simple categorisation by filename, not even file content, took almost &lt;strong&gt;3 minutes&lt;/strong&gt; -- clearly impractical.&lt;/p&gt;
&lt;p&gt;More recent hardware will fare better of course, but I doubt it&amp;#39;s going to match the sub-2-second response I&amp;#39;m getting from OpenAI&amp;#39;s API running gpt-5.&lt;/p&gt;
&lt;p&gt;The API allows you to opt-out of data sharing, so I&amp;#39;ve done that. Whatever I develop &lt;em&gt;will&lt;/em&gt; have the option of running locally, but personally I&amp;#39;m in the cloud for now.&lt;/p&gt;
&lt;p&gt;(I need to feed it a decent amount of context so that it understands what to do. Splitting the job up into smaller tasks might also help.)&lt;/p&gt;
&lt;h3 id=&quot;im-optimistic&quot;&gt;I&amp;#39;m optimistic&lt;/h3&gt;
&lt;p&gt;I heard from a bunch of people by email and the theme was clear: we&amp;#39;d love to be more organised, but we don&amp;#39;t have the time.&lt;/p&gt;
&lt;p&gt;This has legs. Watch this space.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-ai&quot; id=&quot;user-content-fnref-ai&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-ai&quot;&gt;
&lt;p&gt;As in, the words written here will never be generated by AI. My policy on the use of AI is documented at &lt;a href=&quot;https://johnnydecimal.com/01.03/#use-of-ai&quot;&gt;01.03 Policies&lt;/a&gt;. TL;DR: I&amp;#39;ll use them where they&amp;#39;re useful. &lt;a href=&quot;#user-content-fnref-ai&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0150 Decimal Diary: Data leaks and credit reports</title><link>https://johnnydecimal.com/22.00.0150/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0150/</guid><description>Today&apos;s blog is a guest post by Lucy.</description><pubDate>Tue, 21 Oct 2025 09:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;decimal-diary-data-leaks-and-credit-reports&quot;&gt;Decimal Diary: Data leaks and credit reports&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Today&amp;#39;s blog is a guest post by Lucy.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Dear Decimal Diary,&lt;/p&gt;
&lt;p&gt;My personal details were leaked in two recent data breaches affecting &lt;a href=&quot;https://www.qantas.com/au/en/support/information-for-customers-on-cyber-incident.html&quot;&gt;Qantas&lt;/a&gt; and &lt;a href=&quot;https://www.vietnamairlines.com/vn/en/vietnam-airlines/press-room/press-release/2025/1014-EN-Information-Regarding-Customer-Data-Breach&quot;&gt;Vietnam Airlines&lt;/a&gt;. Another batch of little pieces that might one day be reassembled into a pretend me, so they say.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve read that it&amp;#39;s not a bad idea to keep an eye on your official credit report in case someone steals your identity and applies for loans in your name. So today I tried out Johnny&amp;#39;s idea of &lt;a href=&quot;https://jdcm.al/22.00.0136/&quot;&gt;&amp;#39;be a better human&amp;#39; time&lt;/a&gt; and did something I&amp;#39;ve been putting off for ages – I accessed my credit reports.&lt;/p&gt;
&lt;p&gt;In Australia, I learned that there are &lt;a href=&quot;https://moneysmart.gov.au/managing-debt/credit-scores-and-credit-reports&quot;&gt;three companies&lt;/a&gt; dealing with identity and credit services:&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Experian,&lt;/li&gt;
&lt;li&gt;illion, and&lt;/li&gt;
&lt;li&gt;Equifax.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;finding-the-stuff-to-create-an-account&quot;&gt;Finding the stuff to create an account&lt;/h3&gt;
&lt;p&gt;First, I had to register for an account with each service. This meant providing things like drivers licence, passport, and Medicare details.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-2&quot; id=&quot;user-content-fnref-2&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; In my personal system, this kind of thing is saved under &lt;code&gt;12.16 Medicare &amp;amp; government&lt;/code&gt; and &lt;code&gt;33.11 Identity&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-3&quot; id=&quot;user-content-fnref-3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; No worries.&lt;/p&gt;
&lt;h3 id=&quot;saving-the-stuff-they-sent-me&quot;&gt;Saving the stuff they sent me&lt;/h3&gt;
&lt;p&gt;After the accounts were set up, requesting the credit reports was straightforward. I can get them sent every 3 months for free if I want (I&amp;#39;ve set a new reminder to do this). I&amp;#39;ve saved them in my filesystem in &lt;code&gt;11.26 Credit rating&lt;/code&gt;, labelled by &lt;a href=&quot;https://jdcm.al/11.06/#sorting-by-year-month&quot;&gt;year-month-day&lt;/a&gt; so they sort.&lt;/p&gt;
&lt;h3 id=&quot;other-helpful-cameos&quot;&gt;Other helpful cameos&lt;/h3&gt;
&lt;p&gt;Other Decimalised things involved in this &amp;#39;&lt;a href=&quot;https://jdcm.al/22.00.0034/#p3-should-donice-to-do&quot;&gt;P3&lt;/a&gt;&amp;#39; task include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The item that reminded me that I &lt;em&gt;actually really&lt;/em&gt; want to do this was saved in my &lt;code&gt;11 Money &amp;amp; tax&lt;/code&gt; category in &lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;New logins for the credit report companies were saved in my &lt;code&gt;11 Money &amp;amp; tax&lt;/code&gt; category in &lt;a href=&quot;https://1password.com&quot;&gt;1Password&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Emails from the companies were filed in my &lt;code&gt;11.26 Credit rating&lt;/code&gt; folder in Gmail.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This boring life admin task was made a bit less ominous thanks to my system, and I actually bloody did it.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-4&quot; id=&quot;user-content-fnref-4&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;From,&lt;br&gt;
Lucy&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Apparently if you&amp;#39;re in this line of business you name your company as if it&amp;#39;s an intergalactic science-fiction horse. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-2&quot;&gt;
&lt;p&gt;Which didn&amp;#39;t fill me with great confidence after remembering the &lt;a href=&quot;https://en.wikipedia.org/wiki/2017_Equifax_data_breach&quot;&gt;Equifax data breach of 2017&lt;/a&gt;. Oh well. &lt;a href=&quot;#user-content-fnref-2&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-3&quot;&gt;
&lt;p&gt;My ID numbers are artisanal because I built my Johnny.Decimal system in the &lt;a href=&quot;https://jdcm.al/14.02/&quot;&gt;workshop&lt;/a&gt; before the &lt;a href=&quot;https://jdcm.al/15.03/&quot;&gt;Life Admin System&lt;/a&gt; was born. If I had Life Admin I&amp;#39;d be referring to: &lt;code&gt;11.12 Passports, residency, &amp;amp; citizenship&lt;/code&gt;, &lt;code&gt;11.14 Licences&lt;/code&gt;, &lt;code&gt;13.23 Government services&lt;/code&gt;, and &lt;code&gt;13.13 My credit rating&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-4&quot;&gt;
&lt;p&gt;There was still swearing involved, but that was mostly due to poor wi-fi in our current location. &lt;a href=&quot;#user-content-fnref-4&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0149 Listmonk on a Pikapod with AWS SES</title><link>https://johnnydecimal.com/22.00.0149/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0149/</guid><description>I finally found an email list service that I love (and control).</description><pubDate>Mon, 20 Oct 2025 08:57:34 GMT</pubDate><content:encoded>&lt;h1 id=&quot;listmonk-on-a-pikapod-with-aws-ses&quot;&gt;Listmonk on a Pikapod with AWS SES&lt;/h1&gt;
&lt;p&gt;If you&amp;#39;d like to be responsible for your own mailing list, I&amp;#39;ve found a solution that I can recommend.&lt;/p&gt;
&lt;p&gt;Install &lt;a href=&quot;https://www.pikapods.com/pods?run=listmonk&quot;&gt;Listmonk on a Pikapod&lt;/a&gt;. &lt;a href=&quot;https://listmonk.app&quot;&gt;Listmonk&lt;/a&gt; is FOSS mailing list software. Pikapods are dead cheap virtual app containers. You&amp;#39;ll have that up and running in literally one minute.&lt;/p&gt;
&lt;p&gt;Now get yourself an &lt;a href=&quot;https://aws.amazon.com/ses/&quot;&gt;Amazon SES&lt;/a&gt; account. When I set mine up I had to send them my site details to prove that I was legit. Which is fair enough for a bulk email service. Still, it took a week to get approved. Be patient.&lt;/p&gt;
&lt;p&gt;Now configure &lt;a href=&quot;https://listmonk.app/docs/bounces/#amazon-simple-email-service-ses&quot;&gt;bounce processing&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And now you&amp;#39;re done. I can send a couple of thousand emails to a list that I control for about $1. I love it.&lt;/p&gt;
&lt;p&gt;If you run in to any problems let me know and I can share my setup. And if you can&amp;#39;t be bothered doing any of this and you still want a privacy-first email service, use &lt;a href=&quot;https://buttondown.com&quot;&gt;Buttondown&lt;/a&gt;. I&amp;#39;m a happy ex-customer.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0148 The Johnny.Decimal Workbook is free</title><link>https://johnnydecimal.com/22.00.0148/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0148/</guid><description>If you can&apos;t beat &apos;em, join &apos;em.</description><pubDate>Sun, 19 Oct 2025 03:48:33 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-johnnydecimal-workbook-is-free&quot;&gt;The Johnny.Decimal Workbook is free&lt;/h1&gt;

&lt;p&gt;&lt;a download=&quot;&quot; href=&quot;https://johnnydecimal.com/D25/21/21.31/The%20Johnny.Decimal%20Workbook%20(fifth%20edition).pdf&quot;&gt;Click here to download it&lt;/a&gt;. Its licence is now &lt;a href=&quot;https://creativecommons.org/licenses/by-nc/4.0/&quot;&gt;CC BY-NC
4.0&lt;/a&gt; meaning you&amp;#39;re free to
share and adapt it, but not for commercial purposes.&lt;/p&gt;
&lt;h3 id=&quot;an-ode-to-the-workbook&quot;&gt;An ode to the workbook&lt;/h3&gt;
&lt;p&gt;When I &lt;a href=&quot;https://johnnydecimal.com/22.00.0003/&quot;&gt;quit my job&lt;/a&gt; in May 2023, we didn&amp;#39;t know what we were going to do. In hindsight, we should have planned it a bit better. And saved more money. Story of my life.&lt;/p&gt;
&lt;p&gt;We&amp;#39;d already booked a month-long holiday for August that year. Around the start of July, we realised that we should create this document: the best, most comprehensive guide to building your own system. So, in a flurry that ended two days before we flew overseas, we did that.&lt;/p&gt;
&lt;p&gt;It was a lot of work. 20,000 words. 100-ish pages. Everything I knew about taking a bunch of disorganised stuff and turning it in to a Johnny.Decimal system. Lovingly edited and laid out by Lucy. We were really happy with it. We still are. It stood the test of time.&lt;/p&gt;
&lt;h3 id=&quot;the-first-sale&quot;&gt;The first sale&lt;/h3&gt;
&lt;p&gt;I put it up for sale on Gumroad, not having any clue what would happen. Then I emailed my mailing list. Then I went outside to see Lucy, who was with the chickens. I remember it vividly.&lt;/p&gt;
&lt;p&gt;Minutes later, the Gumroad app popped a notification on my phone. A sale. Then another. And another. Four, almost immediately. I showed Lucy. We couldn&amp;#39;t believe it -- this was the first validation that this thing, this dumb idea that I quit a proper job for, might keep us alive.&lt;/p&gt;
&lt;p&gt;Giddy with excitement, we spent more on hotels that holiday than we had any right to.&lt;/p&gt;
&lt;h3 id=&quot;you-cant-protect-a-pdf&quot;&gt;You can&amp;#39;t protect a PDF&lt;/h3&gt;
&lt;p&gt;I always knew this would happen, but it still stings when it does. The workbook has been available to download for free for ages now. Just Google it. Which is fine -- there&amp;#39;s only so long one should expect to eke a living from a PDF.&lt;/p&gt;
&lt;p&gt;In fact, we uploaded it to &lt;a href=&quot;https://catalogue.nla.gov.au/catalog/10108968&quot;&gt;the National Library of Australia&lt;/a&gt; ourselves last year. That feels really good. To have our work there. That&amp;#39;ll outlast me. Mad.&lt;/p&gt;
&lt;h3 id=&quot;dont-always-be-so-obvious&quot;&gt;Don&amp;#39;t always be so obvious&lt;/h3&gt;
&lt;p&gt;Of course the &amp;#39;natural&amp;#39; instinct when giving a thing away is to get &lt;em&gt;something&lt;/em&gt; for it. So I just spent the morning faffing about with my email list, thinking I&amp;#39;d do the thing where you sign up, you get the link to the workbook, you get those onboarding emails that nobody reads. Email address as currency.&lt;/p&gt;
&lt;p&gt;To my credit, the time it&amp;#39;s taking me to go from implementing &lt;em&gt;The Thing That Everyone Does&lt;/em&gt; to realising that &lt;em&gt;I Cannot Be Bothered Doing That&lt;/em&gt; is getting shorter. So, no email required. Just &lt;a download=&quot;&quot; href=&quot;https://johnnydecimal.com/D25/21/21.31/The%20Johnny.Decimal%20Workbook%20(fifth%20edition).pdf&quot;&gt;the workbook, if you want it&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We hope you find it useful. You can support us by signing up for something at &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;JDHQ&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0147 Globally unique identifiers</title><link>https://johnnydecimal.com/22.00.0147/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0147/</guid><description>Giving your Johnny.Decimal stuff globally-unique identifiers might be cool. I&apos;m not sure why? But it feels cool.</description><pubDate>Sat, 18 Oct 2025 01:14:43 GMT</pubDate><content:encoded>&lt;h1 id=&quot;globally-unique-identifiers&quot;&gt;Globally unique identifiers&lt;/h1&gt;
&lt;p&gt;The previous post regarding the &lt;a href=&quot;https://johnnydecimal.com/22.00.0145/&quot;&gt;creative outputs pattern&lt;/a&gt; generated a bit of discussion on &lt;a href=&quot;https://discord.com/channels/822215537589354566/1428297259736371200&quot;&gt;Discord&lt;/a&gt;, if you&amp;#39;re interested.&lt;/p&gt;
&lt;p&gt;That discussion led me to give the example of my most recent email to the mailing list, which just went out with the ID &lt;code&gt;D25.14.54+50068&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s break that down.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;D25&lt;/code&gt; is our &lt;a href=&quot;https://johnnydecimal.com/13.11/&quot;&gt;system ID&lt;/a&gt; for the Johnny.Decimal business.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;14.54&lt;/code&gt; is the &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;small business&lt;/a&gt; ID for &amp;#39;electronic mailing lists&amp;#39;.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;50068&lt;/code&gt; is the ID in our &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;creative area&lt;/a&gt; for this specific email.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Plausibly, someone else might have that exact same ID in &lt;em&gt;their&lt;/em&gt; system. Unlikely, but possible. So what if I wanted to reference that in a way that made it &lt;strong&gt;globally unique&lt;/strong&gt;?&lt;/p&gt;
&lt;p&gt;(More realistically, the ID &lt;code&gt;D25.14.54&lt;/code&gt; might co-exist in the world, and the question of global uniqueness can be applied equally to it.)&lt;/p&gt;
&lt;h3 id=&quot;prefix-it&quot;&gt;Prefix it&lt;/h3&gt;
&lt;p&gt;What if I had my own, guaranteed-globally-unique prefix? And you had yours, and anyone who wanted one had theirs.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s say that mine was &lt;code&gt;JDCMAL&lt;/code&gt;, because we decide that they need to be 6 alphanumeric characters. Now I have:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;JDCMAL.D25.14.54+50068&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;— and this short &lt;a href=&quot;https://en.wikipedia.org/wiki/Digital_object_identifier&quot;&gt;DOI-like&lt;/a&gt; identifier&lt;sup&gt;&lt;a href=&quot;#user-content-fn-ras&quot; id=&quot;user-content-fnref-ras&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; now uniquely identifies this specific thing, globally.&lt;/p&gt;
&lt;p&gt;To satisfy &lt;a href=&quot;https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml&quot;&gt;some spec&lt;/a&gt; I&amp;#39;d probably need to give it a URI scheme?&lt;/p&gt;
&lt;p&gt;&lt;code&gt;JD://JDCMAL.D25.14.54+50068&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sure what I&amp;#39;d ever use it for. But it&amp;#39;s an idea I keep coming back to.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-ras&quot;&gt;
&lt;p&gt;&amp;#39;Identifier&amp;#39; there creating a &lt;a href=&quot;https://en.wikipedia.org/wiki/RAS_syndrome&quot;&gt;RAS&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-ras&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0146 How many things are you trying to do at once?</title><link>https://johnnydecimal.com/22.00.0146/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0146/</guid><description>If the answer is more than &apos;one&apos;, we all know that works out. Use your Johnny.Decimal system to stay focused.</description><pubDate>Fri, 17 Oct 2025 08:24:16 GMT</pubDate><content:encoded>&lt;h1 id=&quot;how-many-things-are-you-trying-to-do-at-once&quot;&gt;How many things are you trying to do at once?&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s a trick I&amp;#39;ve been trying. This is &lt;em&gt;difficult&lt;/em&gt;, which I think reveals just how much we flit between tasks in the course of a day. I haven&amp;#39;t managed to do it well yet.&lt;/p&gt;
&lt;p&gt;Open a new note. Just a blank text file will do, it&amp;#39;s not forever. Now, as you go through your day, every time you&amp;#39;re doing &lt;em&gt;something&lt;/em&gt;, identify what that thing is in your Johnny.Decimal system.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m at work all day. So whatever I&amp;#39;m doing has to be represented there &lt;em&gt;somewhere&lt;/em&gt;. Am I working on a &lt;code&gt;21 product&lt;/code&gt; or &lt;code&gt;31 marketing&lt;/code&gt;? Helping &lt;code&gt;33 customers&lt;/code&gt;? To make this easier as you start out it&amp;#39;s good enough to note a category or even an area number. But an ID is better.&lt;/p&gt;
&lt;p&gt;By the end of the day this note should be like a run-sheet of all the stuff you did. Every time you switch, update it.&lt;/p&gt;
&lt;p&gt;Can you do it?&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0145 &apos;Creative outputs&apos; should link back to an ID</title><link>https://johnnydecimal.com/22.00.0145/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0145/</guid><description>They aren&apos;t standalone things. What was the job for? Link it back there.</description><pubDate>Thu, 16 Oct 2025 07:54:15 GMT</pubDate><content:encoded>&lt;h1 id=&quot;creative-outputs-should-link-back-to-an-id&quot;&gt;&amp;#39;Creative outputs&amp;#39; should link back to an ID&lt;/h1&gt;
&lt;p&gt;When using &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;the creative pattern&lt;/a&gt;, it&amp;#39;s important to note that &lt;strong&gt;creative outputs&lt;/strong&gt; should always relate back to one of the other IDs in your system. They aren&amp;#39;t things in and of themselves: they&amp;#39;re always in service of something else.&lt;/p&gt;
&lt;p&gt;Think of it like this. When Lucy was a creative professional (copywriter), she was tasked by the &amp;#39;account service&amp;#39; team to do some &amp;#39;creative output&amp;#39;. She says that they were never allowed to start work without a &amp;#39;job code&amp;#39;: to which customer and project does this work belong, and to whom is it billed?&lt;/p&gt;
&lt;p&gt;The &amp;#39;job code&amp;#39; is one of the other IDs in your system. &lt;em&gt;Why&lt;/em&gt; are you doing this piece of creative work? What is it &lt;em&gt;for&lt;/em&gt;?&lt;/p&gt;
&lt;h3 id=&quot;our-current-video-projects&quot;&gt;Our current video projects&lt;/h3&gt;
&lt;p&gt;In my current system, right now, we have a bunch of IDs in the &lt;code&gt;500xx&lt;/code&gt; range where we&amp;#39;re recording and producing videos for the &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/32.01/&quot;&gt;Be better at computer&lt;/a&gt;&amp;#39; series and the upcoming &amp;#39;Task and Project Management&amp;#39; course for &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt;. Each of those things has its own ID:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;21.41 JDU Task &amp;amp; Project Management&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;31.21 Be better at computer&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;…and that&amp;#39;s where I&amp;#39;m tracking the video series: which episodes we&amp;#39;re recording, my inbox of ideas, all of that high-level stuff.&lt;/p&gt;
&lt;p&gt;But when I set up my computer, plug in the microphone, and put the camera on the tripod, that all gets saved in a new folder down at &lt;code&gt;50-59&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;So there&amp;#39;s a one-to-many relationship from the &lt;em&gt;parent ID&lt;/em&gt; -- the &amp;#39;job code&amp;#39;, if you like -- to the &lt;em&gt;creative output&lt;/em&gt;. You should use your JDex to create this link, if it isn&amp;#39;t obvious from the name of the creative job.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0145A-Parent_to_child--0-original-light-cx-984x610.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0145A-Parent_to_child--0-original-dark-cx-984x610.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0145A-Parent_to_child--0-original-light-cx-984x610.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0145A-Parent_to_child--0-original-dark-cx-984x610.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Two simple mindmaps showing the parent IDs as noted above, each with a handful of child IDs in the 500xx range.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0145A-Parent_to_child--0-original-light-cx-984x610.png&quot; width=&quot;492&quot; height=&quot;305&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;50-59-is-your-workshop&quot;&gt;50-59 is your workshop&lt;/h3&gt;
&lt;p&gt;We like to use the analogy of a workshop or a shed. That&amp;#39;s what the &lt;code&gt;50-59&lt;/code&gt; area is for. You go in there and you have a bunch of wood and tools and you bang about a bit and you make a chair.&lt;/p&gt;
&lt;p&gt;But &lt;em&gt;why did you make the chair&lt;/em&gt;? You still need an ID somewhere else in your system that&amp;#39;s tracking the fact that you make and sell chairs. Because as a chair-maker, you&amp;#39;ll make another chair.&lt;/p&gt;
&lt;h3 id=&quot;see-bbac-002&quot;&gt;See BBaC #002&lt;/h3&gt;
&lt;p&gt;Speaking of the video series, I also spoke about this in the members-only segment at &lt;code&gt;08:13&lt;/code&gt; in &lt;a href=&quot;https://jdhq.johnnydecimal.com/jdu/bbac/002&quot;&gt;episode 002&lt;/a&gt; (JDU membership required). It&amp;#39;s a common confusion. I&amp;#39;m happy to keep clarifying: let me know what you need.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0144 Use your Desktop</title><link>https://johnnydecimal.com/22.00.0144/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0144/</guid><description>A tip via Lucy.</description><pubDate>Wed, 15 Oct 2025 09:24:08 GMT</pubDate><content:encoded>&lt;h1 id=&quot;use-your-desktop&quot;&gt;Use your Desktop&lt;/h1&gt;
&lt;p&gt;We all know you shouldn&amp;#39;t permanently store documents on your Desktop.&lt;/p&gt;
&lt;p&gt;Right? If you don&amp;#39;t know that, call me for some one-on-one time.&lt;/p&gt;
&lt;p&gt;But your Desktop isn&amp;#39;t &lt;em&gt;useless&lt;/em&gt;. We gravitate towards it for a reason: it&amp;#39;s &lt;em&gt;right there&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;So this tip, via Lucy: store that document where it should be, in a neat JD ID. But if you&amp;#39;re using it all the time, create an &amp;#39;alias&amp;#39; or &amp;#39;shortcut&amp;#39; on your Desktop.&lt;/p&gt;
&lt;p&gt;This is a &lt;em&gt;pointer&lt;/em&gt; to the file, but it isn&amp;#39;t the file. So when you&amp;#39;re not using it any more, you can delete the alias, and the file remains.&lt;/p&gt;
&lt;h3 id=&quot;mac&quot;&gt;Mac&lt;/h3&gt;
&lt;p&gt;Right-click the file, &lt;strong&gt;Make Alias&lt;/strong&gt;. Now you&amp;#39;ll have another icon with a little arrow in the corner. Drag it to your Desktop.&lt;/p&gt;
&lt;h3 id=&quot;windows&quot;&gt;Windows&lt;/h3&gt;
&lt;p&gt;The same, but it&amp;#39;s &lt;strong&gt;Create shortcut&lt;/strong&gt;. You might have to click &lt;strong&gt;Show more options&lt;/strong&gt; first.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0143 Rebuilding the site (again) (slowly)</title><link>https://johnnydecimal.com/22.00.0143/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0143/</guid><description>I&apos;d like to freshen up the site. But I&apos;d also like to freshen up my brain.</description><pubDate>Tue, 14 Oct 2025 06:10:17 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rebuilding-the-site-again-slowly&quot;&gt;Rebuilding the site (again) (slowly)&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve started to rebuild this site. It doesn&amp;#39;t really need a rebuild, it&amp;#39;s a bit of a waste of my time, but I want to do it anyway. Don&amp;#39;t hold your breath for the result; this is an after-hours hobby project.&lt;/p&gt;
&lt;p&gt;I learn so much every time I build a new thing. Have I ever mentioned that I&amp;#39;m not a trained developer? I&amp;#39;m self-taught, and personally I find building an actual thing, that I need, more motivating than following along with some course.&lt;/p&gt;
&lt;p&gt;But there&amp;#39;s more to it. I use &lt;a href=&quot;https://www.claude.com/product/claude-code&quot;&gt;Claude Code&lt;/a&gt; and in many regards it&amp;#39;s a godsend. JDHQ wouldn&amp;#39;t exist (yet) without it. I feel coding is where AI really shines: I don&amp;#39;t want it to write my words for me, but I&amp;#39;m happy to call upon the collective wisdom when I need code that calls a payments API.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-api&quot; id=&quot;user-content-fnref-api&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;That code has been written 100,000 times before. There&amp;#39;s no craft in me re-writing it; my version wouldn&amp;#39;t be better. Certainly it&amp;#39;d be worse. This is exactly the situation where the average of all that has come before -- or &amp;#39;a pattern&amp;#39;, you might call it -- is desirable.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I feel the opposite, very strongly, about words: you&amp;#39;ll never, ever read a word from me that was written by AI. Because that &lt;em&gt;is&lt;/em&gt; about personal expression. You might feel the same about my code; I do not.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;but-jeez-it-makes-you-stupid&quot;&gt;But jeez it makes you stupid&lt;/h3&gt;
&lt;p&gt;Practice has made perfect for millennia, and so when one fails to practice, what should one expect?&lt;/p&gt;
&lt;p&gt;Claude is insidious. You use it a bit, now it did the last bit for you, now you understand it less, so you get it to do the &lt;em&gt;next&lt;/em&gt; bit for you, even though you know you should do it yourself, but that would involve re-learning the bit you got it to do for you…&lt;/p&gt;
&lt;p&gt;…and now you feel really disconnected from the thing you made. That scares me. These things I make are how I earn my living. Imagine earning your living from a thing you didn&amp;#39;t understand.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-economist&quot; id=&quot;user-content-fnref-economist&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; What happens next? What when it goes wrong? Or your AI tool disappears, or changes such that it&amp;#39;s no longer useful, or they hike the price 10× (spoiler: inevitable).&lt;/p&gt;
&lt;h3 id=&quot;i-enjoy-coding&quot;&gt;I &lt;em&gt;enjoy&lt;/em&gt; coding&lt;/h3&gt;
&lt;p&gt;And I like coding. I like knowing how it all works. The satisfaction when you build a thing, a nice thing, is immense. I&amp;#39;ve worked hard to get here.&lt;/p&gt;
&lt;p&gt;So the rebuild is a reason to love it again. I&amp;#39;m going to consolidate a bunch of stuff, standardise some of my look-and-feel, freshen it up for 2025. I&amp;#39;ve got some proofs already and it is &lt;em&gt;nice&lt;/em&gt;. Nothing radical, don&amp;#39;t worry. Same look, cleaned up.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not saying I won&amp;#39;t use Claude; that&amp;#39;d be like saying I won&amp;#39;t use the web. It&amp;#39;s too useful to not use. But I&amp;#39;m going to make sure that I use it &lt;em&gt;like I use the web&lt;/em&gt;. As a resource, a guide. A way to read documentation. To learn.&lt;/p&gt;
&lt;p&gt;But it won&amp;#39;t write anything for me. That&amp;#39;s my job. That&amp;#39;s my &lt;em&gt;hobby&lt;/em&gt; and dammit I want it back.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-api&quot;&gt;
&lt;p&gt;Translated from nerd talk, this means that when you add something to your cart and click &amp;#39;buy&amp;#39;, I need to send a bunch of data to &lt;a href=&quot;https://stripe.com&quot;&gt;Stripe&lt;/a&gt;, my payment processor, then listen for their response, and do things with that response so that you get an email with a link to create an account.&lt;/p&gt;
&lt;p&gt;This all has to be &lt;em&gt;exactly right&lt;/em&gt;, and isn&amp;#39;t the sort of place you want to go exercising your creative freedom. &lt;a href=&quot;#user-content-fnref-api&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-economist&quot;&gt;
&lt;p&gt;Now you&amp;#39;re an economist! lol &lt;a href=&quot;#user-content-fnref-economist&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0142 Naming hard drives</title><link>https://johnnydecimal.com/22.00.0142/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0142/</guid><description>Naming your hard drives can be tricky. And what do you do with all those stickers? Ah-ha! A beautiful synergy.</description><pubDate>Mon, 13 Oct 2025 08:48:06 GMT</pubDate><content:encoded>&lt;h1 id=&quot;naming-hard-drives&quot;&gt;Naming hard drives&lt;/h1&gt;
&lt;p&gt;If you&amp;#39;re like me you&amp;#39;ve got a bunch of external hard drives, SSDs, and thumb drives. And if you&amp;#39;re like me you abhor the default name. Like hell I&amp;#39;m storing my data on &lt;code&gt;SANDISK 64GB&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;So what to call them? Well, go to that drawer of stickers. Find one that fits. Stick it on. Voilà.&lt;/p&gt;
&lt;p&gt;I present our SanDisk Extreme 2TB: &lt;code&gt;beachball&lt;/code&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the SSD with a pink and white beachball sticker.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0142A-Beachball--0-original-cx-667x1297.JPG&quot; width=&quot;333&quot; height=&quot;649&quot;&gt;  &lt;/picture&gt; 
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0141 Use the numbers (Luke…)</title><link>https://johnnydecimal.com/22.00.0141/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0141/</guid><description>Don&apos;t go clicking around your filesystem when a JD ID can get you there instantly.</description><pubDate>Sun, 12 Oct 2025 03:06:19 GMT</pubDate><content:encoded>&lt;h1 id=&quot;use-the-numbers-luke&quot;&gt;Use the numbers (Luke…)&lt;/h1&gt;
&lt;p&gt;These IDs of yours. Handy little things. Use them.&lt;/p&gt;
&lt;p&gt;When you go to save a thing and that &lt;em&gt;where do you want to save it?&lt;/em&gt; dialog pops up, don&amp;#39;t go clicking around like an amateur! You&amp;#39;re better than that. Use the &lt;del&gt;force…&lt;/del&gt; built-in features of your operating system.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0141A-Save--0-light-cx-2040x1344.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0141A-Save--0-dark-cx-2040x1344.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0141A-Save--0-light-cx-2040x1344.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0141A-Save--0-dark-cx-2040x1344.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the standard file save dialog. The first thing highlighted is the search feature, into which I&apos;ve typed &apos;21.41&apos;. This has revealed those folders in the main view. Second highlight is the fact that I&apos;m sorting by &apos;date modified&apos;. Third highlight is the folder that I want to save this file in.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0141A-Save--0-light-cx-2040x1344.png&quot; width=&quot;1020&quot; height=&quot;672&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0141A. It&amp;#39;s basically the same on Windows.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;ol&gt;
&lt;li&gt;In the search box, type the number of the folder you want. I remember this one as I&amp;#39;ve been working on it for weeks now.&lt;/li&gt;
&lt;li&gt;It can&amp;#39;t hurt to sort by date modified. Pop the recent stuff to the top.&lt;/li&gt;
&lt;li&gt;That&amp;#39;s the folder I want! Select it.&lt;/li&gt;
&lt;li&gt;Done. What was that, 3 seconds?&lt;/li&gt;
&lt;/ol&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0140 A regional Japanese mall</title><link>https://johnnydecimal.com/22.00.0140/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0140/</guid><description>Walk somewhere uninteresting sometimes.</description><pubDate>Sat, 11 Oct 2025 10:45:27 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-regional-japanese-mall&quot;&gt;A regional Japanese mall&lt;/h1&gt;
&lt;p&gt;We walked to the Aeon Mall in &lt;a href=&quot;https://www.openstreetmap.org/?mlat=39.68374&amp;mlon=141.12814#map=13/39.68374/141.12814&quot;&gt;Motomiya, Morioka&lt;/a&gt; today. It wasn&amp;#39;t far -- a couple of kilometres. After a few beautiful weeks, today was a cloudy, forgettable day.&lt;/p&gt;
&lt;p&gt;The mall felt very &amp;#39;regional&amp;#39;; a word Lucy and I use with some affection. To us, it means a place that just &lt;em&gt;is what it is&lt;/em&gt;. Just a place that people go. No big story. Life, going on. I love that. It&amp;#39;s why I travel. To be with people, in their life.&lt;/p&gt;
&lt;p&gt;We passed through a tiny, empty park. Not even a park. An open area with some slides. I can&amp;#39;t imagine it&amp;#39;s ever seen more than a handful of Australians. A regional park. There was nobody there. I should have taken a photo. It would have been melancholy. I don&amp;#39;t take photos.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;This&lt;/em&gt; is being in a place, to me. This is why we stay in a place for months at a time. We learn it. We walk to its regional malls. You know what we got, in this regional Japanese mall? McDonald&amp;#39;s. You know what Japanese people eat sometimes? McDonald&amp;#39;s. Then we walked back.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>32.01 Be better at computer</title><link>https://johnnydecimal.com/30-39-the-library/32-education/32.01-be-better-at-computer/</link><guid isPermaLink="true">https://johnnydecimal.com/30-39-the-library/32-education/32.01-be-better-at-computer/</guid><description>Our weekly YouTube series where we show you how to be better at computer. Realistic, practical tips to help you work better, with more focus, and less stress.</description><pubDate>Fri, 10 Oct 2025 23:32:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;be-better-at-computer&quot;&gt;Be better at computer&lt;/h1&gt;
&lt;p&gt;A &lt;a href=&quot;https://www.youtube.com/playlist?list=PLtBN5zRaar6pB7QvoCjsMDMNl-DzYTkRA&quot;&gt;YouTube series&lt;/a&gt; where we&amp;#39;ll show you how to be better at computer. Realistic, practical tips to help you work better, with more focus, and less stress.&lt;/p&gt;
&lt;p&gt;JDU members get it a day early, with bonus content, without the ads.&lt;/p&gt;
&lt;h3 id=&quot;update-2026-01-22&quot;&gt;Update 2026-01-22&lt;/h3&gt;
&lt;p&gt;We&amp;#39;re looking at all of our YouTube content and working out a more cohesive plan for 2026. Keep an eye on &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;the channel&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0139 Give things stupid names</title><link>https://johnnydecimal.com/22.00.0139/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0139/</guid><description>&apos;Serious&apos; names are boring. Boring concepts don&apos;t anchor in your brain. Have some fun and you&apos;ll remember more.</description><pubDate>Fri, 10 Oct 2025 00:17:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;give-things-stupid-names&quot;&gt;Give things stupid names&lt;/h1&gt;
&lt;p&gt;I&amp;#39;m just consolidating a bunch of ideas at &lt;code&gt;31.01 Marketing inbox&lt;/code&gt;. This is where I stash thoughts that I might use for blog posts, YouTube videos (upcoming series! &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;look out…&lt;/a&gt;), social media -- whatever.&lt;/p&gt;
&lt;p&gt;I might use an idea in one or more of those places, so I&amp;#39;m testing out a way of moving a task in Things through these phases. It&amp;#39;s either new, or I&amp;#39;ve used it in one or more places, or I&amp;#39;ve exhausted its potential and it can be completed.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m doing this by using headers in Things, moving the task between the headers. (&lt;strong&gt;Cmd+↑/Cmd+↓&lt;/strong&gt; makes this really easy -- always use the keyboard shortcut!) It&amp;#39;s simple, and effective.&lt;/p&gt;
&lt;h3 id=&quot;have-a-bit-of-fun&quot;&gt;Have a bit of fun&lt;/h3&gt;
&lt;p&gt;What&amp;#39;s boring? &lt;strong&gt;New&lt;/strong&gt; → &lt;strong&gt;In progress&lt;/strong&gt; → &lt;strong&gt;Complete&lt;/strong&gt;. What isn&amp;#39;t? Tea!&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0139A-Things--0-light-cx-1516x1330.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0139A-Things--0-dark-cx-1516x1330.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0139A-Things--0-light-cx-1516x1330.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0139A-Things--0-dark-cx-1516x1330.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of things. I describe it in the following paragraph.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0139A-Things--0-light-cx-1516x1330.png&quot; width=&quot;758&quot; height=&quot;665&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;A new idea is &lt;strong&gt;fresh tea&lt;/strong&gt;. Something in production is &lt;strong&gt;brewing&lt;/strong&gt;. Then we all know you shouldn&amp;#39;t, but when needs must you can usually eke another cup out of a bag you&amp;#39;ve already used.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-leaf&quot; id=&quot;user-content-fnref-leaf&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Then at some point you have to acknowledge that what remains is &lt;strong&gt;dregs&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Dumb, but free, and a nicer place to spend your day.&lt;/p&gt;
&lt;h3 id=&quot;people-crave-this-at-work&quot;&gt;People crave this at work&lt;/h3&gt;
&lt;p&gt;People used to enjoy working with me. You know why? Because I wasn&amp;#39;t &lt;em&gt;really really boring&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s so easy to be really really boring at work. Don&amp;#39;t rock the boat, right? For evidence, open LinkedIn. (Please don&amp;#39;t open LinkedIn.) But being just a tiny bit &lt;em&gt;not boring&lt;/em&gt; can be a great relief.&lt;/p&gt;
&lt;p&gt;You won&amp;#39;t get fired for giving something a stupid name. But you will be remembered.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-leaf&quot;&gt;
&lt;p&gt;Leaf tea being superior, but I had to leave &lt;a href=&quot;https://avantihomewares.com/modena-double-wall-teapot-600ml-stainless-steel/&quot;&gt;our teapot&lt;/a&gt; in Australia. &lt;a href=&quot;#user-content-fnref-leaf&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0138 Delete things</title><link>https://johnnydecimal.com/22.00.0138/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0138/</guid><description>Being neat !== being a digital hoarder.</description><pubDate>Thu, 09 Oct 2025 04:40:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;delete-things&quot;&gt;Delete things&lt;/h1&gt;
&lt;p&gt;Just because I advocate for neatness doesn&amp;#39;t mean I think you should keep everything forever.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m just reconfiguring my mailing list and came across this screen in the excellent (and &lt;a href=&quot;https://en.wikipedia.org/wiki/Free_and_open-source_software&quot;&gt;FOSS&lt;/a&gt;) &lt;a href=&quot;https://listmonk.app&quot;&gt;Listmonk&lt;/a&gt; mailing list software.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0138A-Listmonk--0-original-light-cx-2138x874.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0138A-Listmonk--0-original-dark-cx-2138x874.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0138A-Listmonk--0-original-light-cx-2138x874.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0138A-Listmonk--0-original-dark-cx-2138x874.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Listmonk&apos;s &apos;templates&apos;. It&apos;s a web console thing. There are 5 templates and I don&apos;t know what 4 of them are.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0138A-Listmonk--0-original-light-cx-2138x874.png&quot; width=&quot;1069&quot; height=&quot;437&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;These are the templates that you use when you send an outbound email. I tinkered with this back in July and I know that I &lt;em&gt;always&lt;/em&gt; want to use &lt;em&gt;one&lt;/em&gt; of these templates.&lt;/p&gt;
&lt;p&gt;Hmm. But which one was it?&lt;/p&gt;
&lt;h3 id=&quot;less-choice-is-less-friction&quot;&gt;Less choice is less friction&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s a common theme around here: less choice is to be embraced. Design &lt;em&gt;fewer&lt;/em&gt; areas and categories, not more.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Is this the first time I&amp;#39;ve mentioned Barry Schwartz&amp;#39; &lt;a href=&quot;https://www.youtube.com/watch?v=VO6XEQIsCoM&quot;&gt;Paradox of Choice&lt;/a&gt;?! It can&amp;#39;t be but it seems so. That link was the TED talk; it&amp;#39;s also &lt;a href=&quot;https://en.wikipedia.org/wiki/The_Paradox_of_Choice&quot;&gt;a book&lt;/a&gt; and is worth a read.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This isn&amp;#39;t quite the paradox of choice, but the idea is the same: why have all of these choices? Are they good? Helpful? No! In this case they&amp;#39;re just confusing. I don&amp;#39;t remember which one I want. They slow me down.&lt;/p&gt;
&lt;p&gt;I think we keep things around just in case. &lt;em&gt;What if&lt;/em&gt; I wanted to use one of these templates later? Is there some setting in there that I couldn&amp;#39;t recreate? Something I might look at and learn from?&lt;/p&gt;
&lt;p&gt;Eh, there might be. But probably not. Life would be better -- a tiny bit, but surely -- if I deleted the four templates I didn&amp;#39;t use. So I just did.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0137 Your JDex is your PKM</title><link>https://johnnydecimal.com/22.00.0137/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0137/</guid><description>Misconception: you have your JDex, and you have a PKM system. No: they&apos;re the same thing.</description><pubDate>Thu, 09 Oct 2025 00:04:40 GMT</pubDate><content:encoded>&lt;h1 id=&quot;your-jdex-is-your-pkm&quot;&gt;Your JDex is your PKM&lt;/h1&gt;
&lt;p&gt;It might be &lt;a href=&quot;https://johnnydecimal.com/22.00.0112/&quot;&gt;my fault&lt;/a&gt;, but there can be confusion between what&amp;#39;s &lt;em&gt;your Johnny.Decimal system&lt;/em&gt; and, for those of you who are into &amp;#39;personal knowledge management&amp;#39;, what&amp;#39;s &lt;em&gt;your PKM system&lt;/em&gt;.&lt;/p&gt;
&lt;h3 id=&quot;whats-pkm&quot;&gt;What&amp;#39;s PKM?&lt;/h3&gt;
&lt;p&gt;If you&amp;#39;re &lt;em&gt;not&lt;/em&gt; into PKM, here&amp;#39;s a quick primer. People enjoy storing &amp;#39;personal knowledge&amp;#39;: facts and thoughts and notes about whatever it is that they&amp;#39;re doing or learning or &lt;em&gt;anything&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Then they like thinking about exactly &lt;em&gt;how&lt;/em&gt; to store this personal knowledge, because if you just chuck a bunch of notes in a folder you&amp;#39;re unlikely to have a good time. That just became &lt;em&gt;personal knowledge management&lt;/em&gt;, or PKM.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s massive. Some significant percentage of YouTube is taken up by PKM. Discords and forums abound. Creators-a-plenty worship the god that is PKM.&lt;/p&gt;
&lt;h3 id=&quot;whats-not-pkm&quot;&gt;What&amp;#39;s &lt;em&gt;not&lt;/em&gt; PKM?&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ve never framed Johnny.Decimal as PKM; ref. &lt;a href=&quot;https://johnnydecimal.com/22.00.0112/&quot;&gt;that post&lt;/a&gt; I linked at the start. This is a conscious decision: for those who &lt;em&gt;aren&amp;#39;t&lt;/em&gt; into all that, and just want a way to neatly organise their files, I don&amp;#39;t want it to feel like you have to join a cult just to be organised. You don&amp;#39;t. You can keep it simple, be organised, and play outside.&lt;/p&gt;
&lt;p&gt;But of course there isn&amp;#39;t a clean break between these things. The Venn diagram of JD×PKM would look like a solar eclipse. So how do the two intersect?&lt;/p&gt;
&lt;h3 id=&quot;jd-is-your-pkm&quot;&gt;JD &lt;em&gt;is&lt;/em&gt; your PKM&lt;/h3&gt;
&lt;p&gt;The misconception is that you have this Johnny.Decimal system -- say, &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; -- &lt;strong&gt;and&lt;/strong&gt; you have a PKM system. That might look like this.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0137A-Before--0-light-cx-1514x1188.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0137A-Before--0-dark-cx-1514x1188.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0137A-Before--0-light-cx-1514x1188.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0137A-Before--0-dark-cx-1514x1188.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Two mindmaps. The upper has 5 IDs from each of the categories of the Life Admin System. The lower has 5 random notes.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0137A-Before--0-light-cx-1514x1188.png&quot; width=&quot;757&quot; height=&quot;594&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;All I mean when I say that &lt;em&gt;JD is your PKM&lt;/em&gt; is that every piece of personal knowledge that you would like to manage &lt;em&gt;must be linked to an ID in your system&lt;/em&gt;. In our highly contrived, too-neat-to-be-real example, it looks like this.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0137B-After--0-light-cx-2532x600.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0137B-After--0-dark-cx-2532x600.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0137B-After--0-light-cx-2532x600.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0137B-After--0-dark-cx-2532x600.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The two mindmaps now lie side-by-side, and the nodes join. IDs are notes are IDs. Same thing.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0137B-After--0-light-cx-2532x600.png&quot; width=&quot;1266&quot; height=&quot;300&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0137B. Right-click and open in new tab to embiggen.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;nothing-doesnt-have-an-id&quot;&gt;Nothing doesn&amp;#39;t have an ID&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s all it is. If you&amp;#39;re a good Decimal there should be no notion of &lt;em&gt;a thing&lt;/em&gt; in your life that you can&amp;#39;t fit into one of your IDs. That applies to personal knowledge in exactly the same what that it applies to your electricity bill or the confirmation of the flight you just booked.&lt;/p&gt;
&lt;p&gt;And if you don&amp;#39;t have an ID? Create one. You might need to create a new area or category to hold it. Do that.&lt;/p&gt;
&lt;h3 id=&quot;how-do-i-pkm-is-answered&quot;&gt;&amp;#39;How do I PKM?&amp;#39; is answered&lt;/h3&gt;
&lt;p&gt;So the question of how to organise one&amp;#39;s personal knowledge is that you organise it just like anything else. In a neat system, where nothing is buried too deep, where like concepts live near each other.&lt;/p&gt;
&lt;p&gt;Johnny.Decimal, in other words.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0136 Be a better human (a technique, not an order)</title><link>https://johnnydecimal.com/22.00.0136/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0136/</guid><description>An idea I&apos;m trying out to get some of the stuff done that seems to otherwise go un-done.</description><pubDate>Wed, 08 Oct 2025 00:28:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;be-a-better-human-a-technique-not-an-order&quot;&gt;Be a better human (a technique, not an order)&lt;/h1&gt;
&lt;p&gt;I&amp;#39;m recording a new video course for &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt;, working title &lt;em&gt;Task &amp;amp; Project Management using Johnny.Decimal&lt;/em&gt;. I&amp;#39;m tackling (again!) the age-old problem of &amp;#39;getting stuff done&amp;#39;.&lt;/p&gt;
&lt;p&gt;(No, I don&amp;#39;t think it&amp;#39;s a solved problem. Yes, I have my own ideas. They&amp;#39;re really helping me.)&lt;/p&gt;
&lt;p&gt;In doing so, I&amp;#39;ve realised that there&amp;#39;s a class of task which seems to go un-done. It&amp;#39;s the stuff that isn&amp;#39;t &lt;em&gt;truly&lt;/em&gt; important, otherwise you&amp;#39;d do it, because you just have to. You just &lt;em&gt;have to&lt;/em&gt; pay your credit card, so you find the time.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the next level down. Stuff that you want to do, and that if you do manage to do, would make you feel like a better human. So let&amp;#39;s just allocate some time to it, and decide: &lt;strong&gt;be a better human&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I do this by blocking out an hour of my calendar every day.&lt;/p&gt;
&lt;h3 id=&quot;this-morning-boring-documentation-for-my-business&quot;&gt;This morning: boring documentation for my business&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;I swear the point of this post wasn&amp;#39;t to promote these links, but it&amp;#39;s too good an example not to use.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I have a &lt;a href=&quot;https://ko-fi.com/johnnydecimal&quot;&gt;Ko-fi&lt;/a&gt; and a &lt;a href=&quot;https://www.patreon.com/c/johnnydecimal&quot;&gt;Patreon&lt;/a&gt; that are scarcely used -- I&amp;#39;d rather you buy a useful product -- but that do generate some income. (If that&amp;#39;s you, thanks!)&lt;/p&gt;
&lt;p&gt;Each of those connects to one of two PayPal accounts, and/or one of two Stripe accounts! And each of &lt;em&gt;those&lt;/em&gt; accounts has settings for when and if it automatically pays out to a bank account, and if so, which one.&lt;/p&gt;
&lt;p&gt;So when Lucy, who keeps an eye on our finances, asks whether we have any spare Patreon money and how she might get it, and &lt;em&gt;yet again&lt;/em&gt; I scrunch up my face and say … &lt;code&gt;¯\_(ツ)_/¯&lt;/code&gt; … then, yeah, it&amp;#39;s time to trawl those sites and just write it down.&lt;/p&gt;
&lt;h3 id=&quot;oh-my-god-that-sounds-boring&quot;&gt;Oh my god that sounds boring!&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;RIGHT&lt;/strong&gt;? &lt;em&gt;Riiiiiight&lt;/em&gt;. Really really tedious. And so I look at that task and I think, &lt;em&gt;ha!&lt;/em&gt;, like I&amp;#39;m doing &lt;em&gt;you&lt;/em&gt; today. And so months go by, and every time Lucy asks me, I still just dunno.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s kinda pathetic.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;So&lt;/em&gt;. That&amp;#39;s what I did this morning. I took about 45 minutes and I went through all of those sites and at &lt;code&gt;13.22 Accounts that deliver income&lt;/code&gt; and &lt;code&gt;32.13 Stripe&lt;/code&gt; in my &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;SBS&lt;/a&gt; I wrote a bunch of notes that link to each other that explain the situation.&lt;/p&gt;
&lt;p&gt;And I feel like a better human for having done so.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0135 Start with a mindmap</title><link>https://johnnydecimal.com/22.00.0135/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0135/</guid><description>You can never go wrong if you start with a mindmap.</description><pubDate>Mon, 06 Oct 2025 21:53:36 GMT</pubDate><content:encoded>&lt;h1 id=&quot;start-with-a-mindmap&quot;&gt;Start with a mindmap&lt;/h1&gt;
&lt;p&gt;Over on Discord, &lt;strong&gt;@MDMooreUK&lt;/strong&gt; &lt;a href=&quot;https://discord.com/channels/822215537589354566/1354950957338988655/1424824411298599063&quot;&gt;asked the Small Business group&lt;/a&gt; a fairly complex question about their business setup.&lt;/p&gt;
&lt;p&gt;Maybe it&amp;#39;s because &amp;#39;I&amp;#39;m a visual learner&amp;#39; (warning: &lt;a href=&quot;https://kagi.com/search?q=science+debunk+visual+vs+word+think+learner&amp;r=au&amp;sh=e5BTDtQnUGNWGWaDS9Sr8A&quot;&gt;not actual science&lt;/a&gt;), but I find this sort of thing &lt;em&gt;much&lt;/em&gt; easier to approach if I crack open a mindmap. My love for &lt;a href=&quot;https://www.mindnode.com&quot;&gt;MindNode&lt;/a&gt; is well known, but use whatever you have.&lt;/p&gt;
&lt;h3 id=&quot;turn-words-in-to-nodes&quot;&gt;Turn words in to nodes&lt;/h3&gt;
&lt;p&gt;My first step is to just read through the question and pull out the key parts. While you&amp;#39;re here you might as well loosely organise in to concepts.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s important to realise that you&amp;#39;re not creating some work of art here. Often enough I don&amp;#39;t even save these files: I just use them as a scratchpad for my mind. So on the left, I&amp;#39;ve extracted what I thought were the key parts of the original question.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0135A-Mindmap--0-light-3726x2402.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0135A-Mindmap--0-dark-3726x2402.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0135A-Mindmap--0-light-3726x2402.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0135A-Mindmap--0-dark-3726x2402.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of a mindmap. There are two, one on the left, one on the right. On the left I&apos;ve pulled out the key parts of the original question. There are about 20 leaf nodes loosely organised. On the right I&apos;ve shown a partial Small Business structure, allowing me to link left to right to indicate which bits I think should go where.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0135A-Mindmap--0-light-3726x2402.png&quot; width=&quot;1863&quot; height=&quot;1201&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0135A. Right-click and &amp;#39;open in new tab&amp;#39; for full size.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;create-links&quot;&gt;Create links&lt;/h3&gt;
&lt;p&gt;The point of this is to link these concepts in my mind, and to convey them to others. I was trying to type out a response on Discord and wished I was on camera, waving my arms around. &amp;#39;&lt;em&gt;This&lt;/em&gt; links to &lt;em&gt;that&lt;/em&gt;&amp;#39;, I&amp;#39;d be saying.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s when I realised the mindmap was the answer. So on the right I&amp;#39;ve extracted key parts of the &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;SBS&lt;/a&gt;, and I&amp;#39;ve linked the two maps together (&lt;strong&gt;Cmd+Shift+L&lt;/strong&gt; in MindNode) and added some comments to the links.&lt;/p&gt;
&lt;h3 id=&quot;brings-an-idea-to-life-breaks-it-up&quot;&gt;Brings an idea to life; breaks it up&lt;/h3&gt;
&lt;p&gt;For me, this immediately brings the idea to life. And now we have a simple diagram that we can talk to, and specific parts that we can focus on. Rather than one mega-question, now we have a bunch of sub-questions. Much more manageable.&lt;/p&gt;
&lt;p&gt;If in doubt, crack open MindNode.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0134 The previous post has been updated</title><link>https://johnnydecimal.com/22.00.0134/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0134/</guid><description>A site update notification.</description><pubDate>Wed, 24 Sep 2025 22:13:47 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-previous-post-has-been-updated&quot;&gt;The previous post has been updated&lt;/h1&gt;
&lt;p&gt;FYI, the previous post, &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/22.00.0133/&quot;&gt;Extend-the-end: a deep-dive&lt;/a&gt;&amp;#39; has been updated.&lt;/p&gt;
&lt;p&gt;Added:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pattern 1 &amp;gt; &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0133-extend-the-end-deep-dive/#example&quot;&gt;Example&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Pattern 1 &amp;gt; &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0133-extend-the-end-deep-dive/#folders-in-your-filesystem&quot;&gt;Folders in your filesystem&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Pattern 2 &amp;gt; &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0133-extend-the-end-deep-dive/#date-as-short-code&quot;&gt;Date as short code&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Pattern 2 &amp;gt; &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0133-extend-the-end-deep-dive/#double-chain-short-codes&quot;&gt;Double-chain short codes&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0133-extend-the-end-deep-dive/#pattern-3-use-it-to-store-notes-outside-your-main-system&quot;&gt;Pattern 3&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0133 Extend-the-end: a deep-dive</title><link>https://johnnydecimal.com/22.00.0133/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0133/</guid><description>A deeper look at the &apos;extend-the-end&apos; pattern documented at 13.31.</description><pubDate>Sat, 13 Sep 2025 04:38:48 GMT</pubDate><content:encoded>&lt;h1 id=&quot;extend-the-end-a-deep-dive&quot;&gt;Extend-the-end: a deep-dive&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;Extend-the-end&lt;/a&gt; (EtE) is a new pattern that is still finding its feet in the real world. Here&amp;#39;s a deep-dive and discussion of the use cases that I see on the &lt;a href=&quot;https://johnnydecimal.com/23/&quot;&gt;forum &amp;amp; Discord&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;pattern-1-lifting-up-a-header&quot;&gt;Pattern 1: &amp;#39;lifting up&amp;#39; a header&lt;/h2&gt;
&lt;p&gt;You have some ID, and in that ID you can hold a whole bunch of information. Let&amp;#39;s say you keep one long JDex entry with neat headers.&lt;/p&gt;
&lt;p&gt;The simplest way to think about EtE is to imagine &amp;#39;lifting up&amp;#39; each of those headers into its own document. Because eventually that single note is going to get really long.&lt;/p&gt;
&lt;p&gt;So this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 11.11 Some note

## Header about thing A
Yada yada blah blah for 10,000 words…

## Header about thing B
Blah blah yada yada for 15,000 words…
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;– is going to become 3 notes. We keep the parent&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;11.11 Some note&lt;/code&gt;, and introduce&lt;/li&gt;
&lt;li&gt;&lt;code&gt;11.11+ Header about thing A&lt;/code&gt; and&lt;/li&gt;
&lt;li&gt;&lt;code&gt;11.11+ Header about thing B&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;format-acidtitle-of-the-thing&quot;&gt;Format: AC.ID+▁Title of the thing&lt;/h3&gt;
&lt;p&gt;Note the specific format here, which is in contrast to pattern 2. The EtE&amp;#39;d note&amp;#39;s title is:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The ID of its parent &lt;code&gt;11.11&lt;/code&gt;, then&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;+&lt;/code&gt;, then&lt;/li&gt;
&lt;li&gt;A space &lt;code&gt; &lt;/code&gt;, then&lt;/li&gt;
&lt;li&gt;The note&amp;#39;s title.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;this-recognises-the-general-broadening-of-ids&quot;&gt;This recognises the general broadening of IDs&lt;/h3&gt;
&lt;p&gt;A broad pattern (see &lt;a href=&quot;https://youtu.be/7vrIEl8mEl0&quot;&gt;YouTube &amp;#39;What is an ID?&amp;#39;&lt;/a&gt;) is that IDs are getting broader, and holding more.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not really sure why this is, to be honest. I can&amp;#39;t tell you the last time I got anywhere near filling up a category with IDs (our pre-built systems excepted; they were &lt;em&gt;designed&lt;/em&gt; to be full).&lt;/p&gt;
&lt;p&gt;So exercise caution: if you do think about &amp;#39;lifting up&amp;#39; a header like this, ask yourself, should I instead just be creating a new ID?&lt;/p&gt;
&lt;h3 id=&quot;concerns&quot;&gt;Concerns&lt;/h3&gt;
&lt;p&gt;It can be easy to forget that you&amp;#39;ve created these &amp;#39;sub-notes&amp;#39;. Think carefully before creating one: prefer to &amp;#39;fold&amp;#39; the header in the existing note.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-fold&quot; id=&quot;user-content-fnref-fold&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Leave yourself a breadcrumb in the parent note. I always do this at the top.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# 11.11 Some ID

- Sub-notes:
  - 11.11+ Header about thing A
  - 11.11+ Header about thing B

---

Main note contents here.
&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote&gt;
&lt;p&gt;If your notes app supports it, make these clickable &lt;code&gt;[[wiki-links]]&lt;/code&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;example&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;At the Small Business System&amp;#39;s &lt;code&gt;14.32 External software &amp;amp; services&lt;/code&gt; I&amp;#39;ve created a note each for the services that I use. In this case I was experimenting with linking to these notes from other notes; easier achieved when the item being linked to is itself a note vs. a header in another note.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;14.32 External software &amp;amp; services
14.32+ Arq
14.32+ Backblaze
14.32+ DaVinci Resolve
14.32+ Debian
14.32+ Diagrams
14.32+ Discourse
14.32+ MindNode
14.32+ Obsidian
14.32+ Syncthing
14.32+ Tailscale
14.32+ Things
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now when I link to one of these items, it reads almost like a sentence. Here&amp;#39;s an extract from a note:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;curium does a full nightly backup to [[14.32+ Backblaze]].&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;(Curium in this case being the name of one of my servers.)&lt;/p&gt;
&lt;h3 id=&quot;folders-in-your-filesystem&quot;&gt;Folders in your filesystem&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m not totally sold on the necessity of this, but there doesn&amp;#39;t seem to be a downside.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-mac&quot; id=&quot;user-content-fnref-mac&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; Try it and let me know what you think?&lt;/p&gt;
&lt;p&gt;If I have an associated filesystem subfolder for an EtE item, I name it with a &lt;code&gt;+&lt;/code&gt;. This serves as a reminder that this item is an EtE.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0133B-Finder_subfolders--0-light-cx-702x200.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0133B-Finder_subfolders--0-dark-cx-702x200.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0133B-Finder_subfolders--0-light-cx-702x200.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0133B-Finder_subfolders--0-dark-cx-702x200.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of a Finder window showing a parent folder 14.32 with two subfolders named &apos;+ DaVinci Resolve&apos; and &apos;+ Vimeo&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0133B-Finder_subfolders--0-light-cx-702x200.png&quot; width=&quot;351&quot; height=&quot;100&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;pattern-2-use-it-as-a-short-code&quot;&gt;Pattern 2: use it as a short code&lt;/h2&gt;
&lt;p&gt;I use &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; (LAS) as my personal system. So it already has all of the IDs that I need, day-to-day.&lt;/p&gt;
&lt;p&gt;I manage my own data storage &amp;amp; backups at &lt;code&gt;14.14 Data storage &amp;amp; backups&lt;/code&gt;. But I also manage this for my bestie &lt;a href=&quot;https://www.michellegracehunder.com&quot;&gt;Michelle&lt;/a&gt;, a photographer. She has her own setup and I don&amp;#39;t want that mixed in with my own.&lt;/p&gt;
&lt;p&gt;In a &amp;#39;normal&amp;#39; system, i.e. not the pre-built LAS, I&amp;#39;d probably just create her own ID:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;14.83 Michelle&amp;#39;s data storage &amp;amp; backups&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;– but I &lt;em&gt;am&lt;/em&gt; in LAS, and I already have a place, and the system is pretty full. &lt;em&gt;Also&lt;/em&gt;, this isn&amp;#39;t the only piece of data I&amp;#39;m storing for her: I also manage her domains, and who knows what else in the future.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s what I&amp;#39;ve created:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;14.14+MGH Data storage &amp;amp; backups&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;14.25+MGH Domains &amp;amp; hosting&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;mgh--a-reusable-short-code&quot;&gt;&lt;code&gt;+MGH&lt;/code&gt; = a reusable short code&lt;/h3&gt;
&lt;p&gt;Being her initials, in this case. And note the subtly different naming pattern here: &lt;strong&gt;no space after the &lt;code&gt;+&lt;/code&gt;&lt;/strong&gt;. Because this enables searching your JDex for this specific string, revealing all of the stuff that is exclusively related to Mishy.&lt;/p&gt;
&lt;p&gt;More importantly it conveys to you the fact that this &lt;em&gt;is&lt;/em&gt; a reusable short code.&lt;/p&gt;
&lt;h3 id=&quot;using-this-to-manage-the-family&quot;&gt;Using this to manage the family&lt;/h3&gt;
&lt;p&gt;A very common question in the context of LAS is &lt;em&gt;how do I use the system to manage my family?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The simplest pattern is to use EtE as just described. Assign your husband and each of the kids a short code. Obviously this code has to be the same everywhere. Initials are great, but use whatever works for you. I&amp;#39;d probably keep it to &amp;lt;5 characters, but really that&amp;#39;s arbitrary. There&amp;#39;s nothing fundamentally wrong with &lt;code&gt;+BARTHOLOMAEUS&lt;/code&gt; but I think you&amp;#39;ll get sick of typing it.&lt;/p&gt;
&lt;p&gt;(Actually there is a sound logic to shorter codes: they&amp;#39;re harder to get wrong. It&amp;#39;d be easy enough to type &lt;code&gt;+BARTHOLOMEAUS&lt;/code&gt; one time and now you&amp;#39;re at risk of losing that note.)&lt;/p&gt;
&lt;h3 id=&quot;think-of-this-like-a-shadow-system&quot;&gt;Think of this like a &amp;#39;shadow system&amp;#39;&lt;/h3&gt;
&lt;p&gt;In this situation, you have one primary system. All IDs are created in this primary system.&lt;/p&gt;
&lt;p&gt;But &lt;em&gt;underneath&lt;/em&gt; that, you have any number of &amp;#39;shadow systems&amp;#39;. They&amp;#39;re the same system; same structure, so you don&amp;#39;t have to remember a whole bunch of other IDs. And you reveal it by searching for your short code.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;An animated GIF showing the first few IDs from LAS. Then a &apos;card&apos; from behind shows the same, but with the + pattern as described above.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0133A-Shadow_systems--0_original-786x568.gif&quot; width=&quot;393&quot; height=&quot;284&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;alternative-not-ete&quot;&gt;Alternative (not EtE)&lt;/h3&gt;
&lt;p&gt;For the record, the other way you might do this is by completely duplicating the LAS structure for each of the kids, or whomever.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;10-19 Life admin ← your stuff
   …

20-29 Michelle&amp;#39;s life admin
   24 Her online life
      24.14 Data storage &amp;amp; backups
   …

30-39 Bartholomaeus&amp;#39; life admin
   …
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This feels like you&amp;#39;ll have a lot of empty space. Personally I prefer the EtE pattern.&lt;/p&gt;
&lt;h3 id=&quot;date-as-short-code&quot;&gt;Date as short code&lt;/h3&gt;
&lt;p&gt;As usual, if the date is at all relevant you should probably use it.&lt;/p&gt;
&lt;p&gt;We&amp;#39;re currently &lt;a href=&quot;https://johnnydecimal.com/22.00.0098/&quot;&gt;on a trip&lt;/a&gt;. I&amp;#39;m tracking that at my personal system&amp;#39;s &lt;code&gt;15.53 Jucy&amp;#39;s World Tour&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;For each new segment of the trip, I create a sub-note starting with the date.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;15.53+2025-09-19&lt;/code&gt;&lt;/p&gt;
&lt;h3 id=&quot;double-chain-short-codes&quot;&gt;Double-chain short codes&lt;/h3&gt;
&lt;p&gt;Actually, I go further. The 19th September trip was to Japan.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;15.53+2025-09-19+JP&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve used the date first, as it&amp;#39;ll force the note to sort. Then I&amp;#39;ve added &lt;code&gt;+JP&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;This assumes that I might find &lt;code&gt;+JP&lt;/code&gt; a useful filter on my system. Otherwise I might as well have named it &lt;code&gt;15.53+2025-09-19 Japan&lt;/code&gt;. And let&amp;#39;s look at that carefully: the &lt;strong&gt;ID of this note&lt;/strong&gt; is now &lt;code&gt;15.53+2025-09-19&lt;/code&gt;, and the &lt;strong&gt;title of the note&lt;/strong&gt; is &lt;code&gt;Japan&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In this case that probably would have worked; but countries already have &lt;a href=&quot;https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Current_codes&quot;&gt;2-letter code&lt;/a&gt; that I can use. And that feels neater to me, personally. But I&amp;#39;m kinda in to ISO codes which might be a niche thing?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Ac-tually&lt;/em&gt;&lt;/strong&gt; before even finishing this update I realised that I &lt;em&gt;do&lt;/em&gt; find this short code useful. I stored a QR code for Japanese immigration there and knew that I&amp;#39;d want to find it &lt;em&gt;real fast&lt;/em&gt; when I was in the immigration line.&lt;/p&gt;
&lt;p&gt;Knowing that &lt;code&gt;+JP&lt;/code&gt; will surface just this note, and no others, was a comfort. And that&amp;#39;s what I did, finding the QR code while everyone else was scrambling for theirs.&lt;/p&gt;
&lt;h2 id=&quot;pattern-3-use-it-to-store-notes-outside-your-main-system&quot;&gt;Pattern 3: use it to store notes &amp;#39;outside&amp;#39; your main system&lt;/h2&gt;
&lt;p&gt;Credit for this one to &lt;strong&gt;@salutalice&lt;/strong&gt; on Discord, who wanted a way to keep their EtE notes &amp;#39;out of the way&amp;#39; of their primary JDex notes.&lt;/p&gt;
&lt;p&gt;This leaves your JDex with its &lt;code&gt;AC.ID&lt;/code&gt; notes clean. Every note there is a primary, ID-defining JDex entry.&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s what they do. In their case, using a Bear tag that places their EtE&amp;#39;d notes out of the primary system. Similarly but kinda opposite, &lt;strong&gt;@aviskase&lt;/strong&gt; tags their &lt;em&gt;primary&lt;/em&gt; JDex notes with an Obsidian property, allowing them to show only these notes. Same idea, different mechanism.&lt;/p&gt;
&lt;p&gt;Exactly how you do this will depend on the app you use for your JDex. Ask if you need help -- channel &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267671575017295952&quot;&gt;#13-system-expansion&lt;/a&gt; is your best bet.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t do this myself yet but I can see myself migrating to this pattern. I really like it.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The &lt;a href=&quot;#concerns&quot;&gt;concern above&lt;/a&gt; re: forgetting that these notes exist is doubly relevant here.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;retraction-the-blog-pattern-was-wrong&quot;&gt;Retraction: the &amp;#39;blog pattern&amp;#39; was wrong&lt;/h2&gt;
&lt;p&gt;The &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;EtE&lt;/a&gt; page lists as an example this blog. E.g. the page you&amp;#39;re reading would be &lt;code&gt;22.00+0133&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m going to remove this example and instead number blog posts using the 5-digit &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;creative pattern&lt;/a&gt;. That&amp;#39;s a future post.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-fold&quot;&gt;
&lt;p&gt;Any good notes app will let you &amp;#39;fold&amp;#39; or &amp;#39;collapse&amp;#39; a header. Typically hovering over the header will show a reveal/collapse triangle ▶ ▼. &lt;a href=&quot;#user-content-fnref-fold&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-mac&quot;&gt;
&lt;p&gt;On my Mac. Windows/Linux YMMV. &lt;a href=&quot;#user-content-fnref-mac&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0132 Personal and work systems: how do they interact?</title><link>https://johnnydecimal.com/22.00.0132/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0132/</guid><description>Many of us have a personal and a work Johnny.Decimal system, often on the same computer. What&apos;s the best way to manage this?</description><pubDate>Fri, 12 Sep 2025 01:55:30 GMT</pubDate><content:encoded>&lt;h1 id=&quot;personal-and-work-systems-how-do-they-interact&quot;&gt;Personal and work systems: how do they interact?&lt;/h1&gt;
&lt;p&gt;This is a common question that I just received by email. The author has a personal and a work system -- let&amp;#39;s say they&amp;#39;re Life Admin and Small Business, but that isn&amp;#39;t important -- and wants to know how the two should interact.&lt;/p&gt;
&lt;p&gt;The key question is whether these systems should be merged and/or interact in some way, or if they should remain divided. For example should you move Life Admin&amp;#39;s &lt;code&gt;10-19&lt;/code&gt; under your business system and re-number it? Should these systems share a JDex?&lt;/p&gt;
&lt;p&gt;(An assumption is that they&amp;#39;re on the same computer, like they are for me. I don&amp;#39;t have a separate work machine; if you do, this is simpler.)&lt;/p&gt;
&lt;h2 id=&quot;i-split-my-systems&quot;&gt;I split my systems&lt;/h2&gt;
&lt;p&gt;I have &lt;code&gt;P76 Johnny&amp;#39;s personal life&lt;/code&gt; and &lt;code&gt;D25 Johnny.Decimal&lt;/code&gt;. To each, it is like the other does not exist.&lt;/p&gt;
&lt;p&gt;They&amp;#39;re different parts of my life and I find the separation helpful. Also, for example, I share the business with Lucy, but not my personal stuff. As soon as you merge them, you lose the ability to do that sort of thing.&lt;/p&gt;
&lt;p&gt;I keep my personal JDex in Bear and work in Obsidian. Again, because Obsidian is shared and Bear can&amp;#39;t do that. This works for me: when I&amp;#39;m &amp;#39;at work&amp;#39;, I&amp;#39;m at work. It&amp;#39;s rare that I find myself wishing I could, say, link a note from my work system over to my personal system.&lt;/p&gt;
&lt;p&gt;And when this does happen, I just use the full &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/12-advanced/12.05-acid-notation/#sysacid&quot;&gt;SYS.AC.ID&lt;/a&gt; identifier to tell myself this is what I mean. It just happened this morning: in a note in Obsidian I wanted to refer to a personal thing so I just typed out &amp;#39;blah blah P76.15.54 blah blah&amp;#39; and that&amp;#39;s all I need.&lt;/p&gt;
&lt;h3 id=&quot;no-renaming-necessary&quot;&gt;No renaming necessary&lt;/h3&gt;
&lt;p&gt;Our emailer had asked whether it was necessary to rename any of the systems&amp;#39; subfolders to indicate the system that they belong to.&lt;/p&gt;
&lt;p&gt;No. I have two top-level folders which mirror the system names, then the folder structure underneath is as-downloaded from JDHQ. No renaming of folders.&lt;/p&gt;
&lt;h3 id=&quot;i-do-name-files&quot;&gt;I do name files&lt;/h3&gt;
&lt;p&gt;I find it useful to name files with &lt;code&gt;SYS.AC.ID&lt;/code&gt; at the start. This takes no extra time and now I can quickly see to which system they belong.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0131 Your computer is your workshop</title><link>https://johnnydecimal.com/22.00.0131/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0131/</guid><description>Treat your computer like your woodworking shop. Consciously prepare the next job. Clean up when you&apos;re finished. Do one thing at a time.</description><pubDate>Thu, 11 Sep 2025 04:17:13 GMT</pubDate><content:encoded>&lt;h1 id=&quot;your-computer-is-your-workshop&quot;&gt;Your computer is your workshop&lt;/h1&gt;
&lt;p&gt;A century ago, you were an old-timer. You made stuff in your workshop.&lt;/p&gt;
&lt;p&gt;It took a while to set up a new job. You had to figure out which tools you need. Maybe sharpen your plane, oil your strop. Clear the bench, sweep. Check that you have enough birch, go to the store, pick up some more two-by-four and a bag of nails. Lay it all out. Have a look at it. Is the plan good? Do we know what we&amp;#39;re making?&lt;/p&gt;
&lt;p&gt;And &lt;em&gt;now&lt;/em&gt; you can start.&lt;/p&gt;
&lt;p&gt;Later, the new table finished, this all needs to be tidied away. Ready for the next job. You look over your shoulder as you lock the workshop. Neat. Calm.&lt;/p&gt;
&lt;p&gt;You can&amp;#39;t wait to work again tomorrow.&lt;/p&gt;
&lt;h2 id=&quot;is-this-how-you-feel&quot;&gt;Is this how you feel?&lt;/h2&gt;
&lt;p&gt;Computers allow us to do any number of things &amp;#39;at once&amp;#39;. Of course you can only ever do one thing at a time, but it&amp;#39;s nice to pretend.&lt;/p&gt;
&lt;p&gt;When was the last time you &lt;em&gt;prepared&lt;/em&gt; the next piece of work? Closed all of your old windows. Opened up a new view on your files and found the place you needed to be. Opened the note you&amp;#39;ll be using in a new, clean window. Focused your task manager on the task at hand.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your computer is your workshop&lt;/strong&gt;. If you want to work well, you need to slow down. You need to think more, and do less.&lt;/p&gt;
&lt;p&gt;What you do will be better, and you will enjoy it more.&lt;/p&gt;
&lt;h1 id=&quot;tip-use-your-task-manager&quot;&gt;Tip: use your task manager&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s what I&amp;#39;ve started doing. I use &lt;a href=&quot;https://culturedcode.com/&quot;&gt;Things&lt;/a&gt; but any task manager will work.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create a new window. In Things, &lt;strong&gt;File &amp;gt; New Things Window&lt;/strong&gt; or &lt;strong&gt;Ctrl+Cmd+N&lt;/strong&gt;. Move it up in to the corner, and make it small. Think of it like a tiny dashboard.&lt;/li&gt;
&lt;li&gt;Highlight the single thing you&amp;#39;re working on now. Here, I&amp;#39;m using a tag &lt;code&gt;🫵🏼 focus&lt;/code&gt; on the task, then viewing that tag in this window by typing &lt;strong&gt;focus&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;That&amp;#39;s it. Remember to be doing what this window says. Don&amp;#39;t do anything else until you&amp;#39;ve finished, and cleaned up, and prepared the next job. Simple.&lt;/li&gt;
&lt;/ol&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0131A-Things--0_original-light-cx-1528x1126.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0131A-Things--0_original-dark-cx-1528x1126.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0131A-Things--0_original-light-cx-1528x1126.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0131A-Things--0_original-dark-cx-1528x1126.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of this Things window up at the top-left of my screen. It shows my blog post checklist; the thing I&apos;m working on.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0131A-Things--0_original-light-cx-1528x1126.png&quot; width=&quot;764&quot; height=&quot;563&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;more-on-this-in-the-upcoming-jdu-course&quot;&gt;More on this in the upcoming JDU course&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m figuring this out as part of the next &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; course: &lt;strong&gt;Task &amp;amp; Project Management using the Johnny.Decimal system&lt;/strong&gt;. &lt;a href=&quot;https://list.johnnydecimal.com/subscription/form&quot;&gt;Sign up to the mailing list&lt;/a&gt; for updates.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0130 Obsidian tip: link directly to a header</title><link>https://johnnydecimal.com/22.00.0130/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0130/</guid><description>I like to cross-link from Things to Obsidian. Here&apos;s how to link directly to an Obsidian header within a document.</description><pubDate>Tue, 09 Sep 2025 03:45:14 GMT</pubDate><content:encoded>&lt;h1 id=&quot;obsidian-tip-link-directly-to-a-header&quot;&gt;Obsidian tip: link directly to a header&lt;/h1&gt;
&lt;p&gt;When I&amp;#39;m working on project-level stuff (which is larger than task-level stuff; see &lt;a href=&quot;https://johnnydecimal.com/22.00.0128/&quot;&gt;upcoming JDU course&lt;/a&gt;) I typically (~always) have a task in Things, serving as the reminder, and notes in Obsidian, because it&amp;#39;s a notes app and Things isn&amp;#39;t.&lt;/p&gt;
&lt;p&gt;I &lt;strong&gt;always&lt;/strong&gt; cross-link the two. When you&amp;#39;re in one place, you should make it obvious to yourself that there&amp;#39;s relevant stuff in another place; otherwise you have notes over there that you&amp;#39;ll forget to look at. Links make it trivial to switch between these two places. They&amp;#39;re worth the ~minute it takes to set up.&lt;/p&gt;
&lt;h2 id=&quot;deep-linking-to-an-obsidian-header&quot;&gt;Deep-linking to an Obsidian header&lt;/h2&gt;
&lt;p&gt;This didn&amp;#39;t work with the native Obsidian URL scheme, but the Advanced URI community plugin [&lt;a href=&quot;obsidian://show-plugin?id=obsidian-advanced-uri&quot;&gt;Obsidian&lt;/a&gt;|&lt;a href=&quot;https://github.com/Vinzent03/obsidian-advanced-uri&quot;&gt;GitHub&lt;/a&gt;] by Vinzent does the job.&lt;/p&gt;
&lt;p&gt;You need to add a &lt;a href=&quot;https://help.obsidian.md/links#Link+to+a+block+in+a+note&quot;&gt;block&lt;/a&gt; to the header you want to link to. These don&amp;#39;t seem very well documented on the Obsidian site (am I missing something?). But they&amp;#39;re simple: just add &lt;code&gt;^xyzabc&lt;/code&gt; to the &lt;em&gt;end&lt;/em&gt; of your header (or any paragraph).&lt;/p&gt;
&lt;p&gt;It must appear as the last text on the line, and &lt;code&gt;xyzabc&lt;/code&gt; can be any string of, it seems, arbitrary length. They &lt;em&gt;can&lt;/em&gt; start with a number, which is nice. So I have a subheader within JDex entry &lt;code&gt;21.41&lt;/code&gt;:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;### +WP1 Map out the course structure ^2141wp1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;– and you can see how natural it is to create a block ID to link to that. The block ID represents the header&amp;#39;s location within my system.&lt;/p&gt;
&lt;h3 id=&quot;creating-the-link-in-things&quot;&gt;Creating the link in Things&lt;/h3&gt;
&lt;p&gt;I make these &amp;#39;cross-links&amp;#39; look the same every time, using a dash (i.e. Markdown bullet list) and the unicode &lt;code&gt;⇄&lt;/code&gt; &amp;#39;rightwards arrow over leftwards arrow&amp;#39;. Raycast&amp;#39;s &lt;strong&gt;Search Unicode Symbol&lt;/strong&gt;, bound to &lt;strong&gt;Ctrl+Opt+U&lt;/strong&gt;, enables me to type that easily.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-ai&quot; id=&quot;user-content-fnref-ai&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; (Hopefully it does the same for you Windows users?)&lt;/p&gt;
&lt;p&gt;If you use the Advanced URI plugin to &lt;strong&gt;Copy URI for current block&lt;/strong&gt; you&amp;#39;ll get the full path to the file:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;obsidian://adv-uri?vault=D25%20JDex&amp;amp;filepath=20-29%20Products%2C%20suppliers%2C%20equipment%2C%20processes%2C%20%26%20inventory%2F21%20Products%20%26%20services%20%F0%9F%92%88%2F21.41%20JDU%20-%20Task%20%26%20project%20management%20with%20Things%20%26%20Obsidian.md&amp;amp;block=2141wp1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;🤮 Long URLs are ugly.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-things_markdown&quot; id=&quot;user-content-fnref-things_markdown&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; I wonder what happens if we just delete the &lt;code&gt;filepath&lt;/code&gt; part...&lt;/p&gt;
&lt;p&gt;&lt;code&gt;- ⇄ obsidian://adv-uri?vault=D25%20JDex&amp;amp;block=2141wp1&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Works. Nice.&lt;/p&gt;
&lt;h2 id=&quot;linking-back-to-things&quot;&gt;Linking back to Things&lt;/h2&gt;
&lt;p&gt;This is much easier. Right-click the Things task &amp;gt; &lt;strong&gt;Share…&lt;/strong&gt; &amp;gt; &lt;strong&gt;Copy Link&lt;/strong&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-ellipsis&quot; id=&quot;user-content-fnref-ellipsis&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;- ⇄ things:///show?id=HRZD78hvnWd3zW24vruy22&lt;/code&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;ul&gt;
&lt;li&gt;Tags for this post (that &lt;a href=&quot;https://johnnydecimal.com/22.00.0127/&quot;&gt;aren&amp;#39;t really tags yet&lt;/a&gt; but let&amp;#39;s just pretend for now):
&lt;ul&gt;
&lt;li&gt;Apps/Obsidian&lt;/li&gt;
&lt;li&gt;Apps/Things&lt;/li&gt;
&lt;li&gt;Content/Tips &amp;#39;n tricks&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-ai&quot;&gt;
&lt;p&gt;Fuck AI for making use of proper typographic symbols some sort of indicator of slop. On a Mac it&amp;#39;s trivial to type these symbols, and you should be using them all the time. An en-dash, for example, is just &lt;strong&gt;Opt+-&lt;/strong&gt;; for the em-, also hold &lt;strong&gt;Shift&lt;/strong&gt;. I&amp;#39;ve used it 20 times a day for the last decade (though I&amp;#39;ve never liked the em-dash in my own writing – just feels way heavy. I go with space-en-space.).&lt;/p&gt;
&lt;p&gt;(Also FWIW I have &lt;strong&gt;Ctrl+Opt+I&lt;/strong&gt; bound to the emoji palette and &lt;strong&gt;Ctrl+Opt+C&lt;/strong&gt; to the clipboard history. I use all 3 many, many times a day.) &lt;a href=&quot;#user-content-fnref-ai&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-things_markdown&quot;&gt;
&lt;p&gt;And Things&amp;#39; Markdown support is a bit lazy in that it &amp;#39;supports&amp;#39; Markdown, but does nothing with it; that is, a long link is always displayed, and never replaced by the &lt;code&gt;[text of the link](uri://…)&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-things_markdown&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-ellipsis&quot;&gt;
&lt;p&gt;On a Mac, the &lt;code&gt;…&lt;/code&gt; ellipsis is &lt;strong&gt;Opt+;&lt;/strong&gt;. &lt;a href=&quot;#user-content-fnref-ellipsis&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0129 Tags are contextless</title><link>https://johnnydecimal.com/22.00.0129/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0129/</guid><description>Tags are also dumb because, once created, they have no context.</description><pubDate>Mon, 08 Sep 2025 02:32:03 GMT</pubDate><content:encoded>&lt;h1 id=&quot;tags-are-contextless&quot;&gt;Tags are contextless&lt;/h1&gt;
&lt;p&gt;Tags are also dumb because, once created, they have no context.&lt;/p&gt;
&lt;p&gt;I learned this with the JDex: it&amp;#39;s not enough just to create a thing. Later, you&amp;#39;ve forgotten what, and why, and where. So you type yourself some notes so that you can remember. These notes are vital.&lt;/p&gt;
&lt;p&gt;No tag system has this. It&amp;#39;s just &lt;em&gt;here&amp;#39;s a space for you to type a simple string&lt;/em&gt; and good luck! So in the moment, every new tag makes perfect sense. And later that day, it&amp;#39;s nonsense.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;This is a &lt;a href=&quot;https://hachyderm.io/@johnnydecimal/115160707366669751&quot;&gt;Mastodon thread&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0126 Don&apos;t be lazy, don&apos;t be stupid</title><link>https://johnnydecimal.com/22.00.0126/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0126/</guid><description>Do it right, now; or do it again, later.</description><pubDate>Sun, 07 Sep 2025 04:51:11 GMT</pubDate><content:encoded>&lt;h1 id=&quot;dont-be-lazy-dont-be-stupid&quot;&gt;Don&amp;#39;t be lazy, don&amp;#39;t be stupid&lt;/h1&gt;
&lt;p&gt;I just wrote a blog post and messed it up by not following my own checklist -- lazy and stupid -- and then tested out a new code idea, and messed it up by just not reading the documentation. Lazy! And! Stupid!&lt;/p&gt;
&lt;h2 id=&quot;lazy-is-default&quot;&gt;Lazy is default&lt;/h2&gt;
&lt;p&gt;Of course it is. Evolution and stuff. But when dealing with the complexity of the modern world, &lt;strong&gt;it is no longer an advantage&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Because being lazy &lt;em&gt;now&lt;/em&gt; just means that I have to do it again &lt;em&gt;later&lt;/em&gt;. That&amp;#39;s not efficient, and it&amp;#39;s frustrating, and it leads to a worse state of mind, and poorer quality work.&lt;/p&gt;
&lt;h2 id=&quot;checklists&quot;&gt;Checklists&lt;/h2&gt;
&lt;p&gt;When I write a blog post, I have a checklist. It&amp;#39;s kinda boring: do this, do that. It&amp;#39;s more work than just banging out a tweet. But hey, that&amp;#39;s what it is. To ignore that fact is to be childish.&lt;/p&gt;
&lt;p&gt;So I just published a couple of blog posts and totally ignored my checklist, and now I have to spend more time fixing them than I would have had I just done it right.&lt;/p&gt;
&lt;p&gt;Lazy. Stupid.&lt;/p&gt;
&lt;h3 id=&quot;tend-to-your-checklists&quot;&gt;Tend to your checklists&lt;/h3&gt;
&lt;p&gt;Checklists are a superpower. Read &lt;a href=&quot;https://atulgawande.com/book/the-checklist-manifesto/&quot;&gt;Atul Gawande&amp;#39;s &amp;#39;The Checklist Manifesto&lt;/a&gt;&amp;#39;.&lt;/p&gt;
&lt;p&gt;But they &lt;em&gt;must&lt;/em&gt; be kept up to date. Because every step is a chore, and superfluous steps will lead you to resent and ultimately reject the whole list.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Every time you touch your checklist, fix what&amp;#39;s broken&lt;/strong&gt;. You need to &lt;em&gt;want&lt;/em&gt; to use your checklists. They need to be a relief, not a burden.&lt;/p&gt;
&lt;h2 id=&quot;documentation&quot;&gt;Documentation&lt;/h2&gt;
&lt;p&gt;Then I was messing about with this &lt;a href=&quot;https://docs.astro.build/en/guides/actions/&quot;&gt;Astro feature&lt;/a&gt; and it wasn&amp;#39;t working and &lt;em&gt;arrrgh whyyyyy&lt;/em&gt; and eventually I ask their AI support bot on Discord and it tells me about this one line I need to add ... which is just right there in the documentation. Clear as day.&lt;/p&gt;
&lt;p&gt;So had I just taken the time to read it, it would have worked, and I wouldn&amp;#39;t have been frustrated, and I wouldn&amp;#39;t have had to open Discord which is now a distraction, and it would have been working half an hour ago, and all the rest.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t be lazy. Don&amp;#39;t be stupid.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-alex&quot; id=&quot;user-content-fnref-alex&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-alex&quot;&gt;
&lt;p&gt;Sorry Alex. But it still reads well? &lt;a href=&quot;#user-content-fnref-alex&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0128 JDU Task &amp; Project Management course: quick update</title><link>https://johnnydecimal.com/22.00.0128/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0128/</guid><description>I&apos;m working on the next JDU course, which is a complete guide to &apos;Task &amp; Project Management&apos; using the Johnny.Decimal system.</description><pubDate>Sun, 07 Sep 2025 02:23:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;jdu-task--project-management-course-quick-update&quot;&gt;JDU Task &amp;amp; Project Management course: quick update&lt;/h1&gt;
&lt;p&gt;A quick update for those of you looking out for the next &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; course.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve been working on this for at least a year. All through the Workshop I promise to show Lucy how to manage her to-do list using her new system and then ... I never do.&lt;/p&gt;
&lt;p&gt;Because I didn&amp;#39;t know how. I was still working it out. Turns out it&amp;#39;s a hard problem.&lt;/p&gt;
&lt;h2 id=&quot;task--project-management&quot;&gt;Task &amp;amp; Project Management&lt;/h2&gt;
&lt;p&gt;I don&amp;#39;t yet have the pithy New York Times-bestselling title for this thing. What I&amp;#39;ve realised is that most of us need to manage two quite distinct things: &lt;strong&gt;tasks&lt;/strong&gt; and &lt;strong&gt;projects&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tasks&lt;/strong&gt; are the one-offs that you might think of as &amp;#39;to-dos&amp;#39; or &amp;#39;reminders&amp;#39;. Pay the bill. Buy the milk. Cancel the subscription. Call the vet. They&amp;#39;re often time-bound. They&amp;#39;re chores. Doing them makes your life not-worse.&lt;/p&gt;
&lt;p&gt;Then we have &lt;strong&gt;projects&lt;/strong&gt;. This is the good stuff that helps you achieve your long-term goals. This is what you want to spend your free time doing. This stuff shouldn&amp;#39;t be a chore. And yet it feels like we spend so little time doing it.&lt;/p&gt;
&lt;p&gt;These two things require very different treatment. I have a method that I&amp;#39;ve been using myself for the best part of a year, that I now have in the structure of videos that can be recorded. There&amp;#39;s still a little more of that to do, then I need to record them and Lucy needs to do the post-production.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the thing I&amp;#39;m working on the hardest. It&amp;#39;ll be out soon.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0127 Tags are dumb. I&apos;m going to fix tags</title><link>https://johnnydecimal.com/22.00.0127/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0127/</guid><description>Tags are dumb. They don&apos;t work and if you prefer them over folders, you&apos;re wrong. So I&apos;m rewriting my blog with tags as the primary mechanism of organisation. I&apos;m going to fix tags.</description><pubDate>Sun, 07 Sep 2025 01:50:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;tags-are-dumb-im-going-to-fix-tags&quot;&gt;Tags are dumb. I&amp;#39;m going to fix tags&lt;/h1&gt;
&lt;p&gt;Tags are dumb. They don&amp;#39;t work and if you prefer them over folders, you&amp;#39;re wrong.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m rewriting my blog with tags as the primary mechanism of organisation. I&amp;#39;m going to fix tags.&lt;/p&gt;
&lt;h2 id=&quot;whats-wrong-with-tags&quot;&gt;What&amp;#39;s wrong with tags?&lt;/h2&gt;
&lt;p&gt;I got an e-reader for my birthday last month. There are four (4) books on there. It still has that new-e-reader smell. And already, here&amp;#39;s what the &lt;strong&gt;Tags&lt;/strong&gt; view in Calibre looks like.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0127A-Calibre--0_original-light-cx-458x741.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0127A-Calibre--0_original-dark-cx-458x741.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0127A-Calibre--0_original-light-cx-458x741.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0127A-Calibre--0_original-dark-cx-458x741.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Here&apos;s a comma-separated list of the tags. All other formatting is copied verbatim from the list in Calibre. 1789-1799 —- Fiction, 1800-1815 -- Campaigns -- Russia -- Fiction, 1801-1825 -- Fiction, Action &amp;#38; Adventure, Aristocracy (Social class) -- Russia -- Fiction, British -- France -- Paris -- Fiction, Executions and executioners -- Fiction, Fiction, France -- History -- Revolution, French -- England -- London -- Fiction, General, Historical fiction, History, Literary Collections, London (England) -- History -- 18th century -- Fiction, Lookalikes -- Fiction, Napoleonic Wars, Paris (France) -- History -- 1789-1799 -- Fiction, Russia -- History -- Alexander I, Science Fiction, Space Opera, War stories.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0127A-Calibre--0_original-light-cx-458x741.png&quot; width=&quot;458&quot; height=&quot;741&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;I couldn&amp;#39;t have written a better parody. We have &lt;code&gt;British -- France -- Paris -- Fiction&lt;/code&gt; and its cousin &lt;code&gt;French -- England -- London -- Fiction&lt;/code&gt;, each with what I assume are some sort of clever ISO-standard double-dash separators that enforce a defined hierarchy and allow me to expand/collapse and filter at each level?&lt;/p&gt;
&lt;p&gt;Oh that&amp;#39;s not what they do? Oh. Well that&amp;#39;s a shame. Also when did &lt;code&gt;England&lt;/code&gt; morph in to &lt;code&gt;British&lt;/code&gt;? Long before the summer of 1789, let me tell you. And I hope you didn&amp;#39;t search for &lt;code&gt;France&lt;/code&gt; hoping to find that second book because there it&amp;#39;s the adjectival &lt;code&gt;French&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;So, as implemented, these tags are worse than useless. They&amp;#39;re noise. I&amp;#39;ll never, ever look at them again.&lt;/p&gt;
&lt;p&gt;(For the record: I do see the pattern here. You don&amp;#39;t need to email me.)&lt;/p&gt;
&lt;h1 id=&quot;tags-the-johnnydecimal-spec&quot;&gt;Tags: the Johnny.Decimal spec&lt;/h1&gt;
&lt;p&gt;If we were to fix tags, what are the requirements?&lt;/p&gt;
&lt;h2 id=&quot;1-there-must-be-no-ambiguity-or-chance-of-duplication&quot;&gt;1. There must be no ambiguity or chance of duplication&lt;/h2&gt;
&lt;p&gt;When there is a possibility of duplication in meaning, the system cannot be trusted. If I&amp;#39;ve selected &lt;code&gt;Historical fiction&lt;/code&gt; believing that this encompasses both &lt;strong&gt;history&lt;/strong&gt;, &lt;strong&gt;historical fiction&lt;/strong&gt;, and &lt;strong&gt;fiction&lt;/strong&gt;, and something that I expect to be surfaced is not, my faith in the system collapses.&lt;/p&gt;
&lt;p&gt;And these three things are, in this case, distinct entities. They &lt;em&gt;should&lt;/em&gt; have their own tags. But I have no confidence that this is as-implemented in my system.&lt;/p&gt;
&lt;p&gt;This requirement extends to the act of adding a new tag. In current systems this is hit-and-miss. &lt;em&gt;Do I already have a suitable tag? How would I know?&lt;/em&gt; And so you add another, and the problem compounds.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-music&quot; id=&quot;user-content-fnref-music&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;2-they-must-be-organised-hierarchically&quot;&gt;2. They must be organised hierarchically&lt;/h2&gt;
&lt;p&gt;Tags are generally presented as a flat list. And now we&amp;#39;re back to Johnny&amp;#39;s least favourite thing: the alphabet.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-alphabet&quot; id=&quot;user-content-fnref-alphabet&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Here follows a comprehensive list of things worse at presenting information
than the alphabet:&lt;br&gt;&lt;strong&gt;1. A tag cloud&lt;/strong&gt;&lt;br&gt;Thus ends the list.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h3 id=&quot;folders-are-natural&quot;&gt;Folders are &lt;em&gt;natural&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;I saved something from the Obsidian Discord the other day. I&amp;#39;ll quote it here without attribution as the point isn&amp;#39;t to dunk on the author. In the context of a &lt;em&gt;tags vs. folders&lt;/em&gt; discussion, they wrote:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;I don&amp;#39;t see any advantage to folders other than that they are universally intuitive and quick to implement, and that they are the default way of organizing things in operating systems.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;My response was that &amp;#39;this is quite the advantage though, no?&amp;#39;. But it speaks directly to the Foundational Principle of the Tag People: that folders are bad, because we have computers that are capable of virtually &amp;#39;storing&amp;#39; things in multiple places (as represented by tags), so why limit ourselves to just one place (the humble folder)?&lt;sup&gt;&lt;a href=&quot;#user-content-fn-inode&quot; id=&quot;user-content-fnref-inode&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;The fundamental error is that &lt;em&gt;this simply isn&amp;#39;t how people conceptualise information&lt;/em&gt;. How many places can your drivers licence be? One. And if you were to try to find it, how do you go about that, mentally? You start at the top and you filter down. House → hallway → that little table that holds your keys and other daily junk → wallet → licence.&lt;/p&gt;
&lt;p&gt;If at any point in this no-doubt frustrating journey of discovery (&lt;em&gt;&lt;strong&gt;I&amp;#39;m late already I know it &amp;quot;should be&amp;quot; in the hallway please can you just help me find my licence&lt;/strong&gt;&lt;/em&gt;) the thing isn&amp;#39;t where you expect, it is entirely natural to step back up the hiearchy, choose another branch, and so it goes until you realise that, inexplicably, you left your wallet in the bathroom this morning.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;But Johnny, you&amp;#39;re wilfully conflating issues here; the Tag People are talking about tagging things like photographs and book metadata, and you&amp;#39;re talking about finding your physical licence.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Kinda, but not really. There are Tag People who really do advocate for storing all of your information using tags and not folders. But I think this is beside the point: I don&amp;#39;t think it matters what you&amp;#39;re using them for. They&amp;#39;re still broken for all of the reasons outlined above.&lt;/p&gt;
&lt;p&gt;This does speak to the defining feature of tags, which we should address.&lt;/p&gt;
&lt;h2 id=&quot;3-you-must-be-able-to-assign-multiple-tags-to-an-item&quot;&gt;3. You must be able to assign multiple tags to an item&lt;/h2&gt;
&lt;p&gt;This is stating the obvious, but let&amp;#39;s make our requirements comprehensive. The entire point of tags is that many things do in fact have multiple properties, and that it can be helpful to be able to filter and group based on these properties.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s think about a blog. And let&amp;#39;s expand the concept of a blog, which I&amp;#39;m going to do. (Working title: megablog.) Any given &amp;#39;(mega)blog post&amp;#39; might be long- or short-form. It might be a video or not. It might have a certain tone: serious, or snarky? (Like this post, it might be both.) It might be personal or work related; might relate to one or more Johnny.Decimal concepts; it might be one in a series. And so on.&lt;/p&gt;
&lt;p&gt;You can extend this concept (which I will) to all of our written and recorded work, public or paid, and to forum posts, Discord threads, and anything else.&lt;/p&gt;
&lt;h2 id=&quot;4-there-must-still-be-a-single-canonical-list-of-all-the-things&quot;&gt;4. There must still be a single, canonical list of All The Things&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m acutely aware of the fact that organising your stuff is a boring chore. If it was heaps fun I&amp;#39;d be a rich man, amirite?&lt;/p&gt;
&lt;p&gt;This is a fundamental problem with tags: now you have to tag everything! If you forget to tag that important finance spreadsheet with either &lt;code&gt;important&lt;/code&gt; or &lt;code&gt;finance&lt;/code&gt;, then now what? &lt;em&gt;Where is it?&lt;/em&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-spreadsheet&quot; id=&quot;user-content-fnref-spreadsheet&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;And who thinks to go back and re-tag stuff, or to add helpful tags to already-tagged data, or to consolidate tags? It&amp;#39;s just never going to happen. Whereas at least the catastrophe that is your work&amp;#39;s &lt;code&gt;g:\finance&lt;/code&gt; folder is &lt;em&gt;browsable&lt;/em&gt;. Every finance spreadsheet is in there &lt;em&gt;somewhere&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;So I suggest – this is a soft requirement, as yet unexplored – that every system that uses tags must &lt;em&gt;also&lt;/em&gt; have some sort of canonical list by which every item can be referenced. I&amp;#39;m starting with my blog, and expanding to all other content, so in my case it&amp;#39;s easy to see how a simple linear ID, or a Johnny.Decimal ID, can accommodate this requirement.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-date&quot; id=&quot;user-content-fnref-date&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;The point is that tags are &lt;em&gt;additive&lt;/em&gt;. They do not &lt;em&gt;replace&lt;/em&gt; existing methods of organisation.&lt;/p&gt;
&lt;h3 id=&quot;note-this-does-not-replace-your-filesystem&quot;&gt;Note: this does not replace your filesystem&lt;/h3&gt;
&lt;p&gt;Just so it&amp;#39;s clear: I do not intend to replace my filesystem with tags. I am developing this as an idea, for a very specific use-case: published multi-media content.&lt;/p&gt;
&lt;p&gt;I already know where to look for my licence. It&amp;#39;s in my wallet, and the electronic artefacts are at &lt;code&gt;10-19 Life admin / 11 Me &amp;amp; other living things / 11.14 Licences&lt;/code&gt;. No part of me seeks to add tags to this system.&lt;/p&gt;
&lt;h1 id=&quot;how-johnnydecimal&quot;&gt;How? Johnny.Decimal&lt;/h1&gt;
&lt;p&gt;Conveniently enough, I have a system that meets these requirements. I believe that the solution is as simple as tags, organised per the basic rules: hierarchically, in groups of no more than 10 and 10 again, and then assigned a unique ID.&lt;/p&gt;
&lt;p&gt;We will lean heavily on a core Johnny.Decimal principle: &lt;em&gt;fewer is better&lt;/em&gt; and &lt;em&gt;close enough is good enough&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-good_enough&quot; id=&quot;user-content-fnref-good_enough&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt; Only create a new tag when absolutely necessary; if an existing tag is good enough, use it.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it. I don&amp;#39;t know if it&amp;#39;ll work, but I can&amp;#39;t see why not. And could it possibly be worse than what we have now? Let&amp;#39;s find out.&lt;/p&gt;
&lt;h3 id=&quot;next-dynamic-discovery&quot;&gt;Next: &amp;#39;dynamic discovery&amp;#39;&lt;/h3&gt;
&lt;p&gt;We already have a hierarchy that describes all books. Why invent the nonsense that is &lt;code&gt;British -- France -- Paris -- Fiction&lt;/code&gt; when we already have &lt;code&gt;823 English fiction&lt;/code&gt;, &lt;code&gt;942 English history&lt;/code&gt;, and &lt;code&gt;944 French history&lt;/code&gt;?&lt;sup&gt;&lt;a href=&quot;#user-content-fn-dashes&quot; id=&quot;user-content-fnref-dashes&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;7&lt;/a&gt;&lt;/sup&gt; Just use those as your tags!&lt;/p&gt;
&lt;p&gt;But my megablog isn&amp;#39;t books, so I need my own system of tags. Assuming you&amp;#39;re not the city librarian, you&amp;#39;ll also need your own. Coming up with one sounds onerous, but I think I have another idea: dynamic discovery. That&amp;#39;s the next post.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;100% human. 0% AI. Always.&lt;/em&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-music&quot;&gt;
&lt;p&gt;Nicely demonstrated by &lt;a href=&quot;https://www.reddit.com/r/AppleMusic/comments/ha8fg5/comment/fv1868z/&quot;&gt;this Reddit comment&lt;/a&gt; from 5 years ago, whose experience exactly mirrors mine: &amp;#39;I&amp;#39;m sure there are hundreds of genres. I have 46 listed in my library &amp;amp; I don&amp;#39;t even listen to that big a variety in music.&amp;#39; &lt;a href=&quot;#user-content-fnref-music&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-alphabet&quot;&gt;
&lt;p&gt;Just kidding, the alphabet is great. &lt;em&gt;If you&amp;#39;re writing the dictionary&lt;/em&gt;. For almost everything else, it&amp;#39;s a terrible way to organise information. Concepts are not alphabetical. Concepts are hierarchical. &lt;a href=&quot;#user-content-fnref-alphabet&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-inode&quot;&gt;
&lt;p&gt;I know that your computer virtually &amp;#39;stores&amp;#39; files as inode references and that tags might be, in this regard, conceptually more pure than folders. You don&amp;#39;t need to email me about that either. &lt;a href=&quot;#user-content-fnref-inode&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-spreadsheet&quot;&gt;
&lt;p&gt;This reveals another interesting fact. I didn&amp;#39;t say that you should tag the spreadsheet with &lt;code&gt;spreadsheet&lt;/code&gt;, because it already is, by virtue of its &lt;code&gt;.xlsx&lt;/code&gt; file extension. This feels natural and shouldn&amp;#39;t be a surprise. But how many of you know that you can trivially search your filesystem for specific file extensions, revealing all spreadsheets at a glance? Or group the view in your file explorer by type of file? Or create saved &amp;#39;search folders&amp;#39; that show all spreadsheets by last updated date? And how many of you actually use these features on any given day? (I&amp;#39;ll show you how, it&amp;#39;s on my to-do list.) &lt;a href=&quot;#user-content-fnref-spreadsheet&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-date&quot;&gt;
&lt;p&gt;This linearity serving to anchor the item in time and space, aiding discoverability. Humans naturally place things in a temporal context. &lt;em&gt;I know I created this after I wrote that&lt;/em&gt;, or &lt;em&gt;I remember where I was when I wrote that, and it must have been around September 2025&lt;/em&gt;. This feature comes free with your brain; you might as well use it. &lt;a href=&quot;#user-content-fnref-date&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-good_enough&quot;&gt;
&lt;p&gt;The only time when &amp;#39;good enough&amp;#39; is an acceptable standard. &lt;a href=&quot;#user-content-fnref-good_enough&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-dashes&quot;&gt;
&lt;p&gt;Technically, the reason for this nonsense is that the authors have tried to shoehorn a tag hierarchy in to a string. This is because most tag systems are implemented as a flat list, precluding any built-in representation of hierarchy. But this reveals &lt;em&gt;yet another&lt;/em&gt; footnote-relegated insight: tags must only be used where they are a fully supported, first-class citizen. I&amp;#39;ll be building custom tag support for the megablog. &lt;a href=&quot;#user-content-fnref-dashes&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 7&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>15.04 Small Business System</title><link>https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.04-small-business-system/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.04-small-business-system/</guid><description>A description of our pre-built Small Business System.</description><pubDate>Tue, 19 Aug 2025 15:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-system&quot;&gt;Small Business System&lt;/h1&gt;
&lt;p&gt;Running a small business is hard. We know: between us, me and Lucy have 50 years of experience as contractors, freelancers, and business owners. You want to get on with making and selling stuff, and worry less about the boring administration: &lt;em&gt;where did I save our office insurance policy?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It doesn&amp;#39;t need to be this hard. Johnny.Decimal is a great way to organise this. &lt;strong&gt;The Small Business System is a ready-made structure, designed to contain everything that your small business does&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;One place for everything. No decisions, no duplicates. That policy document? It lives in &lt;code&gt;12.12 Office insurance, incidents, &amp;amp; claims&lt;/code&gt;. Every time.&lt;/p&gt;
&lt;p&gt;Job done. Go make your customers happy.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/15.04A-SBS-12.12--0-light-cx-1977x2944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/15.04A-SBS-12.12--0-dark-cx-1977x2944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/15.04A-SBS-12.12--0-light-cx-1977x2944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/15.04A-SBS-12.12--0-dark-cx-1977x2944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the Small Business ID 12.12 in JDHQ. From the top it shows which system, area, and category it&apos;s in. Then there&apos;s a bunch of descriptive text.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/15.04A-SBS-12.12--0-light-cx-1977x2944.png&quot; width=&quot;1977&quot; height=&quot;2944&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Lucy and I spent thousands of hours designing this so that you don&amp;#39;t have to. It&amp;#39;s the system we use to manage our own business. Just sign up and move in. &lt;strong&gt;You&amp;#39;ll be more organised in 10 minutes than you&amp;#39;ve ever been&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Old Structures Engineering of NYC used the SBS to organise &lt;a href=&quot;https://forum.johnnydecimal.com/t/a-complex-retrofit-jdex/2758/3&quot;&gt;over a million files&lt;/a&gt; and &lt;a href=&quot;https://oldstructures.com/2025/08/19/organization-help/&quot;&gt;recommends it&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And &lt;a href=&quot;https://johnnydecimal.com/img/v6/15.04B-Des_testimonial--0-light-cx-1560x1758.png&quot;&gt;Des from Datum CNC in New Zealand said&lt;/a&gt;, &amp;quot;We have recently completely switched to the Johnny Decimal Small Business System … Now everyone is on the same track! … Thank you both, the JDex system has made a big difference to our daily operation!&amp;quot;&lt;/p&gt;
&lt;p&gt;If you&amp;#39;d like a demo, or if you have any other questions, &lt;a href=&quot;https://fantastical.app/johnnydecimal/open&quot;&gt;book a 30-minute video call with me here&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;what-does-it-cover&quot;&gt;What does it cover?&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;Everything&lt;/em&gt;. From business administration including your legals, staff, policies, premises, transport, finance, technology, and events. To your products, suppliers, processes and inventory. And your marketing, customers, orders and shipping.&lt;/p&gt;
&lt;p&gt;Last, a place for all of your creative assets. Stop spending time frustrated that you can&amp;#39;t find stuff. Our system solves this problem for good.&lt;/p&gt;
&lt;h3 id=&quot;how-does-it-work&quot;&gt;How does it work?&lt;/h3&gt;
&lt;p&gt;When you sign up, you get access to JDHQ. From there, you can search the 55,000 word Small Business online index. There are 300+ IDs across 21 categories.&lt;/p&gt;
&lt;p&gt;Next, you download the folder structure for your computer. And a set of files that you can import into your notes app to create your &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Every page on JDHQ has helpful links to guide you around the system, as well as links to the forum and Discord for community support.&lt;/p&gt;
&lt;h3 id=&quot;private-support&quot;&gt;Private support&lt;/h3&gt;
&lt;p&gt;Getting organised is a big change. So we&amp;#39;re here to help. After you sign up I&amp;#39;ll send you a link to book a slot in my calendar. If you&amp;#39;re ever stuck, let&amp;#39;s work it out together.&lt;/p&gt;
&lt;h3 id=&quot;how-much-is-it&quot;&gt;How much is it?&lt;/h3&gt;
&lt;p class=&quot;price-locale&quot; data-product=&quot;sbs&quot;&gt;A$500. No subscription, and you get updates for
        life.
&lt;/p&gt;&lt;p class=&quot;ppp-notice&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;

&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=sbs&quot; data-umami-event=&quot;1504-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;
&lt;p&gt;If you don&amp;#39;t like it, let me know within 14 days and you can have your money back. No problem.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>15.03 Life Admin System</title><link>https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.03-life-admin-system/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.03-life-admin-system/</guid><description>A description of our pre-built Life Admin System.</description><pubDate>Mon, 18 Aug 2025 15:03:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;life-admin-system&quot;&gt;Life Admin System&lt;/h1&gt;
&lt;p&gt;&amp;#39;Life admin&amp;#39; is the unavoidable day-to-day that we all manage. But did you save that new policy document at &lt;em&gt;House/Insurance&lt;/em&gt; or &lt;em&gt;Documents/Important&lt;/em&gt;? Or give up and leave it in your inbox? Finding it later won&amp;#39;t be fun, especially as the house just burned down.&lt;/p&gt;
&lt;p&gt;It doesn&amp;#39;t need to be this hard. Johnny.Decimal is a great way to organise this. &lt;strong&gt;The Life Admin System is a ready-made structure, designed to contain the common stuff that we all do&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;One place for everything. No decisions, no duplicates. That policy document? It lives in &lt;code style=&quot;white-space: nowrap;&quot;&gt;12.12 Home insurance &amp;amp; claims&lt;/code&gt;. Every time.&lt;/p&gt;
&lt;p&gt;Job done. Go play outside.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/15.03A-LAS12.12--0-light-cx-2042x1700.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/15.03A-LAS12.12--0-dark-cx-2042x1700.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/15.03A-LAS12.12--0-light-cx-2042x1700.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/15.03A-LAS12.12--0-dark-cx-2042x1700.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the Life Admin ID 12.12 in JDHQ. From the top it shows which system, area, and category it&apos;s in. Then there&apos;s a bunch of descriptive text.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/15.03A-LAS12.12--0-light-cx-2042x1700.png&quot; width=&quot;1021&quot; height=&quot;850&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Lucy and I spent hundreds of hours designing this so that you don&amp;#39;t have to. It&amp;#39;s the system I use to organise my own life. Just sign up and move in. &lt;strong&gt;You&amp;#39;ll be more organised in 10 minutes than you&amp;#39;ve ever been&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Like Chris, who said &amp;#39;&lt;span class=&quot;highlight&quot;&gt;one day using this pack … everything has a home, and I finally feel in control&lt;/span&gt;&amp;#39;. Or Jade, who said that it &amp;#39;&lt;span class=&quot;highlight&quot;&gt;has been a game changer for me and I highly recommend to others who want an organised cohesive life admin system&lt;/span&gt;&amp;#39;. And Taras, who is &amp;#39;&lt;span class=&quot;highlight&quot;&gt;finally in peace because I know exactly where anything from my life is&lt;/span&gt;&amp;#39;. Attribution for these and more is at &lt;a href=&quot;https://jdhq.johnnydecimal.com/#testimonials&quot;&gt;JDHQ&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;how-does-it-work&quot;&gt;How does it work?&lt;/h3&gt;
&lt;p&gt;When you sign up, you get access to JDHQ. From there, you can search the 10,000 word Life Admin online index. There are 150+ IDs across 5 categories.&lt;/p&gt;
&lt;p&gt;Next, you download the folder structure for your computer. And a set of files that you can import into your notes app to create your &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Every page on JDHQ has helpful links to guide you around the system, as well as links to the forum and Discord if you need help.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s our job to help you be more organised. We&amp;#39;ll support you all the way.&lt;/p&gt;
&lt;h3 id=&quot;how-much-is-it&quot;&gt;How much is it?&lt;/h3&gt;
&lt;p class=&quot;price-locale&quot; data-product=&quot;las&quot;&gt;A$50. No subscription, and you get updates for
        life.
&lt;/p&gt;&lt;p class=&quot;ppp-notice&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;

&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=las&quot; data-umami-event=&quot;1503-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;
&lt;p&gt;If you don&amp;#39;t like it, let me know within 14 days and you can have your money back. No problem.&lt;/p&gt;
&lt;h3 id=&quot;works-beautifully-with-the-workshop&quot;&gt;Works beautifully with the workshop&lt;/h3&gt;
&lt;p&gt;Get the &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;workshop&lt;/a&gt; and Life Admin. Use Life Admin for all the common stuff, and learn from its patterns. Use the workshop to build a system for your hobbies and job and local tennis club.&lt;/p&gt;
&lt;p&gt;The workshop is part of &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;Johnny.Decimal University&lt;/a&gt;, which has more content. Enrolment is &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;, you get updates for life with no subscription, and it &lt;strong&gt;includes Life Admin&lt;/strong&gt;. Great value.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0125 I created my own platform</title><link>https://johnnydecimal.com/22.00.0125/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0125/</guid><description>What is it, and why, and what next?</description><pubDate>Wed, 13 Aug 2025 06:16:10 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-created-my-own-platform&quot;&gt;I created my own platform&lt;/h1&gt;
&lt;h3 id=&quot;you-did-what-now&quot;&gt;&lt;em&gt;You did what now?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;Oh hi. Thanks for asking.&lt;/p&gt;
&lt;p&gt;So when you start a business you use these 3rd party services. You sell PDFs via Gumroad and courses via Thinkific and Life Admin Systems via Shopify, and it&amp;#39;s great, because you can get started really quickly.&lt;/p&gt;
&lt;p&gt;But then 2 years later you&amp;#39;ve got user accounts all over the place, no cohesive view of your customers, &lt;em&gt;they&lt;/em&gt; have 3 different places to sign in, and you don&amp;#39;t really &lt;em&gt;control&lt;/em&gt; any of it.&lt;/p&gt;
&lt;p&gt;And updating your existing products is really hard. The Life Admin System was a zip file that is just a beast to change. I mean, essentially impossible. The Workbook is a PDF, and if you edit a PDF and the pagination is off then Lucy looks really sad. And we can&amp;#39;t have that. So small edits become a big job.&lt;/p&gt;
&lt;h3 id=&quot;and-a-platform-solves-this-how&quot;&gt;&lt;em&gt;And a &amp;#39;platform&amp;#39; solves this how?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;When you build your own thing, you have total control. The Life Admin System can be generated on-the-fly. So we change something this morning, you download it an hour later, and you get those updates.&lt;/p&gt;
&lt;p&gt;The Workbook can be presented as a bunch of web pages. Which means that it can dynamically link to the Workshop, which it accompanies. And the Workshop is now under my direct control! No more videos hosted on a &amp;#39;training platform&amp;#39; which, frankly, I always hated.&lt;/p&gt;
&lt;h3 id=&quot;where-is-it&quot;&gt;&lt;em&gt;Where is it?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;We&amp;#39;ve called it &lt;strong&gt;JDHQ&lt;/strong&gt; and it&amp;#39;s at &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;jdhq.johnnydecimal.com&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;do-your-existing-customers-get-this&quot;&gt;&lt;em&gt;Do your existing customers get this?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;Of course! They&amp;#39;ll all get an email soon enough and there&amp;#39;s a &lt;a href=&quot;https://jdhq.johnnydecimal.com/support/account-billing/migration-faq&quot;&gt;migration FAQ here&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;what-next-then&quot;&gt;&lt;em&gt;What next then?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;New things! All new things that, until now, just haven&amp;#39;t been possible. Hopefully people &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;tell me&lt;/a&gt; what they need, and we can build it for them.&lt;/p&gt;
&lt;p&gt;It&amp;#39;d also be nice if people told their friends. Maybe if they have a blog or a social media they can mention it there? ;-)&lt;/p&gt;
&lt;h3 id=&quot;i-dare-say-youll-take-the-rest-of-the-day-off&quot;&gt;&lt;em&gt;I dare say you&amp;#39;ll take the rest of the day off?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;We might just, yeah.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>01.03 Policies</title><link>https://johnnydecimal.com/00-09-site-administration/01-about/01.03-policies/</link><guid isPermaLink="true">https://johnnydecimal.com/00-09-site-administration/01-about/01.03-policies/</guid><description>Johnny.Decimal is part of the &apos;good internet&apos;. These are our policies around privacy, refunds, community behaviour, use of AI, and our general terms of service.</description><pubDate>Mon, 28 Jul 2025 03:37:11 GMT</pubDate><content:encoded>&lt;h3 id=&quot;about-these-policies&quot;&gt;About these policies&lt;/h3&gt;
&lt;p&gt;We wrote these policies ourselves. They&amp;#39;re intended to be read by humans, not lawyers. You should read them; it won&amp;#39;t take long.&lt;/p&gt;
&lt;h2 id=&quot;privacy&quot;&gt;Privacy&lt;/h2&gt;
&lt;p&gt;I go to great lengths to protect my own privacy. I use:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;an &lt;a href=&quot;https://kagi.com/&quot;&gt;independent search engine&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;an &lt;a href=&quot;https://migadu.com/&quot;&gt;independent email service&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;a &lt;a href=&quot;https://nextdns.io/&quot;&gt;network-level DNS filter&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;a &lt;a href=&quot;https://1blocker.com/&quot;&gt;local ad blocker&lt;/a&gt;, and&lt;/li&gt;
&lt;li&gt;the &lt;a href=&quot;https://mullvad.net/&quot;&gt;most privacy-preserving VPN on the planet&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I pay money for all of these services.&lt;/p&gt;
&lt;p&gt;I tell you this so that you believe me when I say &lt;em&gt;I care about your privacy as much as you do&lt;/em&gt;. These aren&amp;#39;t just words to placate you. I mean it.&lt;/p&gt;
&lt;p&gt;The simplest way for me to care about your privacy is to collect as little of your personal data as possible. Here&amp;#39;s how.&lt;/p&gt;
&lt;h3 id=&quot;analytics-and-trackers&quot;&gt;Analytics and trackers&lt;/h3&gt;
&lt;p&gt;I self-host &lt;a href=&quot;https://umami.is&quot;&gt;Umami&lt;/a&gt; analytics. No personal data is collected.&lt;/p&gt;
&lt;p&gt;Many services will block this, as I&amp;#39;ve made no attempt to obfuscate it. Feel free to explicitly block network access to &lt;code&gt;umami.johnnydecimal.com&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;cookies&quot;&gt;Cookies&lt;/h3&gt;
&lt;p&gt;My authentication service, &lt;a href=&quot;https://clerk.com/&quot;&gt;Clerk&lt;/a&gt;, uses cookies to track your user session on JDHQ (i.e. if you&amp;#39;re logged in or not). They have no other purpose and are required.&lt;/p&gt;
&lt;p&gt;Sometimes I use &lt;a href=&quot;https://docs.netlify.com/manage/monitoring/split-testing/&quot;&gt;Netlify&amp;#39;s split testing&lt;/a&gt; feature. This places a cookie &lt;code&gt;nf_ab&lt;/code&gt; with a random value between 0–1 so that you are served the same branch each time.&lt;/p&gt;
&lt;p&gt;No other cookies are used.&lt;/p&gt;
&lt;h3 id=&quot;user-account-and-settings&quot;&gt;User account and settings&lt;/h3&gt;
&lt;p&gt;If you have an account at JDHQ, your data is held at &lt;a href=&quot;https://clerk.com&quot;&gt;Clerk&lt;/a&gt;. I can see your name and email address.&lt;/p&gt;
&lt;p&gt;You can store some settings in JDHQ, e.g. the name of your Obsidian vault. I can view these settings. I won&amp;#39;t, unless you ask for support that requires I do so.&lt;/p&gt;
&lt;h3 id=&quot;sentry&quot;&gt;Sentry&lt;/h3&gt;
&lt;p&gt;I use &lt;a href=&quot;https://sentry.io&quot;&gt;Sentry&lt;/a&gt; to track errors that occur on JDHQ. All user-specific telemetry has been explicitly disabled.&lt;/p&gt;
&lt;p&gt;Your Clerk user ID is the only identifiable information sent with the error report. This is a long string of random characters. I can use it to look up your user account, which I might need to help me fix the error.&lt;/p&gt;
&lt;h3 id=&quot;stripe&quot;&gt;Stripe&lt;/h3&gt;
&lt;p&gt;Payments made through my payment processor, Stripe, are subject to Stripe&amp;#39;s &lt;a href=&quot;https://stripe.com/legal/consumer&quot;&gt;Terms of Service&lt;/a&gt; and &lt;a href=&quot;https://stripe.com/privacy&quot;&gt;Privacy Policy&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;money-back-guarantee&quot;&gt;Money-back guarantee&lt;/h2&gt;
&lt;h3 id=&quot;the-short-version&quot;&gt;The short version&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;All our products have a 14-day money-back guarantee.&lt;/li&gt;
&lt;li&gt;Send a copy of your purchase receipt to &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hello@johnnydecimal.com&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;I&amp;#39;ll refund your purchase within 48 hours.&lt;/li&gt;
&lt;li&gt;You will lose access to the product that was refunded.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;the-longer-version&quot;&gt;The longer version&lt;/h3&gt;
&lt;p&gt;I guarantee that our systems will save you time and help you organise your life and/or business. Me and Lucy take extraordinary pride in our work. This is our life. And as a small business, we depend entirely on satisfied customers and word-of-mouth.&lt;/p&gt;
&lt;p&gt;So if you&amp;#39;re not happy, I&amp;#39;m not happy. If you don&amp;#39;t think that the price was worth it, let me know within 14 days and you can have your money back. No questions, no risk.&lt;/p&gt;
&lt;p&gt;For the quickest response, forward your purchase receipt to &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hello@johnnydecimal.com&lt;/a&gt;. If you want to tell us what we could have done better, please do: but no pressure. You can just say &amp;#39;I&amp;#39;d like a refund&amp;#39;.&lt;/p&gt;
&lt;p&gt;If you can&amp;#39;t find your receipt, tell me what you purchased and when and I&amp;#39;ll look it up.&lt;/p&gt;
&lt;p&gt;I process these requests manually, on the same day that I receive them. So they&amp;#39;ll usually be processed within 24 hours, but on rare occasions it may take a bit longer.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t control how long the money takes to be refunded by Stripe back to your payment method. Experience tells me it&amp;#39;s usually a couple of days.&lt;/p&gt;
&lt;h2 id=&quot;code-of-conduct&quot;&gt;Code of conduct&lt;/h2&gt;
&lt;p&gt;There is one rule: &lt;strong&gt;be nice to people&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;People of all shapes, flavours, and varieties are welcome. Don’t make anyone feel unwelcome because of who they are. If you do, you’ll be asked to leave.&lt;/p&gt;
&lt;p&gt;This part from omg.lol’s &lt;a href=&quot;https://home.omg.lol/info/code-of-conduct&quot;&gt;Code of Conduct&lt;/a&gt; is perfect, so with permission it is reproduced and applies here.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;quot;We believe that everyone has a right to the freedoms of speech and personal expression. We also believe that everyone has a right to live free of abuse, harassment, and harm. In specific situations where these two beliefs are at odds with one another, we prioritise the second over the first.&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&quot;use-of-ai&quot;&gt;Use of AI&lt;/h2&gt;
&lt;h3 class=&quot;no-border less-margin&quot;&gt;Created by the humans&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Every word we produce was written by me or Lucy.&lt;/li&gt;
&lt;li&gt;All of our products are handmade.&lt;/li&gt;
&lt;li&gt;I answer all messages personally and will never use AI to reply to a message.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;AI is interesting. It definitely has its uses. But we &lt;em&gt;enjoy&lt;/em&gt; writing. It&amp;#39;s what we&amp;#39;ve chosen to do for a living. Why would we want to outsource that to a machine whose only skill is guessing the next most likely word and whose output is, therefore, by very definition, average?&lt;/p&gt;
&lt;p&gt;If we ever produce content that has been written or altered by an AI, this will be &lt;em&gt;explicitly&lt;/em&gt; stated alongside the content. The only situation we can foresee is if we translate some of the system content into another language.&lt;/p&gt;
&lt;h3 id=&quot;helping-me-write-code&quot;&gt;Helping me write code&lt;/h3&gt;
&lt;p&gt;I find &lt;a href=&quot;https://docs.anthropic.com/en/docs/claude-code/overview&quot;&gt;Claude Code&lt;/a&gt; useful. It&amp;#39;s better at answering my code questions than random web searches.&lt;/p&gt;
&lt;p&gt;But as a rule I don&amp;#39;t let it write code for me. This produces bad code that I neither understand nor trust. Also, watching an LLM do your work is very unrewarding, and you don&amp;#39;t learn anything. I prefer to do it myself.&lt;/p&gt;
&lt;h2 id=&quot;terms-of-service&quot;&gt;Terms of service&lt;/h2&gt;
&lt;ol style=&quot;margin-top: 20px;&quot;&gt;&lt;li&gt;&lt;a href=&quot;#1-introduction&quot;&gt;Introduction&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#2-no-professional-advice&quot;&gt;No professional advice&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#3-no-client-relationship&quot;&gt;No client relationship&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#4-use-of-services&quot;&gt;Use of services&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#5-limitation-of-liability&quot;&gt;Limitation of liability&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#6-changes-to-these-terms&quot;&gt;Changes to these terms&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#7-governing-law&quot;&gt;Governing law&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#8-refund-policy&quot;&gt;Refund policy&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#9-contact-us&quot;&gt;Contact us&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h3 id=&quot;1-introduction&quot;&gt;1. Introduction&lt;/h3&gt;
&lt;p&gt;Welcome to Coruscade Pty Ltd, trading as Johnny.Decimal (&amp;quot;we,&amp;quot; &amp;quot;our,&amp;quot; or &amp;quot;us&amp;quot;). By using our website, tools, or services (&amp;quot;Services&amp;quot;), you agree to these Terms of Service (&amp;quot;Terms&amp;quot;). If you do not agree, please do not use our Services.&lt;/p&gt;
&lt;h3 id=&quot;2-no-professional-advice&quot;&gt;2. No professional advice&lt;/h3&gt;
&lt;p&gt;Our Services provide general guidance on business, finance, and related topics. However, we are not lawyers, accountants, financial advisors, or any other type of licensed professional. The information we provide is for informational purposes only and should not be considered legal, financial, tax, or any other form of professional advice. You should consult a qualified professional before making any decisions.&lt;/p&gt;
&lt;h3 id=&quot;3-no-client-relationship&quot;&gt;3. No client relationship&lt;/h3&gt;
&lt;p&gt;Using our Services does not create any attorney-client, accountant-client, or other professional-client relationship. We do not represent you, and our guidance does not substitute for professional advice.&lt;/p&gt;
&lt;h3 id=&quot;4-use-of-services&quot;&gt;4. Use of services&lt;/h3&gt;
&lt;p&gt;You agree to use our Services at your own risk. We make no guarantees about the accuracy, completeness, or reliability of the information provided. We are not responsible for any actions you take (or fail to take) based on our guidance.&lt;/p&gt;
&lt;h3 id=&quot;5-limitation-of-liability&quot;&gt;5. Limitation of liability&lt;/h3&gt;
&lt;p&gt;To the fullest extent permitted by law, we are not liable for any direct, indirect, incidental, consequential, or special damages arising from your use of our Services, even if we have been advised of the possibility of such damages.&lt;/p&gt;
&lt;h3 id=&quot;6-changes-to-these-terms&quot;&gt;6. Changes to these terms&lt;/h3&gt;
&lt;p&gt;We may update these Terms at any time. If we do, we will email you. Continued use of our Services after changes means you accept the updated Terms.&lt;/p&gt;
&lt;h3 id=&quot;7-governing-law&quot;&gt;7. Governing law&lt;/h3&gt;
&lt;p&gt;These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of New South Wales, Australia.&lt;/p&gt;
&lt;h3 id=&quot;8-refund-policy&quot;&gt;8. Refund policy&lt;/h3&gt;
&lt;p&gt;If you don&amp;#39;t agree to these terms, please contact us within 14 days of signing up and we&amp;#39;ll refund you in full.&lt;/p&gt;
&lt;h3 id=&quot;9-contact-us&quot;&gt;9. Contact us&lt;/h3&gt;
&lt;p&gt;If you have any questions, please contact us at &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hello@johnnydecimal.com&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0124 Be who you are</title><link>https://johnnydecimal.com/22.00.0124/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0124/</guid><description>It&apos;s been a tough day. But I realised something really important.</description><pubDate>Tue, 15 Jul 2025 14:24:28 GMT</pubDate><content:encoded>&lt;h1 id=&quot;be-who-you-are&quot;&gt;Be who you are&lt;/h1&gt;
&lt;p&gt;Backstory: we&amp;#39;re building a new thing: JDHQ. It&amp;#39;s the consolidation of years of our stuff -- currently delivered by multiple platforms with multiple accounts, which is a terrible user experience and a nightmare to manage -- into one thing, that I&amp;#39;m building from scratch. It&amp;#39;s going to be sweet. It&amp;#39;ll launch next month.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a conventional wisdom that &amp;#39;recurring revenue&amp;#39; is vital to a business. And how does one generate such revenue? Subscriptions.&lt;/p&gt;
&lt;p&gt;There is a truth to this. I feel sorry for software developers who scrape $20 out of a begrudging user. You don&amp;#39;t have to be Andrew Wiles to realise that single $20 purchases do not a living make; whereas $20 every year compounds, as long as you can keep last year&amp;#39;s customers happy and re-subscribing. I gladly pay a whole bunch of subscriptions, and you should too.&lt;/p&gt;
&lt;p&gt;So the first element of the backstory is: I had in mind this subscription model for JDHQ. Because &lt;em&gt;They Say&lt;/em&gt; it&amp;#39;s &lt;em&gt;What You Should Do&lt;/em&gt;. But I always hated it. It just never sat right with me.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Next: I&amp;#39;m stressed. It&amp;#39;s been a funny year. We moved out of our &lt;del&gt;house&lt;/del&gt; &lt;del&gt;city&lt;/del&gt; country, which sounds glamorous but is in fact traumatic. I&amp;#39;m not complaining, I chose this; I&amp;#39;m just saying. Life is upside-down. We&amp;#39;re working 6.5 days a week on JDHQ, both of us. All day every day. And we miss our chickens. Ah god, we really miss our chickens.&lt;/p&gt;
&lt;p&gt;Without revealing too much, let&amp;#39;s just say that business is slow. The Northern Hemisphere&amp;#39;s summer seems to be a dip for us. You guys &lt;em&gt;shouldn&amp;#39;t&lt;/em&gt; be organising your files when it&amp;#39;s 30°C and still light at 10pm.&lt;/p&gt;
&lt;p&gt;And given our singular focus on building JDHQ, I&amp;#39;ve done nothing to alleviate this natural lull. My last JD-related blog post was almost 2 months ago. Nothing on YouTube. No marketing. Nothing, anywhere.&lt;/p&gt;
&lt;p&gt;So, again, I&amp;#39;m not complaining. It just is. I&amp;#39;m a bit stressed, and that takes a lot. It&amp;#39;s not my natural state. It&amp;#39;s hard to admit.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Years ago, I did something at work that I regretted.&lt;/p&gt;
&lt;p&gt;Broadly, there are two types of people on a project. There are the conciliatory ones whose job it is to pacify: to join people together, to be calm. And there are the shouty ones, whose job it is to stir things up, to &amp;#39;tell it how it is&amp;#39;, to &amp;#39;take no shit&amp;#39;. Projects need both types of people. I am very, very much the former. Like, alpha-former.&lt;/p&gt;
&lt;p&gt;(I realised my natural role was Manager of the Favour Bank: everyone owes me one, and I owe them one back, and the entire project can trade through me. Need to get something done? Ask Johnny: he knows who&amp;#39;ll help you. It&amp;#39;s a role I love, because it&amp;#39;s Who I Am. This role is entirely incompatible with being &amp;#39;the shouty guy&amp;#39;.)&lt;/p&gt;
&lt;p&gt;So on this project, some other team was being frankly hopeless&lt;sup&gt;&lt;a href=&quot;#user-content-fn-hopeless&quot; id=&quot;user-content-fnref-hopeless&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; and that was impacting us and, long story short, I went round their backs and escalated it to our SVP rather than working it out with them. Because I was really stressed. Not-sleeping-at-night stressed.&lt;/p&gt;
&lt;p&gt;This was Not Who I Am.&lt;/p&gt;
&lt;p&gt;The guy who I screwed over called me and lost his shit. And he was right. I was ashamed. I had been pressured in to betraying my very nature. The regret was immediate and profound, and I vowed never to do it again.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;I did it again yesterday.&lt;/p&gt;
&lt;p&gt;Lucy and I call you, our customers, &amp;#39;the family&amp;#39;. We really do. &lt;em&gt;How do we look after the family?&lt;/em&gt;, we ask. &lt;em&gt;What are the family benefits?&lt;/em&gt;, we ask.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-fambly&quot; id=&quot;user-content-fnref-fambly&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; It drives everything we do. It&amp;#39;s at the core of every decision we make.&lt;/p&gt;
&lt;p&gt;Yesterday I forgot that. And I knew it: I could see it happening. I fucking &lt;em&gt;knew&lt;/em&gt; that I was not being Who I Am. I let stress, and frustration, and whatever other excuse I come up with, get the better of me.&lt;/p&gt;
&lt;p&gt;(The details aren&amp;#39;t important. Money.)&lt;/p&gt;
&lt;p&gt;The family, of course, called it out. It&amp;#39;s what family does. And because I already knew that I was not being Who I Am, it was easy -- actually a fucking massive, palpable relief -- to back down. To undo the stupidity. To change my mind. To do what I should have done the first time.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s never too late to be Who You Are. &lt;em&gt;The instant&lt;/em&gt; you notice that you aren&amp;#39;t being: stop. Pull the emergency brake. Smash the glass. Hit the red button.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s never worth it.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-hopeless&quot;&gt;
&lt;p&gt;Because the entire project was a lost cause. &lt;em&gt;Everyone&lt;/em&gt; and &lt;em&gt;everything&lt;/em&gt; was hopeless. Nobody stood a chance. &lt;a href=&quot;#user-content-fnref-hopeless&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-fambly&quot;&gt;
&lt;p&gt;Actually we say &amp;#39;fambly&amp;#39; for reasons that are lost to time. &lt;a href=&quot;#user-content-fnref-fambly&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0123 Online reviews are dead</title><link>https://johnnydecimal.com/22.00.0123/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0123/</guid><description>They had a good run. Let&apos;s say the mid-2000s until, well, today. 2005-01-01 — 2025-05-31. RIP online reviews.</description><pubDate>Sat, 31 May 2025 08:52:55 GMT</pubDate><content:encoded>&lt;h1 id=&quot;online-reviews-are-dead&quot;&gt;Online reviews are dead&lt;/h1&gt;
&lt;p&gt;They had a good run. Let&amp;#39;s say the mid-2000s until, well, today. 2005-01-01 — 2025-05-31. RIP online reviews.&lt;/p&gt;
&lt;h2 id=&quot;airbnb&quot;&gt;Airbnb&lt;/h2&gt;
&lt;p&gt;Late last year, my family visited from the UK. We paid $5,000 to stay at &lt;a href=&quot;https://www.airbnb.com.au/rooms/680081199165674206?check_in=2025-10-21&amp;check_out=2025-10-25&amp;guests=1&amp;adults=5&amp;s=67&amp;unique_share_id=d73bc1fc-d795-4ad0-b776-1b426db86891&quot;&gt;this 4.88-star, &amp;#39;Guest favourite&amp;#39; Airbnb&lt;/a&gt;. Looks stunning, doesn&amp;#39;t it?&lt;/p&gt;
&lt;p&gt;It wasn&amp;#39;t. The kitchen was full of pots and pans that look like they&amp;#39;d been bought from an op shop.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-op&quot; id=&quot;user-content-fnref-op&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; The outside loungers were literally rotting. The &amp;#39;golf course&amp;#39; was in comically poor form. The BBQ was missing its metal plates -- you know, the bits you cook on -- and a gas bottle. The toilet blocked. And so on.&lt;/p&gt;
&lt;p&gt;After leaving my 3-star review, &amp;#39;Harry&amp;#39; called me multiple times and tried to bribe me, with money, to change my review. (I have a conscience. I declined.)&lt;/p&gt;
&lt;h2 id=&quot;hotels&quot;&gt;Hotels&lt;/h2&gt;
&lt;p&gt;We&amp;#39;re in Ho Chi Minh City, Vietnam. We booked &lt;a href=&quot;https://www.booking.com/hotel/vn/the-aquarius.en-gb.html?aid=304142&amp;label=gen173nr-1FCAEoggI46AdIM1gEaPQBiAEBmAEJuAEHyAEN2AEB6AEB-AEMiAIBqAIDuALPi-vBBsACAdICJDFiMGE5NDY0LWUyMDUtNDA0OC05ZTQ3LThjMGFhOGVlNmI3ZdgCBuACAQ&amp;sid=e5ffac721102ffc5292e8cfb05f37bef&amp;all_sr_blocks=1363050906_408597202_2_0_0&amp;checkin=2025-07-02&amp;checkout=2025-07-03&amp;dest_id=13630509&amp;dest_type=hotel&amp;dist=0&amp;group_adults=2&amp;group_children=0&amp;hapos=1&amp;highlighted_blocks=1363050906_408597202_2_0_0&amp;hpos=1&amp;matching_block_id=1363050906_408597202_2_0_0&amp;no_rooms=1&amp;req_adults=2&amp;req_children=0&amp;room1=A%2CA&amp;sb_price_type=total&amp;sr_order=popularity&amp;sr_pri_blocks=1363050906_408597202_2_0_0__133650000&amp;srepoch=1748682208&amp;srpvid=1a813fae1a920e66&amp;type=total&amp;ucfs=1&amp;&quot;&gt;an 8.3 &amp;#39;very good&amp;#39; hotel on Booking.com&lt;/a&gt;. Small, but recently refurbished, and reviews rave that &lt;em&gt;it&amp;#39;s the cleanest place&lt;/em&gt; and so on.&lt;/p&gt;
&lt;p&gt;Two weeks ago, &amp;#39;Lopez&amp;#39; from the USA, 9/10:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Best hotel slippers I’ve ever worn. Can I buy them? Asking for a friend (me)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;#39;Barnhart&amp;#39; from the USA, 9/10:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A small but beautiful hotel tucked away in the city center. Super clean, friendly service, and unbeatable location.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;#39;Janice&amp;#39; from New Zealand, 9/10:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The hotel was fantastic, with great service and beautiful decor.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;(I&amp;#39;ll point out that Lopez, Barnhart, and Janice are all suspiciously beautiful young ladies. This is relevant.)&lt;/p&gt;
&lt;p&gt;We left after an hour. That &lt;em&gt;is&lt;/em&gt; the building. Those photos &lt;em&gt;were&lt;/em&gt; taken there at some point. But then I don&amp;#39;t know what happened to all those soft furnishings. I don&amp;#39;t know why there are photos of a croissant and a burrito.&lt;/p&gt;
&lt;p&gt;The luxury you see in those photos is simply not real. I doubt it ever was.&lt;/p&gt;
&lt;h2 id=&quot;telegram&quot;&gt;Telegram&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m on Telegram (for bot notifications rather than anything personal). About once a week I&amp;#39;ll get a message from -- would you believe it -- a suspiciously beautiful young lady.&lt;/p&gt;
&lt;p&gt;After a brief &lt;em&gt;how&amp;#39;dyoudo&lt;/em&gt;?, the offer is made: do you want to make some money by reviewing online hotels? Until today I&amp;#39;d wondered what the scam was. What do they want from me?&lt;/p&gt;
&lt;p&gt;Well, the answer is nothing. The scam is the other way round. I think if I say, &lt;em&gt;yes, I&amp;#39;ll take $10 to review a hotel&lt;/em&gt;, I might actually get the money.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Because all online reviews are now fake&lt;/strong&gt;. They&amp;#39;re purchased. We&amp;#39;ve known this to be the case for Amazon for years. And now it&amp;#39;s accommodation. Gone. Dead. Useless.&lt;/p&gt;
&lt;p&gt;Of course, AI will ruin this further and faster.&lt;/p&gt;
&lt;h2 id=&quot;what-now&quot;&gt;What now?&lt;/h2&gt;
&lt;p&gt;Obviously you can still trust the Hyatt. And the larger, older places that are unique to a city. If they were no good, they&amp;#39;d have gone out of business by now.&lt;/p&gt;
&lt;p&gt;But if you want somewhere smaller and cheaper, I think you have to see it with your own eyes. That&amp;#39;s what we&amp;#39;re going to start doing: the first few days in a new city will be somewhere trustworthy but above budget. Then, with guidance from the online booking sites and &lt;a href=&quot;https://ahoyvietnam.com/best-districts-to-live-in-ho-chi-minh-city/&quot;&gt;individual blog posts&lt;/a&gt;, we&amp;#39;re going to go and walk into places. Can we see the room? Can we make a booking here at the desk, rather than online?&lt;/p&gt;
&lt;p&gt;I will never trust an online review again.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-op&quot;&gt;
&lt;p&gt;That&amp;#39;s a thrift store or a charity shop if you&amp;#39;re not from Australia. &lt;a href=&quot;#user-content-fnref-op&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0122 Email</title><link>https://johnnydecimal.com/22.00.0122/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0122/</guid><description>Love it? Didn&apos;t think so. Hate it? Well then let&apos;s see how I deal with that.</description><pubDate>Thu, 22 May 2025 04:36:48 GMT</pubDate><content:encoded>&lt;h1 id=&quot;email&quot;&gt;Email&lt;/h1&gt;
&lt;p&gt;Well we had to talk about it at some point. This might turn in to a mini-series as well, so let&amp;#39;s just see how this intro goes and let me know what you want next.&lt;/p&gt;
&lt;p&gt;This is necessarily quite technical in parts.&lt;/p&gt;
&lt;h2 id=&quot;brief-background&quot;&gt;Brief background&lt;/h2&gt;
&lt;p&gt;Old versions of my site stated that &amp;#39;I can fix your email&amp;#39;. And I believed that I could: from 2014—2017 I meticulously filed many thousands of emails as part of my job as Technical Project Controller of a $300m data centre deployment.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-filed&quot; id=&quot;user-content-fnref-filed&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I could find &lt;em&gt;anything&lt;/em&gt;, near-instantly. It was wizardry.&lt;/p&gt;
&lt;p&gt;And it got us out of contractual holes all the time.&lt;br&gt;
— &lt;em&gt;You said you&amp;#39;d have it done by now&lt;/em&gt;.&lt;br&gt;
— &lt;strong&gt;No we didn&amp;#39;t.&lt;/strong&gt;&lt;br&gt;
— &lt;em&gt;Slides email from &lt;code&gt;32.15&lt;/code&gt; across table&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Then two things happened.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;m talking about work here, because it&amp;#39;s the hardest problem. If you can solve it at work, home becomes trivial. We&amp;#39;ll get there.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;teams&quot;&gt;Teams&lt;/h3&gt;
&lt;p&gt;No, not the fact that you like your colleagues and bond with them as a common unit in service of a greater good. Instead, the antithesis of that: &lt;a href=&quot;https://en.wikipedia.org/wiki/Microsoft_Teams&quot;&gt;Microsoft Teams&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;More broadly, the fact that we&amp;#39;re all conditioned to &lt;em&gt;chat&lt;/em&gt; now. And what&amp;#39;s happened is that we&amp;#39;ve started to treat email like chat. It used to be that an email would be longer-form and, if you were startlingly fortunate, well-considered. My experience is that these days are gone. My &lt;del&gt;previous&lt;/del&gt; last ever boss just hit reply—type—send all day long. Dozens and dozens of one-liners: chats.&lt;/p&gt;
&lt;p&gt;You wouldn&amp;#39;t dream of trying to &lt;em&gt;organise your Teams&lt;/em&gt;, and I think corporate email has effectively merged with chat.&lt;/p&gt;
&lt;p&gt;The problem is that useful -- contractually useful -- information still arrives by email. So there&amp;#39;s no doubt that organising &lt;em&gt;some&lt;/em&gt; of it is a worthwhile endeavour. And the same applies at home. Forum summaries? Meh. My travel insurance policy? Ah yes please.&lt;/p&gt;
&lt;h3 id=&quot;outlook-became-hotmail&quot;&gt;Outlook became Hotmail&lt;/h3&gt;
&lt;p&gt;This is very work-specific, but worth mentioning. Outlook used to be a really powerful mail program with amazing features that, properly harnessed, could really help you get on top of your email. See &lt;a href=&quot;https://johnnydecimal.com/22.00.0022/&quot;&gt;22.00.0022&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Then they decided that you were a mindless cretin and turned it in to a &lt;a href=&quot;https://www.microsoft.com/en-us/microsoft-365/outlook/outlook-for-windows#modalvideo-3&quot;&gt;banal simplification of Hotmail&lt;/a&gt;. Now it has essentially no features but, used long enough, it&amp;#39;ll lull you to sleep. So, that&amp;#39;s good?&lt;/p&gt;
&lt;h3 id=&quot;message-dont-stress-it&quot;&gt;Message: don&amp;#39;t stress it&lt;/h3&gt;
&lt;p&gt;The message here is that email should no longer be considered &amp;#39;solvable&amp;#39;. We can still use sensible strategies to deal with it, but the Platonic ideal simply isn&amp;#39;t there. It&amp;#39;s best that you accept that now.&lt;/p&gt;
&lt;h1 id=&quot;principles&quot;&gt;Principles&lt;/h1&gt;
&lt;p&gt;That said, I think we can lay down some principles from which all else follows. I&amp;#39;m typing these off the cuff so they might evolve.&lt;/p&gt;
&lt;h3 id=&quot;1-never-delete-anything&quot;&gt;1. Never delete anything&lt;/h3&gt;
&lt;p&gt;As in, once an email has been received, it should always be accessible in some way. You might equally phrase this as &amp;#39;always archive everything&amp;#39;.&lt;/p&gt;
&lt;p&gt;Because you don&amp;#39;t know what you might want later, and if &lt;em&gt;everything&lt;/em&gt; is saved, that&amp;#39;s one less decision to make. &lt;em&gt;Should I save this one?&lt;/em&gt; shouldn&amp;#39;t be something you angst over. It&amp;#39;s saved. Move on.&lt;/p&gt;
&lt;h3 id=&quot;2-only-file-whats-important&quot;&gt;2. Only file what&amp;#39;s important&lt;/h3&gt;
&lt;p&gt;I get … let me see … about 100 emails a week. Not &lt;em&gt;that&lt;/em&gt; many, thanks to principle 3. Of those, I&amp;#39;d say less than one a week needs to be &amp;#39;filed&amp;#39;: put in a folder with a number so that I can easily find it, without search.&lt;/p&gt;
&lt;p&gt;The rest just get &amp;#39;disappeared&amp;#39; from my inbox. Because they&amp;#39;re saved, thanks to principle 1. I&amp;#39;ll show you how I do this while not using Gmail.&lt;/p&gt;
&lt;h3 id=&quot;3-unsubscribe&quot;&gt;3. Unsubscribe!&lt;/h3&gt;
&lt;p&gt;That button works, you know. Smash it! You can&amp;#39;t stop spam, but you can stop mailing lists you signed up for.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-signedup&quot; id=&quot;user-content-fnref-signedup&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;4-inbox-zero-is-still-relevant&quot;&gt;4. &amp;#39;&lt;a href=&quot;https://www.youtube.com/watch?v=z9UjeTMb3Yk&quot;&gt;Inbox Zero&lt;/a&gt;&amp;#39; is still relevant&lt;/h3&gt;
&lt;p&gt;In that having only the things you actually need to deal with in your inbox is good for the brain. Why leave all those newsletters and forum summaries there? You wouldn&amp;#39;t leave hundreds of files on your Desktop. (Right?…)&lt;/p&gt;
&lt;p&gt;I use my Desktop cautiously. I&amp;#39;ll drop a file there, briefly, while I decide where it needs to go. If I see a file there, I know it needs to be dealt with. I use my inbox in exactly the same way.&lt;/p&gt;
&lt;p&gt;But don&amp;#39;t get all religious and lose sleep if you&amp;#39;ve got half a dozen things in there for a couple of days. It&amp;#39;s an inbox. You&amp;#39;ll get to them.&lt;/p&gt;
&lt;p&gt;Combined with principle 1, this is easy. Get in the habit of reading your mail and, if there&amp;#39;s no action, immediately deleting it. The mechanics of this varies depending on your mail program.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll show you how I do this with an IMAP account and Apple Mail. It&amp;#39;s the default behaviour for Gmail. Your corporate Exchange account is more of a challenge.&lt;/p&gt;
&lt;h3 id=&quot;5-minimise-addresses&quot;&gt;5. Minimise addresses&lt;/h3&gt;
&lt;p&gt;This one might be controversial. I know people love their &lt;a href=&quot;https://kagi.com/search?q=unique+email+address+service&amp;r=au&amp;sh=v0f6sESxI_PqLb1gjWom4g&quot;&gt;email anonymisation one-time address services&lt;/a&gt;, but I&amp;#39;ve given them a go and they&amp;#39;re not for me.&lt;/p&gt;
&lt;p&gt;Primary objection: I want to use my own domain name. I&amp;#39;m never going to sign up for something using &lt;a href=&quot;mailto:whatever@random.com&quot;&gt;whatever@random.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And it feels like an over-optimisation to have to manage an individual address for every service. I tried it (self-managed) for a while and it just caused friction. As we&amp;#39;ll see I have one address that I think of as &amp;#39;the &lt;a href=&quot;https://en.wikipedia.org/wiki/Sluice&quot;&gt;sluice&lt;/a&gt;&amp;#39;. I use it to sign up to things. I consider it semi-ephemeral.&lt;/p&gt;
&lt;p&gt;I think you need at most two addresses.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The sluice. When you need to sign up for a thing, use this. Eventually you might rotate it out for another.&lt;/li&gt;
&lt;li&gt;A professional address. If you&amp;#39;re at work, you&amp;#39;ve already got one. If you run your own thing, get one. If you don&amp;#39;t run your own thing, you don&amp;#39;t need one.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;em&gt;So which address do my friends and family use?&lt;/em&gt;, you ask. A: none of them. Do your friends still email you? Mine don&amp;#39;t. It&amp;#39;s all messages/group chats.&lt;/p&gt;
&lt;h3 id=&quot;6-reduce-friction&quot;&gt;6. Reduce friction&lt;/h3&gt;
&lt;p&gt;Should have been number 1. Because all of this is in service of &lt;em&gt;reducing friction&lt;/em&gt;. Email is something that, once configured, should take as little of your time as possible.&lt;/p&gt;
&lt;p&gt;More email and more addresses and more domains just means more configuration. You don&amp;#39;t need it. Email doesn&amp;#39;t deserve it. Step away.&lt;/p&gt;
&lt;h1 id=&quot;implementation-details&quot;&gt;Implementation details&lt;/h1&gt;
&lt;p&gt;So here&amp;#39;s how I actually do this.&lt;/p&gt;
&lt;p&gt;I like old-fashioned email. I &lt;strong&gt;do&lt;/strong&gt; want to control it myself, and I &lt;strong&gt;don&amp;#39;t&lt;/strong&gt; want to use a web service. So I have an SMTP/IMAP/POP3 account at a mail provider: &lt;a href=&quot;https://migadu.com&quot;&gt;Migadu&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I was with &lt;a href=&quot;https://fastmail.com&quot;&gt;Fastmail&lt;/a&gt;, who are great. If you&amp;#39;re not an expert at this, you should probably choose them.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-fastmail&quot; id=&quot;user-content-fnref-fastmail&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; Migadu are cheaper if you manage multiple mailboxes as they charge by the &lt;em&gt;account&lt;/em&gt;, not by the mailbox or domain. Per principle 5 I now only have 2 mailboxes, but I also manage a handful for other people. I can do this all very comfortably on Migadu&amp;#39;s &lt;a href=&quot;https://www.migadu.com/pricing/&quot;&gt;Mini&lt;/a&gt; plan for US$90/year.&lt;/p&gt;
&lt;p&gt;This isn&amp;#39;t a &lt;em&gt;setting up an IMAP/SMTP account&lt;/em&gt; tutorial, so I&amp;#39;ll just assume you know how to do that. As always, just ask if you need a hand.&lt;/p&gt;
&lt;h2 id=&quot;the-server-duplicates-all-mail&quot;&gt;The server duplicates all mail&lt;/h2&gt;
&lt;p&gt;This is how we conform to principle 1: never delete anything. When mail arrives at our mail server, it&amp;#39;s immediately forwarded to another mailbox. On Migadu, this is at &lt;strong&gt;[Domain] → [Mailbox] → Forwarding&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve found this to be &lt;em&gt;massively&lt;/em&gt; more reliable than trying to have my mail client make a copy of the email. And what if you delete the email on your phone before your Mac creates the copy? Better for this to happen server-side.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;ve configured email to &lt;code&gt;hello@johnnydecimal.com&lt;/code&gt; to forward to &lt;code&gt;archive@johnnydecimal.com&lt;/code&gt;. Then my mail client uses POP3 -- still supported at Migadu! -- to pull this mailbox, and I have a rule to immediately move that mail to a local &amp;#39;Archive&amp;#39; mailbox, and mark it as read.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-tilde&quot; id=&quot;user-content-fnref-tilde&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-pop3&quot; id=&quot;user-content-fnref-pop3&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0122A-Mail_rules--0-light-1180x474.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0122A-Mail_rules--0-dark-1180x474.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0122A-Mail_rules--0-light-1180x474.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0122A-Mail_rules--0-dark-1180x474.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Apple Mail showing a configured Rule that moves the message to Archive, and marks it as read.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0122A-Mail_rules--0-light-1180x474.png&quot; width=&quot;590&quot; height=&quot;237&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0122A. macOS Mail.app rule.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;The net result is that all mail invisibly lands in the local archive, and I&amp;#39;m free to delete messages from my inbox after I&amp;#39;ve read them.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-messageid&quot; id=&quot;user-content-fnref-messageid&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt; It works great.&lt;/p&gt;
&lt;h3 id=&quot;gmailhotmail-version&quot;&gt;Gmail/Hotmail version&lt;/h3&gt;
&lt;p&gt;Most webmails have the concept of &lt;em&gt;archiving&lt;/em&gt; an email vs. &lt;em&gt;deleting&lt;/em&gt; it. They&amp;#39;re all a bit different, and I don&amp;#39;t use any of them, but that&amp;#39;s what you&amp;#39;re looking for.&lt;/p&gt;
&lt;h3 id=&quot;enterprise-outlook-version&quot;&gt;Enterprise Outlook version&lt;/h3&gt;
&lt;p&gt;I &lt;em&gt;think&lt;/em&gt; the modern Outlook also has this same concept? The habit you&amp;#39;re going to have to build is pressing the keyboard shortcut for &amp;#39;archive&amp;#39; vs. just hitting the delete key.&lt;/p&gt;
&lt;p&gt;If someone can confirm that for me, I&amp;#39;ll update this.&lt;/p&gt;
&lt;h2 id=&quot;filing-important-messages&quot;&gt;Filing important messages&lt;/h2&gt;
&lt;p&gt;Principle 2 says to file what&amp;#39;s important, and I do that in exactly the same way that I do in my file system: with hierarchical Johnny.Decimal folders.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it. No secret sauce.&lt;/p&gt;
&lt;p&gt;Adding a currently-in-use folder as a &amp;#39;Favourite&amp;#39; helps with usability. Mail.app handles this nicely: you can favourite a nested folder and it&amp;#39;ll appear as a top-level folder in the list. So I currently have &lt;code&gt;15.53 Jucy&amp;#39;s World Tour&lt;/code&gt; stuck there as we&amp;#39;re about to take a trip.&lt;/p&gt;
&lt;h3 id=&quot;you-might-skip-area-folders&quot;&gt;You might skip area folders&lt;/h3&gt;
&lt;p&gt;At work, when I had a lot more folders, I found it useful to skip creation of the area-level folders. Go straight to categories. Less clicking, works great.&lt;/p&gt;
&lt;h2 id=&quot;my-sluice-address&quot;&gt;My sluice address&lt;/h2&gt;
&lt;p&gt;FYI my sluice address is &lt;code&gt;2020@joh▒ny.net.au&lt;/code&gt;. It gets forwarded to &lt;em&gt;the same archive&lt;/em&gt;. You don&amp;#39;t need to configure multiple archive targets.&lt;/p&gt;
&lt;h3 id=&quot;spam&quot;&gt;Spam&lt;/h3&gt;
&lt;p&gt;I did this assuming that the account would eventually be riddled with spam and that I&amp;#39;d eventually cycle up to &lt;code&gt;2025@&lt;/code&gt; or whatever. That hasn&amp;#39;t turned out to be the case: the account gets very little genuine spam, as in Nigerian princes trying to leave me their inheritance.&lt;/p&gt;
&lt;p&gt;Spam these days comes from companies who lie to you when they pretend that they won&amp;#39;t sign you up to their mailing list. See principle 3.&lt;/p&gt;
&lt;p&gt;(Actually I get way more spam to my JD address because they can somehow scrape Shopify stores. I know my site isn&amp;#39;t &amp;#39;ranking on Google for SEO&amp;#39;, but no thanks, I don&amp;#39;t need your help.)&lt;/p&gt;
&lt;h1 id=&quot;sending-bulk-mail&quot;&gt;Sending bulk mail&lt;/h1&gt;
&lt;p&gt;Just a brief mention, I have a need to send bulk outbound mail because of the forum and my newsletter.&lt;/p&gt;
&lt;p&gt;I use &lt;a href=&quot;https://aws.amazon.com/ses/&quot;&gt;Amazon SES&lt;/a&gt; for this.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Pros&lt;/strong&gt;: it&amp;#39;s essentially free at my volume.&lt;br&gt;
&lt;strong&gt;Cons&lt;/strong&gt;: literally everything else.&lt;/p&gt;
&lt;h3 id=&quot;let-me-know-what-else-you-need&quot;&gt;Let me know what else you need&lt;/h3&gt;
&lt;p&gt;That was just a brain-dump. Let me know what else you need.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-filed&quot;&gt;
&lt;p&gt;More accurately, I had rules set up so that the majority of incoming email was filed &lt;em&gt;for me&lt;/em&gt; by Outlook. This is &lt;a href=&quot;#outlook-became-hotmail&quot;&gt;no longer possible&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-filed&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-signedup&quot;&gt;
&lt;p&gt;And those you didn&amp;#39;t. It really &lt;a href=&quot;https://www.linkedin.com/posts/johnny-noble_im-sick-of-being-lied-to-every-goddamned-activity-7328553152931082240-0s5z&quot;&gt;pisses me off&lt;/a&gt; that companies ignore the &amp;#39;please don&amp;#39;t sign me up to the mailing list&amp;#39; button. It&amp;#39;s a lie the majority of the time. But when you receive that first unsolicited email, it does have an unsubscribe link, and that does work. &lt;a href=&quot;#user-content-fnref-signedup&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-fastmail&quot;&gt;
&lt;p&gt;They&amp;#39;re more geared up for consumer-level support; their console is friendlier; they have built-in features like single-use addresses. &lt;a href=&quot;#user-content-fnref-fastmail&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-tilde&quot;&gt;
&lt;p&gt;I&amp;#39;ve named this account &lt;code&gt;~&lt;/code&gt; as it needs to remain active in Apple Mail, but I want to ignore it in the list of mailboxes. I find the tilde just gets out of the way. &lt;a href=&quot;#user-content-fnref-tilde&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-pop3&quot;&gt;
&lt;p&gt;If you&amp;#39;re not familiar with POP3, it&amp;#39;s an older email protocol. Where the modern protocol, IMAP, assumes that you want to keep messages on the server -- normally a good thing, so you can access them from your phone, Mac, iPad, webmail -- POP, which stands for &amp;#39;Post Office Protocol&amp;#39;, actually downloads the mail from the server, and then deletes it from the server.&lt;/p&gt;
&lt;p&gt;In this situation, where we only want this archive on one computer, that&amp;#39;s exactly what we want. &lt;a href=&quot;#user-content-fnref-pop3&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-messageid&quot;&gt;
&lt;p&gt;The archived copy even has the same message ID. So you can link the version in your inbox to, say, a to-do, then delete that copy and the to-do will link to the version that remains in your archive. &lt;a href=&quot;#user-content-fnref-messageid&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0121 Things: processing your categories - part 3 🎬</title><link>https://johnnydecimal.com/22.00.0121/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0121/</guid><description>Continuing the Things video series, we look at the steps taken to organise the jumble of tasks in each of my categories.</description><pubDate>Wed, 21 May 2025 04:57:07 GMT</pubDate><content:encoded>&lt;h1 id=&quot;things-processing-your-categories---part-3&quot;&gt;Things: processing your categories - part 3 🎬&lt;/h1&gt;
&lt;p&gt;Continuing the Things video series, we look at the steps taken to organise the jumble of tasks in each of my categories.&lt;/p&gt;
  
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0110/&quot;&gt;Things: why and how I use it&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0114/&quot;&gt;Things: processing your inbox&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0117/&quot;&gt;Things: principles and priorities&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Things: processing your categories&lt;/li&gt;
&lt;/ol&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0120 Backups [SBS.14.23]</title><link>https://johnnydecimal.com/22.00.0120/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0120/</guid><description>A small series looking at the Small Business System&apos;s section 14.20 Storage, data, &amp; backups. Today: backups.</description><pubDate>Tue, 20 May 2025 23:53:03 GMT</pubDate><content:encoded>&lt;h1 id=&quot;backups-sbs1423&quot;&gt;Backups [SBS.14.23]&lt;/h1&gt;
&lt;p&gt;In the &lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;previous post&lt;/a&gt;, we left off by documenting our synchronisation strategy. You should have a clear picture of exactly where all of your data is and, crucially, what&amp;#39;s a full vs. a partial copy.&lt;/p&gt;
&lt;h2 id=&quot;synchronisation-is-not-a-backup&quot;&gt;Synchronisation is not a backup&lt;/h2&gt;
&lt;p&gt;Looking at &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0119-synchronisation/#my-diagram&quot;&gt;your diagram&lt;/a&gt;, I bet you&amp;#39;re pretty pleased with yourself. Look at all those copies of your data! How lovely to have so many backups.&lt;/p&gt;
&lt;p&gt;But say you (accidentally, without noticing) delete a file from this laptop. The deletion is dutifully synchronised: that is, &lt;strong&gt;the file is deleted everywhere&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Or you edit a document and realise that you&amp;#39;ve made a mistake. You can&amp;#39;t go and fetch the old version from anywhere, because &lt;strong&gt;your mistake has been synchronised&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;So it&amp;#39;s great that you have these multiple copies, and in some situations they &lt;em&gt;can&lt;/em&gt; help you recover data. If you drop your laptop in the ocean, the synchronised files in the cloud don&amp;#39;t become water-logged. You can get a new laptop, install Dropbox, and off you go.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t let this lull you in to a false sense of security. &lt;strong&gt;Without backups, you could easily lose everything&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id=&quot;what-makes-a-backup&quot;&gt;What makes a backup?&lt;/h2&gt;
&lt;p&gt;Backups are just copies of your data, but they have special properties. This is why you need dedicated backup software to manage this for you.&lt;/p&gt;
&lt;h3 id=&quot;1-you-can-roll-back-in-time&quot;&gt;1. You can roll back in time&lt;/h3&gt;
&lt;p&gt;In the scenario where you&amp;#39;ve made a bad edit to a document, you might not realise for a while. In that time, you&amp;#39;ve made more edits that you want to keep.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120A-Edit_timeline--0-light-cx-932x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120A-Edit_timeline--0-dark-cx-932x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120A-Edit_timeline--0-light-cx-932x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120A-Edit_timeline--0-dark-cx-932x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A simple block diagram showing document shapes. From left to right we have &apos;Good copy&apos; in green, then &apos;Bad edit&apos; in red, then 3 blue &apos;Edits&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0120A-Edit_timeline--0-light-cx-932x392.png&quot; width=&quot;466&quot; height=&quot;196&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0120A. Whoops.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;So you need to be able to go back in time, restoring versions of the document from further and further back until you find the pre-bad-edit version.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-merge&quot; id=&quot;user-content-fnref-merge&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120B-Restore_timeline--0-light-cx-1148x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120B-Restore_timeline--0-dark-cx-1148x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120B-Restore_timeline--0-light-cx-1148x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120B-Restore_timeline--0-dark-cx-1148x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Our block diagram now shows us reaching back in time to that &apos;good copy&apos; and pulling it forward to the present.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0120B-Restore_timeline--0-light-cx-1148x570.png&quot; width=&quot;574&quot; height=&quot;285&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0120B. Restoring an older version of a file.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Apple nailed this metaphor with the backup software it built into macOS in 2007: &lt;strong&gt;Time Machine&lt;/strong&gt;. &lt;a href=&quot;https://eclecticlight.co/2024/09/07/a-brief-history-of-time-machine&quot;&gt;The Eclectic Light Company has a brief history here&lt;/a&gt;, from which I&amp;#39;ve gratefully borrowed this (old, cheesy) screenshot.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Time Machine. It shows a macOS Finder window zooming out in to a stellar background. There&apos;s what looks like a galaxy in the far distance, with past versions of your Finder window disappearing in to it. It&apos;s a bit cheesy but the analogy works.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://eclecticlight.co/wp-content/uploads/2021/09/timemachine2.jpg?w=940&quot; width=&quot;940&quot; height=&quot;705&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Courtesy of The Eclectic Light Company; link above&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Backup software typically keeps what are called &amp;#39;staggered&amp;#39; backups. So you&amp;#39;ll have a copy every day for the last 30 days; then a copy every week for the last 52 weeks; then a copy every month for the last 60 months.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-retention&quot; id=&quot;user-content-fnref-retention&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This allows you to go far back in time without needing to store a massive amount of data.&lt;/p&gt;
&lt;h3 id=&quot;2-theyre-immutable&quot;&gt;2. They&amp;#39;re immutable&lt;/h3&gt;
&lt;p&gt;Which is just a fancy computer-science term meaning they can&amp;#39;t be changed. Once you&amp;#39;ve backed up a file, that copy of the file, which represents how it was at that instant in time, is locked, forever.&lt;/p&gt;
&lt;p&gt;This can help you restore from scenarios where a hacker has encrypted your files and is &lt;a href=&quot;https://en.wikipedia.org/wiki/Ransomware&quot;&gt;demanding a ransom to decrypt them&lt;/a&gt;. If your files have been nefariously encrypted and you&amp;#39;re relying on synchronisation, guess what was also synchronised? The encryption!&lt;/p&gt;
&lt;p&gt;But if you have an immutable copy of your files, you can roll-back to a pre-hacked copy. You might still lose &lt;em&gt;some&lt;/em&gt; data, but it won&amp;#39;t be a catastrophe.&lt;/p&gt;
&lt;h1 id=&quot;backing-up&quot;&gt;Backing up&lt;/h1&gt;
&lt;p&gt;Sufficiently scolded, now we turn to the mechanics of backing up your data. Backup software is just software, so it needs to run somewhere. That&amp;#39;d be your laptop -- you can&amp;#39;t run software &lt;em&gt;at Dropbox&lt;/em&gt; -- so let&amp;#39;s add that to the diagram.&lt;/p&gt;
&lt;h3 id=&quot;some-new-shapes&quot;&gt;Some new shapes&lt;/h3&gt;
&lt;p&gt;Before we do, let&amp;#39;s quickly review our diagram key. I&amp;#39;ve chosen the colours very deliberately, and there are a few new block types.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120C-Diagram_key--0-light-824x1112.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120C-Diagram_key--0-dark-824x1112.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120C-Diagram_key--0-light-824x1112.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120C-Diagram_key--0-dark-824x1112.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Grey blocks represent a physical machine/device. Light grey blocks represent cloud storage. Green blocks are a full/primary copy of your data, while orange represents a partial/secondary copy. And blue blocks represent bacukps.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0120C-Diagram_key--0-light-824x1112.png&quot; width=&quot;412&quot; height=&quot;556&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0120C. Our updated key.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Green blocks represent a full copy of our data. Orange blocks represent partial or secondary copies. And the new blue block represents a backup of our data. Solid lines are backup jobs, dotted lines are synchronisation.&lt;/p&gt;
&lt;h3 id=&quot;the-ideal-case&quot;&gt;The ideal case&lt;/h3&gt;
&lt;p&gt;In the ideal case, all of your data is on your laptop. So you&amp;#39;re backing up a full copy of your data.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If your diagram shows a blue backup block coming from a green primary data block, you can sleep easy&lt;/strong&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120D-Backup_ideal--0-light-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120D-Backup_ideal--0-dark-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120D-Backup_ideal--0-light-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120D-Backup_ideal--0-dark-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The green &apos;primary&apos; data block on your laptop now has an arrow leading to a blue &apos;backup&apos; block, which is hosted at Backblaze.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0120D-Backup_ideal--0-light-cx-788x1004.png&quot; width=&quot;394&quot; height=&quot;502&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0120D. Backing up the ideal case.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;are-you-backing-up-everything&quot;&gt;Are you backing up everything?&lt;/h2&gt;
&lt;p&gt;We&amp;#39;ve seen that I can&amp;#39;t afford to keep all of my data on my laptop. More realistically, this is the scenario.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120E-Backup_partial--0-light-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0120E-Backup_partial--0-dark-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120E-Backup_partial--0-light-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0120E-Backup_partial--0-dark-cx-788x1004.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;This time the backup is coming from an orange &apos;partial&apos; data block&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0120E-Backup_partial--0-light-cx-788x1004.png&quot; width=&quot;394&quot; height=&quot;502&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0120E. Backing up a partial data block.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;&lt;strong&gt;Now I&amp;#39;m backing up an orange partial data block, and my backup doesn&amp;#39;t include all of my data&lt;/strong&gt;. There&amp;#39;s data at Dropbox that &lt;em&gt;isn&amp;#39;t on this laptop&lt;/em&gt;, and so can&amp;#39;t be included in a backup done from it. The bad news is, there&amp;#39;s no easy solution to this problem.&lt;/p&gt;
&lt;p&gt;As we&amp;#39;ll see, I get around this by having a server with a massive hard drive. If you don&amp;#39;t have that, there are other workarounds. This is outside the scope of this blog post, but we&amp;#39;ll address it in a future post. As always, I&amp;#39;m happy to help. Just ask.&lt;/p&gt;
&lt;h2 id=&quot;more-backups-is-more-good-3-2-1&quot;&gt;More backups is more good: 3-2-1&lt;/h2&gt;
&lt;p&gt;One more factor, as we nudge towards paranoia. But paranoia is good! Paranoia saves you from disaster.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s good not to trust any one backup. Who knows what might go wrong? If it&amp;#39;s in the cloud, the company might go bust. If it&amp;#39;s on a hard drive in your drawer, you might plug that drive in and discover it&amp;#39;s died.&lt;/p&gt;
&lt;p&gt;The simple rule of thumb here is 3-2-1. You should have:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;3 copies of your data (including the original),&lt;/li&gt;
&lt;li&gt;on 2 different devices,&lt;/li&gt;
&lt;li&gt;1 of which is off-site.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Synchronisation helps us with the first and second items. A copy here and a copy at Dropbox is already 2 copies, on 2 different devices. Your backup becomes the 3rd copy.&lt;/p&gt;
&lt;p&gt;The third item is crucial. You might have 10 backups in your house; when your house burns down, none of them is going to do you any good! &lt;strong&gt;You must also have a backup &amp;#39;off-site&amp;#39;&lt;/strong&gt;, and the cloud is the simplest solution.&lt;/p&gt;
&lt;p&gt;If life goes well, you&amp;#39;ll never, ever use it. But isn&amp;#39;t that the very definition of &amp;#39;insurance&amp;#39;?&lt;/p&gt;
&lt;h3 id=&quot;bonus-points&quot;&gt;Bonus points&lt;/h3&gt;
&lt;p&gt;For extra paranoia points, keep 2 complete backups. And for a 2× paranoia boost, use different software for each. It&amp;#39;s good to have one backup &amp;#39;locally&amp;#39;, which might be a hard drive in your drawer. You can restore from this really quickly. And then one cloud backup, which fulfils the third criteria of having one &amp;#39;off-site&amp;#39;.&lt;/p&gt;
&lt;h3 id=&quot;backup-lesson-over&quot;&gt;Backup lesson over&lt;/h3&gt;
&lt;p&gt;That&amp;#39;s a lot of theory, so I&amp;#39;m going to leave it there for now. In the next post, I&amp;#39;ll show you my actual sync/backup diagram and dive into some of the details.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s the table of contents for this mini-series.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;22.00.0116 Data [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;22.00.0120 Backups [SBS.14.23]&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0180/&quot;&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-merge&quot;&gt;
&lt;p&gt;Which you&amp;#39;re then going to have to manually merge with the current version, as you&amp;#39;ve been making edits (in blue) that you want to keep. &lt;a href=&quot;#user-content-fnref-merge&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-retention&quot;&gt;
&lt;p&gt;I just made up this typical &amp;#39;retention cycle&amp;#39;. Check your backup software for details. &lt;a href=&quot;#user-content-fnref-retention&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0119 Synchronisation [SBS.14.22]</title><link>https://johnnydecimal.com/22.00.0119/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0119/</guid><description>A small series looking at the Small Business System&apos;s section 14.20 Storage, data, &amp; backups. Today: synchronisation.</description><pubDate>Sat, 10 May 2025 00:35:39 GMT</pubDate><content:encoded>&lt;h1 id=&quot;synchronisation-sbs1422&quot;&gt;Synchronisation [SBS.14.22]&lt;/h1&gt;
&lt;p&gt;In the &lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;previous post&lt;/a&gt;, we left off by defining our blocks of data and noting their &lt;strong&gt;primary&lt;/strong&gt; storage host.&lt;/p&gt;
&lt;p&gt;20 years ago, that would have been the complete picture. You had files on your computer at home. If you wanted them somewhere else, you had to put them on an external drive and move them there yourself. And now you have two copies! Careful you don&amp;#39;t update the wrong one…&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Windows 95 shipped with &lt;a href=&quot;https://en.wikipedia.org/wiki/Briefcase_(Microsoft_Windows)&quot;&gt;Microsoft Briefcase&lt;/a&gt;, a feature intended to make this shuttling-of-data-between-computers easier. It was a cool idea, but I don&amp;#39;t remember it working very well; certainly, it was never very popular. 💼&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;dropbox&quot;&gt;Dropbox&lt;/h2&gt;
&lt;p&gt;Then, in April 2007, Dropbox launched. It changed everything: suddenly, I could access my files anywhere I wanted. Dropbox introduced the concept of synchronisation to the general public.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-hn&quot; id=&quot;user-content-fnref-hn&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;The first MacBook Air was &lt;a href=&quot;https://www.youtube.com/watch?v=kvfrVrh76Mk&amp;t=10s&quot;&gt;launched&lt;/a&gt; in January the next year. If you don&amp;#39;t watch the whole thing, make sure to watch &lt;a href=&quot;https://youtu.be/kvfrVrh76Mk?si=hAQIVe7vVHG3QFv-&amp;t=201&quot;&gt;Steve&amp;#39;s reveal&lt;/a&gt;, another iconic moment in technology. With that, the number of people carrying a computer around with them exploded.&lt;/p&gt;
&lt;p&gt;Suddenly, data was everywhere at once.&lt;/p&gt;
&lt;h3 id=&quot;everywhere&quot;&gt;Everywhere?&lt;/h3&gt;
&lt;p&gt;So here&amp;#39;s the problem. Theoretically -- in an ideal world -- your data &lt;em&gt;could&lt;/em&gt; be everywhere at once. Nothing technically prevents it, and if you can do it, you probably should. It&amp;#39;s way simpler.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s draw that diagram to see what it looks like.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119A-Two_primary_data_blocks--0-light-cx-540x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119A-Two_primary_data_blocks--0-dark-cx-540x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119A-Two_primary_data_blocks--0-light-cx-540x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119A-Two_primary_data_blocks--0-dark-cx-540x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A block diagram showing &apos;your data&apos; in our primary green block on both &apos;your laptop&apos; and at &apos;Dropbox&apos;. A dotted line with two arrows joins the boxes, and is labelled &apos;Two-way synchronisation&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0119A-Two_primary_data_blocks--0-light-cx-540x570.png&quot; width=&quot;270&quot; height=&quot;285&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0119A. The simplest ideal case: two full copies of your data.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;In reality -- and this is my actual problem -- I have more data than can fit on a laptop. You might think that cloud storage space is the limiting factor, but it isn&amp;#39;t. Cloud storage is essentially infinite: just pay a few extra quid a month. But this laptop has a 500GB hard drive and the only way to change that is by buying another laptop.&lt;/p&gt;
&lt;h3 id=&quot;selectivepartial-sync&quot;&gt;Selective/partial sync&lt;/h3&gt;
&lt;p&gt;The solution is obvious enough: don&amp;#39;t synchronise everything. Only synchronise to each machine the stuff that you need on that machine. It&amp;#39;s great that this is a solution…&lt;/p&gt;
&lt;p&gt;…but we just cracked open the Complexity Egg. Before: nice neat situation. 🥚 After: complex mess all over the bench. Get a cloth. 🧽&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119B-Secondary_data_block--0-light-cx-570x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119B-Secondary_data_block--0-dark-cx-570x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119B-Secondary_data_block--0-light-cx-570x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119B-Secondary_data_block--0-dark-cx-570x570.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The green &apos;primary&apos; data block on your laptop has turned in to an orange &apos;partial&apos; block.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0119B-Secondary_data_block--0-light-cx-570x570.png&quot; width=&quot;285&quot; height=&quot;285&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0119B. Selectively synchronising a partial data block.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;the-problem-with-selective-sync&quot;&gt;The problem with selective sync&lt;/h2&gt;
&lt;p&gt;To be clear: technically, this is no bother. This is what computers excel at.&lt;/p&gt;
&lt;p&gt;The problem is that what was once simple, clear, and unambiguous -- all of my data is &lt;em&gt;here&lt;/em&gt; and &lt;em&gt;there&lt;/em&gt; -- is no longer the case. And now you have to think, this piece of data … do I &lt;em&gt;want&lt;/em&gt; it here and there? Can I afford to keep it here? How long do I need to keep it here? And so on.&lt;/p&gt;
&lt;h3 id=&quot;embedded-data-the-different-classes-of-data-different-sync-methods&quot;&gt;Embedded data; the different classes of data; different sync methods&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s another consideration, which I&amp;#39;ll just touch on briefly.&lt;/p&gt;
&lt;p&gt;Data isn&amp;#39;t neat. You don&amp;#39;t just have one folder of stuff &lt;em&gt;over here&lt;/em&gt; and another folder of stuff &lt;em&gt;over there&lt;/em&gt;. You have one parent folder and it contains a bunch of stuff and some of that stuff is more important, and within it you might have a subfolder which is yet more important, and it&amp;#39;s all embedded and inter-related.&lt;/p&gt;
&lt;p&gt;And there isn&amp;#39;t just one way of synchronising things. I use iCloud Drive for my Documents folder. Apple Photos has its own method of synchronisation. And I use 3rd-party software called Syncthing to keep data in sync with my server. I&amp;#39;ll talk about Syncthing in a future post.&lt;/p&gt;
&lt;p&gt;Once these introductory articles are finished we can go deeper on some of these topics. Just ask. But for now, baby steps.&lt;/p&gt;
&lt;h3 id=&quot;my-diagram&quot;&gt;My diagram&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s how my real-world diagram looks.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119C-Johnny_data--0-light-cx-1636x944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0119C-Johnny_data--0-dark-cx-1636x944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119C-Johnny_data--0-light-cx-1636x944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0119C-Johnny_data--0-dark-cx-1636x944.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The diagram now shows my laptop populated with secondary/partial data blocks. Each of them has a &apos;selective sync&apos; arrow linking to the primary data block, which is either on iCloud, or on my server.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0119C-Johnny_data--0-light-cx-1636x944.png&quot; width=&quot;818&quot; height=&quot;472&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0119C. A mostly-accurate representation of my data and its synchronisation.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;This is where I think the diagram really starts to shine. Because I can still understand what&amp;#39;s going on there. And as things change, I can come back and update it.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve found that a general rule is that &lt;em&gt;if you can&amp;#39;t draw it, it&amp;#39;s too complex&lt;/em&gt;. For sure I&amp;#39;ve built myself situations like that in the past. If yours is like that, it might be time to simplify.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s more than enough for one day. Go and update your diagram, and don&amp;#39;t forget to ask for help on the &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0115-storage-data-backups-sbs-14-20/2589&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.com/channels/822215537589354566/1354950652538781849&quot;&gt;Discord&lt;/a&gt; if you need it.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s the table of contents for this mini-series.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;22.00.0116 Data [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0120/&quot;&gt;22.00.0120 Backups [SBS.14.23]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0180/&quot;&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-hn&quot;&gt;
&lt;p&gt;The &lt;a href=&quot;https://news.ycombinator.com/item?id=8863&quot;&gt;launch post&lt;/a&gt; on Hacker News is famous in nerd circles because of the top-voted response in that thread.&lt;/p&gt;
&lt;p&gt;User &lt;code&gt;BrandonM&lt;/code&gt; responded (emphasis mine) that &amp;#39;for a Linux user, you can already build such a system yourself &lt;strong&gt;quite trivially&lt;/strong&gt; by getting an FTP account, mounting it locally with curlftpfs, and then using SVN or CVS on the mounted filesystem&amp;#39;.&lt;/p&gt;
&lt;p&gt;This massively understated just how much simpler Dropbox was. Drew Houston became very rich. Brandon did not. &lt;a href=&quot;#user-content-fnref-hn&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0118 RSS: a public service announcement</title><link>https://johnnydecimal.com/22.00.0118/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0118/</guid><description>RSS is great, and you should know about it. If you do, move along. If you don&apos;t, read on.</description><pubDate>Tue, 06 May 2025 23:23:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rss-a-public-service-announcement&quot;&gt;RSS: a public service announcement&lt;/h1&gt;
&lt;p&gt;I wanted to explain what RSS was to those of you who don&amp;#39;t already know. Because it&amp;#39;s really great and you should be using it.&lt;/p&gt;
&lt;h2 id=&quot;like-the-postal-service-for-websites&quot;&gt;Like the postal service, for websites&lt;/h2&gt;
&lt;p&gt;Without RSS, you have a bunch of websites that you like visiting. (&lt;em&gt;Why, thank you&lt;/em&gt;.) They put out regular content and you don&amp;#39;t want to miss anything. So you remember them all and you go there regularly, or you leave tabs open and refresh them, or some other barbaric nonsense.&lt;/p&gt;
&lt;p&gt;Here the onus is on you to &lt;em&gt;fetch&lt;/em&gt; that content. You have to reach out to each individual place and grab what&amp;#39;s new. You&amp;#39;re going to miss things, or just forget things, and it&amp;#39;s a lot of work.&lt;/p&gt;
&lt;h3 id=&quot;your-mail-gets-delivered&quot;&gt;Your mail gets delivered&lt;/h3&gt;
&lt;p&gt;This isn&amp;#39;t how your postal mail works. Imagine if you had to go to each of your contacts and say, &lt;em&gt;excuse me, do you have any new mail for me&lt;/em&gt;?&lt;/p&gt;
&lt;p&gt;Eventually you&amp;#39;d forget to ask Aunty Doreen for her mail &lt;em&gt;because it&amp;#39;s always about Gerald and isn&amp;#39;t he perfect&lt;/em&gt; and then she&amp;#39;d get upset and cut you out of the will.&lt;/p&gt;
&lt;h3 id=&quot;rss-is-like-your-postman&quot;&gt;RSS is like your postman&lt;/h3&gt;
&lt;p&gt;The mail service serves as an aggregator of your mail. They collect it all, bring it to one central place -- your mailbox -- and you can go there at your leisure and read about Gerald&amp;#39;s latest test scores &lt;em&gt;damn the little weasel he never fails&lt;/em&gt;.&lt;/p&gt;
&lt;h2 id=&quot;get-some-free-software&quot;&gt;Get some (free) software&lt;/h2&gt;
&lt;p&gt;We&amp;#39;re going to use &lt;a href=&quot;https://netnewswire.com&quot;&gt;NetNewsWire&lt;/a&gt; because it&amp;#39;s been around since the dawn of time, is free, and open source. (&lt;a href=&quot;https://newsblur.com&quot;&gt;NewsBlur&lt;/a&gt; is a website that does the same job. And there are many others -- just &lt;a href=&quot;https://kagi.com/search?q=rss+reader&amp;r=au&amp;sh=oIxq3J2UDf4gO8fyn3Wl2A&quot;&gt;search&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;Download it and go to &lt;strong&gt;File → New Feed…&lt;/strong&gt; Copy/paste the URL of this blog post in there. Click &lt;strong&gt;Add&lt;/strong&gt;. Done.&lt;/p&gt;
&lt;p&gt;You&amp;#39;ll see all of my old posts load. (You can select them all and &amp;#39;mark as read&amp;#39;.) And when I publish new stuff, it&amp;#39;ll just arrive. You don&amp;#39;t need to do anything.&lt;/p&gt;
&lt;h3 id=&quot;add-some-more-sites&quot;&gt;Add some more sites&lt;/h3&gt;
&lt;p&gt;The vast majority of blog-like sites have an &amp;#39;RSS feed&amp;#39;. That&amp;#39;s what NetNewsWire needs. But you don&amp;#39;t need to care about that. I can&amp;#39;t remember the last time that I had to do anything other than add &lt;em&gt;any&lt;/em&gt; URL from the site. The feed should be discovered automatically.&lt;/p&gt;
&lt;h3 id=&quot;thats-it&quot;&gt;That&amp;#39;s it?&lt;/h3&gt;
&lt;p&gt;Basically. Stop going &lt;em&gt;to&lt;/em&gt; sites. Let them come to you.&lt;/p&gt;
&lt;p&gt;And ask on the &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267672996068196504&quot;&gt;Discord&lt;/a&gt; if you need help.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0117 Things: principles and priorities - part 2 🎬</title><link>https://johnnydecimal.com/22.00.0117/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0117/</guid><description>Continuing the Things video series, we review my design principles, and introduce a simple prioritisation system.</description><pubDate>Tue, 06 May 2025 06:44:02 GMT</pubDate><content:encoded>&lt;h1 id=&quot;things-principles-and-priorities---part-2&quot;&gt;Things: principles and priorities - part 2 🎬&lt;/h1&gt;
&lt;p&gt;Continuing the Things video series, we review my design principles, and introduce a simple prioritisation system.&lt;/p&gt;
  
&lt;h2 id=&quot;references&quot;&gt;References&lt;/h2&gt;
&lt;p&gt;📙 The book I mentioned by Oliver Burkeman.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.oliverburkeman.com/fourthousandweeks&quot;&gt;Four Thousand Weeks - Time Management for Mortals&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;🙋 Ellane&amp;#39;s website.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://ellanew.com/tagged/ptpl&quot;&gt;Plain text; Paper, less&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0110/&quot;&gt;Things: why and how I use it&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0114/&quot;&gt;Things: processing your inbox&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Things: principles and priorities&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0121/&quot;&gt;Things: processing your categories&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0116 Data [SBS.14.22]</title><link>https://johnnydecimal.com/22.00.0116/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0116/</guid><description>A small series looking at the Small Business System&apos;s section 14.20 Storage, data, &amp; backups. Today: data.</description><pubDate>Tue, 06 May 2025 01:09:27 GMT</pubDate><content:encoded>&lt;h1 id=&quot;data-sbs1422&quot;&gt;Data [SBS.14.22]&lt;/h1&gt;
&lt;p&gt;In &lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;the previous post&lt;/a&gt; we looked at your &lt;code&gt;Storage [SBS.14.21]&lt;/code&gt;. Now let&amp;#39;s consider your &lt;code&gt;Data [SBS.14.22]&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Data is all the stuff you make, or get sent, or download, or whatever. It&amp;#39;s &lt;em&gt;your stuff&lt;/em&gt;. It&amp;#39;s the reason you use a computer.&lt;/p&gt;
&lt;h2 id=&quot;discovery&quot;&gt;Discovery&lt;/h2&gt;
&lt;p&gt;The first thing we&amp;#39;re going to do is figure out &lt;em&gt;what&lt;/em&gt; all of your data is. Not &lt;em&gt;where&lt;/em&gt; it is, yet.&lt;/p&gt;
&lt;p&gt;Start by thinking of the largest blocks of data. We&amp;#39;ll crack each of these open later to see if there are any sub-classes within that need special consideration.&lt;/p&gt;
&lt;p&gt;Mine mostly align with my Johnny.Decimal systems. Here&amp;#39;s how they look at their highest level.&lt;/p&gt;
&lt;h3 id=&quot;d25-johnnydecimal&quot;&gt;D25 Johnny.Decimal&lt;/h3&gt;
&lt;p&gt;This &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.11-multiple-systems/#the-solution&quot;&gt;system&lt;/a&gt; is where we manage &amp;#39;the Johnny.Decimal business&amp;#39;. It&amp;#39;s the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;p76-johnnys-personal-life&quot;&gt;P76 Johnny&amp;#39;s personal life&lt;/h3&gt;
&lt;p&gt;Obvious enough. This is the &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;Life Admin System&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;my-laptop&quot;&gt;My laptop&lt;/h3&gt;
&lt;p&gt;There&amp;#39;s also a bunch of stuff that comes along with me just logging in to my laptop. Technically, we&amp;#39;d call that my &amp;#39;user folder&amp;#39;. I&amp;#39;ve got the stuff on my Desktop, any extra files stored in my Pictures or Movies folders, my email&lt;sup&gt;&lt;a href=&quot;#user-content-fn-email&quot; id=&quot;user-content-fnref-email&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;, and all of the configuration that I&amp;#39;ve done to make this laptop mine.&lt;/p&gt;
&lt;p&gt;This isn&amp;#39;t a &lt;em&gt;lot&lt;/em&gt; of stuff, but it needs to be considered.&lt;/p&gt;
&lt;h3 id=&quot;my-photos-library&quot;&gt;My photos library&lt;/h3&gt;
&lt;p&gt;For the sake of completion, let&amp;#39;s consider my photos library. It&amp;#39;s stored in Apple Photos and there are copies on my iPhone, my Mac, and in the cloud.&lt;/p&gt;
&lt;h2 id=&quot;diagram&quot;&gt;Diagram&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s add this stuff to our diagram.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0116A-Diagrams_data--1-light-cx-2556x820.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0116A-Diagrams_data--1-dark-cx-2556x820.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0116A-Diagrams_data--1-light-cx-2556x820.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0116A-Diagrams_data--1-dark-cx-2556x820.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A diagram with simple block shapes. They all resemble a simple 3D box. Dark grey shapes are labelled for my physical machines or devices, such as &apos;lutetium&apos;, my laptop. Light grey shapes are labelled for cloud storage such as iCloud. Green stack-of-paper shapes represent the &apos;primary&apos; copy of my data.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0116A-Diagrams_data--1-light-cx-2556x820.png&quot; width=&quot;1278&quot; height=&quot;410&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0116A. Adding my data to figure 22.00.0115A.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;primary-data&quot;&gt;Primary data&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ve added green shapes to indicate these &lt;strong&gt;primary&lt;/strong&gt; data blocks. But why do I call them &lt;strong&gt;primary&lt;/strong&gt;?&lt;/p&gt;
&lt;p&gt;In the past, this was a lot simpler: if you had some data, it was almost certainly just on &lt;em&gt;this disk&lt;/em&gt; or &lt;em&gt;that disk&lt;/em&gt;. These days, you can trivially synchronise your data across multiple machines and the cloud. So this notion of exactly where any piece of data is has become less clear. Soon we&amp;#39;ll see how each of these data blocks also exists in one or more &lt;strong&gt;secondary&lt;/strong&gt; locations.&lt;/p&gt;
&lt;h2 id=&quot;data-lives-on-storage&quot;&gt;Data lives on storage&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s place these data blocks on the devices that are their primary home. (Nerds say that the storage &amp;#39;hosts&amp;#39; the data.)&lt;/p&gt;
&lt;h3 id=&quot;p76-johnnys-personal-life-1&quot;&gt;P76 Johnny&amp;#39;s personal life&lt;/h3&gt;
&lt;p&gt;We&amp;#39;ll start with an easy one. Well ... kinda. At this point I&amp;#39;ll note that the &lt;em&gt;next&lt;/em&gt; post in this series will discuss &lt;em&gt;synchronisation&lt;/em&gt; of your data. So don&amp;#39;t worry if it feels like I&amp;#39;m skimming detail here: I am.&lt;/p&gt;
&lt;p&gt;This block of data&amp;#39;s primary home is on my iCloud Drive. That&amp;#39;s the cloud service you get with a Mac: Windows users have OneDrive, or you might use a 3rd party service like Dropbox. The principles are the same and I&amp;#39;ll just use &amp;#39;iCloud&amp;#39; here for simplicity.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-features&quot; id=&quot;user-content-fnref-features&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;But day-to-day I don&amp;#39;t interact with my iCloud Drive. Where even is that? I don&amp;#39;t open my laptop and use &lt;em&gt;the cloud&lt;/em&gt;. I open my laptop and I want to interact with files that are &lt;em&gt;on this laptop&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-cloud&quot; id=&quot;user-content-fnref-cloud&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h4 id=&quot;-optimisedselectivepartial-synchronisation&quot;&gt;░ Optimised/selective/partial synchronisation&lt;/h4&gt;
&lt;p&gt;iCloud is software, and its job is to synchronise files between this laptop, and the iCloud service. But not &lt;em&gt;all&lt;/em&gt; files. I have 2TB of iCloud storage available to me, but this laptop only has a 0.5TB (500GB) hard drive. If I filled my iCloud Drive, I couldn&amp;#39;t possibly carry it all around with me.&lt;/p&gt;
&lt;p&gt;So iCloud has a setting, &lt;strong&gt;Optimise Mac Storage&lt;/strong&gt;. Its descriptive text reads:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The full contents of iCloud Drive will be stored on this Mac if you have enough space. Older documents will be stored only in iCloud when space is needed.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;What this is trying to tell us (I think it&amp;#39;s poorly worded) is that the &lt;strong&gt;only&lt;/strong&gt; place with a &lt;strong&gt;full&lt;/strong&gt; copy of my iCloud Drive &lt;em&gt;is iCloud&lt;/em&gt;. Not this Mac. This has implications later when we want to back this data up.&lt;/p&gt;
&lt;h3 id=&quot;d25-johnnydecimal-1&quot;&gt;D25 Johnny.Decimal&lt;/h3&gt;
&lt;p&gt;This block of data is huge. It contains all of the original Workshop videos. Again, too big for either of our laptops.&lt;/p&gt;
&lt;p&gt;So the primary location for this data is our server, the always-on Mac mini at my friend Alex&amp;#39;s house.&lt;/p&gt;
&lt;h3 id=&quot;my-laptop-1&quot;&gt;My laptop&lt;/h3&gt;
&lt;p&gt;Unsurprisingly, the primary location for my user folder on my laptop is on the laptop.&lt;/p&gt;
&lt;h3 id=&quot;my-photos-library-1&quot;&gt;My photos library&lt;/h3&gt;
&lt;p&gt;Similar to my iCloud Drive, the only place that all of my photos exist is on iCloud. On my Mac this setting is in &lt;strong&gt;Photos → Settings → iCloud tab → Optimise Mac Storage&lt;/strong&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If your Mac is low on space, full-resolution photos and videos are automatically replaced with smaller, device-sized versions. Full-resolution versions can be downloaded from iCloud anytime.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is a common pattern, e.g. Google Photos does the same sort of thing. Again, this has implications for your backups.&lt;/p&gt;
&lt;h3 id=&quot;diagram-1&quot;&gt;Diagram&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s represent this all visually.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0116B-Diagrams_data_on_storage--0-light-cx-916x828.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0116B-Diagrams_data_on_storage--0-dark-cx-916x828.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0116B-Diagrams_data_on_storage--0-light-cx-916x828.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0116B-Diagrams_data_on_storage--0-dark-cx-916x828.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Our diagram now shows these blocks of data overlaid on the storage device that hosts them.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0116B-Diagrams_data_on_storage--0-light-cx-916x828.png&quot; width=&quot;458&quot; height=&quot;414&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0116B. Placing data on its host storage.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;next-time&quot;&gt;Next time...&lt;/h2&gt;
&lt;p&gt;Without considering synchronisation, this is an incomplete view. We&amp;#39;ll get to that in the next post.&lt;/p&gt;
&lt;p&gt;For now your homework is to consider all of your blocks of data, to figure out their &lt;strong&gt;primary&lt;/strong&gt; storage host, and to update your diagram. Again, don&amp;#39;t worry about making it neat yet. There&amp;#39;s still a bit to do.&lt;/p&gt;
&lt;p&gt;And if you need any help, ask on the &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0115-storage-data-backups-sbs-14-20/2589&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.com/channels/822215537589354566/1354950652538781849&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s the table of contents for this mini-series.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;22.00.0116 Data [SBS.14.22]&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0120/&quot;&gt;22.00.0120 Backups [SBS.14.23]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0180/&quot;&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-email&quot;&gt;
&lt;p&gt;I use macOS Mail with an old-school &lt;a href=&quot;https://migadu.com&quot;&gt;mail account&lt;/a&gt;, not a cloud service like Gmail. &lt;a href=&quot;#user-content-fnref-email&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-features&quot;&gt;
&lt;p&gt;They all have the same basic set of features, but they might have different names. For example, they all have the concept of selectively synchronising only certain data to certain machines. &lt;a href=&quot;#user-content-fnref-features&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-cloud&quot;&gt;
&lt;p&gt;Noting for completeness that it &lt;em&gt;is&lt;/em&gt; possible to interact with files directly in the cloud, typically by logging in to a website. It&amp;#39;d just be a horrible way to work day-to-day. &lt;a href=&quot;#user-content-fnref-cloud&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0115 Storage, data, &amp; backups [SBS.14.20]</title><link>https://johnnydecimal.com/22.00.0115/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0115/</guid><description>A small series looking at the Small Business System&apos;s section 14.20 Storage, data, &amp; backups. Today: storage.</description><pubDate>Sun, 04 May 2025 01:59:25 GMT</pubDate><content:encoded>&lt;h1 id=&quot;storage-data--backups-sbs1420&quot;&gt;Storage, data, &amp;amp; backups [SBS.14.20]&lt;/h1&gt;
&lt;p&gt;This will be a short series focusing on the mechanics of storing, synchronising, and backing up your data. It doesn&amp;#39;t matter what data: obviously mine is organised with Johnny.Decimal, but that&amp;#39;s not a prerequisite. This post follows on from &lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101&lt;/a&gt; but will be expanded and more formal.&lt;/p&gt;
&lt;p&gt;This was prompted by &lt;a href=&quot;https://discord.com/channels/822215537589354566/1366741421461213245&quot;&gt;Chris on Discord&lt;/a&gt;, who asked how people go about doing this. And it ties in neatly with the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;, where we designed section &lt;code&gt;14.20 ■ Storage, data, &amp;amp; backups&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;my-situation&quot;&gt;My situation&lt;/h2&gt;
&lt;p&gt;Hopefully my specific situation is about as complex as it gets. We&amp;#39;ll get in to the details, but briefly:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I no longer live anywhere permanently. So my internet is limited in speed and capacity, as I&amp;#39;m often tethering from a mobile connection.&lt;/li&gt;
&lt;li&gt;Me and Lucy share the Johnny.Decimal system, so it needs to be on both of our laptops.
&lt;ul&gt;
&lt;li&gt;But it can&amp;#39;t be in its entirety, because it&amp;#39;s 800GB and wouldn&amp;#39;t fit.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-videos&quot; id=&quot;user-content-fnref-videos&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;I produce videos and need to synchronise 3GB+ of data between the laptops. (I record, Lucy edits.)&lt;/li&gt;
&lt;li&gt;I have my own personal system, as does Lucy. I need to ensure they&amp;#39;re both backed up.&lt;/li&gt;
&lt;li&gt;I have an always-on Mac mini with 16TB of attached storage in my friend Alex&amp;#39;s house, as well as an 8TB Synology.&lt;/li&gt;
&lt;li&gt;I subscribe to various cloud sync and backup services.&lt;/li&gt;
&lt;li&gt;I don&amp;#39;t want to spend any more than necessary.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;storage&quot;&gt;Storage&lt;/h1&gt;
&lt;p&gt;The order of that SBS header is very deliberate. Storage comes first.&lt;/p&gt;
&lt;p&gt;Because it refers to the places that your data might be. You can&amp;#39;t store data in thin air: it must be &lt;em&gt;on&lt;/em&gt; some device, drive, or service.&lt;/p&gt;
&lt;p&gt;This might be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your laptop or desktop computer.&lt;/li&gt;
&lt;li&gt;A mobile device.&lt;/li&gt;
&lt;li&gt;An external drive.
&lt;ul&gt;
&lt;li&gt;This might be a large array of HDDs, a smaller SSD, or a USB drive.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;A &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0101-my-backup-strategy/#nas-vs-das&quot;&gt;NAS&lt;/a&gt;, e.g. a Synology.&lt;/li&gt;
&lt;li&gt;A cloud sync provider, e.g. Dropbox, iCloud, OneDrive.&lt;/li&gt;
&lt;li&gt;A cloud backup provider, e.g. Backblaze.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And so the first step is just being aware of these places. You could do this with a note in your JDex, but I think a diagram works really well here. Let&amp;#39;s start one: I use &lt;a href=&quot;https://diagrams.app&quot;&gt;Diagrams&lt;/a&gt;, but anything will do. &lt;a href=&quot;https://excalidraw.com&quot;&gt;Excalidraw&lt;/a&gt; is a simple online diagramming tool.&lt;/p&gt;
&lt;h3 id=&quot;jd-implementation-detail&quot;&gt;JD implementation detail&lt;/h3&gt;
&lt;p&gt;Rather than always noting that I&amp;#39;m going off on a tangent, I&amp;#39;ll start putting JD implementation details in an orange box like this.&lt;/p&gt;

&lt;blockquote class=&quot;jd-info&quot;&gt;&lt;p&gt;When you create this diagram -- especially if it&amp;#39;s online somewhere like
Excalidraw -- don&amp;#39;t assume you&amp;#39;ll remember where it is. You won&amp;#39;t.&lt;/p&gt;&lt;p&gt;Make a note in your JDex. I always put this sort of thing &amp;#39;above the line&amp;#39; at the top of the note.&lt;/p&gt;&lt;p&gt;If it is online, make your note a &lt;code&gt;[markdown](link://)&lt;/code&gt; directly to it.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&quot;diagram&quot;&gt;Diagram&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s start this diagram with blocks that represent our storage. It will help if you make these blocks all the same shape and/or colour. Here, I&amp;#39;ve used Diagrams and created a key to the shapes.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0115A-Diagrams_key--0-light-cx-2558x638.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0115A-Diagrams_key--0-dark-cx-2558x638.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0115A-Diagrams_key--0-light-cx-2558x638.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0115A-Diagrams_key--0-dark-cx-2558x638.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A diagram with simple block shapes. They all resemble a simple 3D box. Dark grey shapes are labelled for my physical machines or devices, such as &apos;lutetium&apos;, my laptop. Light grey shapes are labelled for cloud storage such as iCloud.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0115A-Diagrams_key--0-light-cx-2558x638.png&quot; width=&quot;1279&quot; height=&quot;319&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0115A. My storage devices or locations.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;blockquote&gt;
&lt;p&gt;You can right-click any of these images and &amp;#39;open in new tab&amp;#39; to expand them.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;prefer-simplicity-over-accuracy&quot;&gt;Prefer simplicity over accuracy&lt;/h3&gt;
&lt;p&gt;This diagram isn&amp;#39;t &lt;em&gt;technically&lt;/em&gt; accurate. The server &lt;code&gt;curium&lt;/code&gt; is a low-spec Mac mini with almost no internal storage. Actually its storage is on a &lt;a href=&quot;https://www.seagate.com/au/en/products/creative-pro/lacie-2big-raid/&quot;&gt;16TB external drive&lt;/a&gt;. In early versions of my diagram I tried to represent this, but I found it confused more than it helped. &lt;em&gt;I&lt;/em&gt; know what I mean here. You should do the same.&lt;/p&gt;
&lt;h2 id=&quot;next-time&quot;&gt;Next time...&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ll keep each of these posts focused on a specific topic. That&amp;#39;s it for storage: your homework is to understand where your stuff could be, and start some sort of diagram.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t worry about making it neat for now. We&amp;#39;ll be adding a lot more to it and moving things around next time.&lt;/p&gt;
&lt;p&gt;And if you need any help, ask on the &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0115-storage-data-backups-sbs-14-20/2589&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.com/channels/822215537589354566/1354950652538781849&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;Here&amp;#39;s the table of contents for this mini-series.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0101/&quot;&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;22.00.0116 Data [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0120/&quot;&gt;22.00.0120 Backups [SBS.14.23]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0180/&quot;&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-videos&quot;&gt;
&lt;p&gt;Much of that 800GB being the original Workshop video files. Fortunately I have no need for them on this laptop, but I don&amp;#39;t want to delete them unless I have to. &lt;a href=&quot;#user-content-fnref-videos&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0114 Things: processing your inbox - part 1 🎬</title><link>https://johnnydecimal.com/22.00.0114/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0114/</guid><description>A video follow-up to post &apos;22.00.0110 Things: why and how I use it.&apos;</description><pubDate>Wed, 30 Apr 2025 02:15:55 GMT</pubDate><content:encoded>&lt;h1 id=&quot;things-processing-your-inbox---part-1&quot;&gt;Things: processing your inbox - part 1 🎬&lt;/h1&gt;
&lt;p&gt;A video follow-up to &lt;a href=&quot;https://johnnydecimal.com/22.00.0110/&quot;&gt;22.00.0110 Things: why and how I use it&lt;/a&gt;.&lt;/p&gt;
  
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0110/&quot;&gt;Things: why and how I use it&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Things: processing your inbox&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0117/&quot;&gt;Things: principles and priorities&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0121/&quot;&gt;Things: processing your categories&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0113 Managing customer data (especially exceptions)</title><link>https://johnnydecimal.com/22.00.0113/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0113/</guid><description>I handle exceptions to my customer data by starting every piece of work in my JDex, not in my online customer portal.</description><pubDate>Tue, 29 Apr 2025 23:25:42 GMT</pubDate><content:encoded>&lt;h1 id=&quot;managing-customer-data-especially-exceptions&quot;&gt;Managing customer data (especially exceptions)&lt;/h1&gt;
&lt;p&gt;Friend of the system Alex emailed asking if I could delete their customer data from Shopify.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-alex&quot; id=&quot;user-content-fnref-alex&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; They&amp;#39;re privacy-conscious and, now that the transaction is done, they&amp;#39;d rather not have their details be stored there.&lt;/p&gt;
&lt;p&gt;A totally cool request that I relate to. And credit to Shopify, there&amp;#39;s a prominent &lt;code&gt;Delete customer data&lt;/code&gt; button that does exactly that, with no fuss. So, easy. Right?&lt;/p&gt;
&lt;h2 id=&quot;but-now-how-do-i-remember&quot;&gt;But now how do I remember?&lt;/h2&gt;
&lt;p&gt;The interesting challenge now is, how do I remember to let Alex know that there are future product updates? They bought the &lt;a href=&quot;https://jdcm.al/14.11/&quot;&gt;Life Admin System&lt;/a&gt; and we plan on migrating it to the same platform that I use for the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;. How do I tell them when we&amp;#39;ve done that?&lt;/p&gt;
&lt;p&gt;My current workflow &lt;em&gt;starts&lt;/em&gt; in Shopify. That&amp;#39;s where the majority of my (recent) customers are. So if there was an update to something, my natural instinct would be to jump in to Shopify, do some sort of filter and export, and send out a comms.&lt;/p&gt;
&lt;p&gt;So now that&amp;#39;s &amp;#39;broken&amp;#39; because I deleted Alex? Not really, because &lt;strong&gt;that should never have been my workflow in the first place&lt;/strong&gt;. For the first year or so we sold the Workbook via &lt;a href=&quot;https://gumroad.com&quot;&gt;Gumroad&lt;/a&gt;. It&amp;#39;s amazing that these tools exist, but as a small business owner you end up with fragmented customer data across multiple platforms. It&amp;#39;s really difficult to deal with: I hope you&amp;#39;re &lt;a href=&quot;https://johnnydecimal.com/32.02/&quot;&gt;good at Excel&lt;/a&gt;. ;-)&lt;/p&gt;
&lt;h3 id=&quot;jdex-to-the-rescue&quot;&gt;JDex to the rescue&lt;/h3&gt;
&lt;p&gt;The answer, of course, is my &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;All work should start in your JDex&lt;/strong&gt;. All of it, always. We spoke about this &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0112-prm-vs-pkm/#records-keeping&quot;&gt;last time&lt;/a&gt; in the context of having notes and files. You might have notes and emails, or data in a web app, or &lt;em&gt;anywhere else&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;There are so many places that a thing can be. Your JDex is your sanity. It&amp;#39;s the one thing that you have total control over. Use it to point yourself to the other places; to remind yourself that there is other data &lt;em&gt;over there&lt;/em&gt; that you&amp;#39;ve probably forgotten about.&lt;/p&gt;
&lt;h3 id=&quot;rushing-it-&quot;&gt;Rushing it = 🤦&lt;/h3&gt;
&lt;p&gt;This is especially important when you&amp;#39;re busy. I&amp;#39;ve done it myself: I export from multiple platforms, do the data munging in Excel, thousands of rows, filters and sheets and sorts all over the shop, it&amp;#39;s stressful, I hate sending thousands of emails, the pressure, cross-check Shopify against Gumroad against Thinkific to de-duplicate, test the email, correct the egregious spolling mistake, it&amp;#39;s getting late, I’m s̶t҉r̶essеd, my ℝSI іs pl̵aying u̴p, I ju͢st want to g͏o for a w̷aⅼk&lt;em&gt;w̷aⅼkw̷aⅼk&lt;/em&gt; with L͞ucy, &lt;strong&gt;&lt;em&gt;I pr͞ess__sеnd.∴..░..∵&lt;/em&gt;…&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;   …&lt;/p&gt;
&lt;p&gt;      …&lt;/p&gt;
&lt;p&gt;         …&lt;/p&gt;
&lt;p&gt;           &lt;em&gt;…then&lt;/em&gt; I remember that I had that other list of &lt;code&gt;people who really really didn&amp;#39;t want to ever get an email from you ever again.xlsx&lt;/code&gt; and I never even opened it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-dark-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0113A-Picard_facepalm--0-dark-cx-1200x900.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Picard facepalm meme.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0113A-Picard_facepalm--0-light-cx-1200x900.png&quot; width=&quot;1200&quot; height=&quot;900&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;jdex-first&quot;&gt;JDex-first&lt;/h2&gt;
&lt;p&gt;So here&amp;#39;s what I just did. Start from the top. SBS has category &lt;code&gt;33 Customers &amp;amp; clients 💎&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;It comes with an index-like note at &lt;code&gt;33.00 List of all customers &amp;amp; clients&lt;/code&gt;. I&amp;#39;ve left myself a note there:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The jumping-off point for customers is &lt;code&gt;[[33.10 ■ Customers]]&lt;/code&gt;. It contains any meta-notes that you need to be aware of before consulting any of the more specific entries.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;ve created a header &lt;code&gt;33.10 ■ Customers&lt;/code&gt; and left myself a note there:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Manual updates&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The following entries contain manual updates to customer information.&lt;br&gt;
&lt;code&gt;[[33.11 Shopify customers]]&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And finally at &lt;code&gt;33.11 Shopify customers&lt;/code&gt;, I&amp;#39;ve told myself all about Alex. Over time this might become neater -- a table, maybe -- but for now it&amp;#39;s just some bullet points.&lt;/p&gt;
&lt;h3 id=&quot;link-relevant-notes&quot;&gt;Link relevant notes&lt;/h3&gt;
&lt;p&gt;In the future I&amp;#39;m likely to be doing work elsewhere in my system but want to consider this data about customers.&lt;/p&gt;
&lt;p&gt;The most obvious place is in my &lt;code&gt;21 Products &amp;amp; services&lt;/code&gt;. When I update the Life Admin System, that&amp;#39;s the time to be reminded that I have this customer data to consider. For now, I&amp;#39;ve left myself a note at &lt;code&gt;21.01 Products &amp;amp; services inbox&lt;/code&gt;. (I&amp;#39;m not ready to give it my full attention.)&lt;/p&gt;
&lt;p&gt;And so that I don&amp;#39;t forget about this text in an &amp;#39;inbox&amp;#39;, I&amp;#39;ve also tweaked my category review task in Things to read &lt;strong&gt;Review this category in Things and Obsidian&lt;/strong&gt;. (See next blog post which is a YouTube that Lucy is just uploading.)&lt;/p&gt;
&lt;h3 id=&quot;good-enough&quot;&gt;Good enough&lt;/h3&gt;
&lt;p&gt;This isn&amp;#39;t a spectacular solution but it&amp;#39;s good enough. The trick is getting in the habit of starting with your JDex. As long as you do that, and actually read your own notes, you shouldn&amp;#39;t go far wrong.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-alex&quot;&gt;
&lt;p&gt;Not their real identity. &lt;a href=&quot;#user-content-fnref-alex&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0112 PRM vs. PKM; getting a new driver licence</title><link>https://johnnydecimal.com/22.00.0112/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0112/</guid><description>I see Johnny.Decimal&apos;s strength as Personal Records Management, more so than Personal Knowledge Management. A nice example is applying for a new driver licence.</description><pubDate>Mon, 28 Apr 2025 05:40:40 GMT</pubDate><content:encoded>&lt;h1 id=&quot;prm-vs-pkm-getting-a-new-driver-licence&quot;&gt;PRM vs. PKM; getting a new driver licence&lt;/h1&gt;
&lt;p&gt;Johnny.Decimal is part of the global &amp;#39;&lt;a href=&quot;https://kagi.com/search?q=personal+knowledge+management&amp;r=au&amp;sh=fWUE_8xLpqtepjbbg4gRCQ&quot;&gt;Personal Knowledge Management&lt;/a&gt;&amp;#39; (PKM) movement. But that&amp;#39;s not a term I&amp;#39;ve ever used to describe my system. I think that &amp;#39;Personal &lt;em&gt;Records&lt;/em&gt; Management&amp;#39; is more accurate. Here&amp;#39;s why.&lt;/p&gt;
&lt;h2 id=&quot;getting-a-new-driver-licence&quot;&gt;Getting a new driver licence&lt;/h2&gt;
&lt;p&gt;We just officially moved from the Australian Capital Territory (ACT) to New South Wales (NSW). Since Australia is a federation, each state and territory issues its own licences. So we need to get a new one in NSW.&lt;/p&gt;
&lt;h3 id=&quot;previous-licences&quot;&gt;Previous licences?&lt;/h3&gt;
&lt;p&gt;NSW wants to know. Question 9:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Do you hold, or have you ever held, a licence issued by another State, Territory or Country?&lt;/p&gt;
&lt;p&gt;Provide details of any other licences you have held from another State, Territory or Country.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Licence&lt;em&gt;s&lt;/em&gt;, plural. I got my UK licence in 1994, transferred it to the state of Victoria in 2004, and to the ACT in 2020. Spoiler: I do &lt;em&gt;not&lt;/em&gt; have those details.&lt;/p&gt;
&lt;h3 id=&quot;minimalism--records-keeping&quot;&gt;Minimalism × records-keeping&lt;/h3&gt;
&lt;p&gt;Being who I am, you might think that I keep everything. But actually I&amp;#39;ve never been that sort of person, I think as a result of my natural unsentimentality. I don&amp;#39;t find historical artefacts particularly interesting, so why bother keeping them? We just sold 90% of our stuff.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-tiny&quot; id=&quot;user-content-fnref-tiny&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;But it turns out that some stuff is really useful. What sort of stuff? &lt;strong&gt;Records&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;uk-licence&quot;&gt;UK licence&lt;/h3&gt;
&lt;p&gt;In packing to leave Canberra, I threw away an old copy of my UK licence. Credit card sized, so you might think, &lt;em&gt;ah, I&amp;#39;ll keep that&lt;/em&gt;. But no! Multiply that by 1,000 and now you&amp;#39;re carrying around a bunch of junk.&lt;/p&gt;
&lt;p&gt;You know what I should have done before I chucked it in the bin? I should have scanned it, and recorded its details. Because while they&amp;#39;re not the whole picture back to 1994, they&amp;#39;d be more than I have now.&lt;/p&gt;
&lt;h2 id=&quot;implementation-details&quot;&gt;Implementation details&lt;/h2&gt;
&lt;p&gt;So what does this look like? Bullet points, mostly. If you analysed my various JDexes over the years, I think you&amp;#39;d find 80% of the content to be bullet points.&lt;/p&gt;
&lt;h3 id=&quot;1114-driver-licence&quot;&gt;&lt;code&gt;11.14+ Driver licence&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;As I noted &lt;a href=&quot;http://johnnydecimal.com/20-29-communication/22-blog/22.00.0105-besties-data/#extend-the-end&quot;&gt;the other day&lt;/a&gt;, I like the idea of reserving all &amp;#39;parent&amp;#39; JDex entries for metadata only, and creating a sub-note by &lt;a href=&quot;https://jdcm.al/13.31/&quot;&gt;extending the end&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This gives us a new JDex entry &lt;code&gt;11.14+ Driver licence&lt;/code&gt;. Let&amp;#39;s create that, and get cute with a link back &amp;#39;up&amp;#39; to the parent entry.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-parent&quot; id=&quot;user-content-fnref-parent&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; While I&amp;#39;m here I&amp;#39;ll fill it out with some headers.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112A-Bear-1114--0-light-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112A-Bear-1114--0-dark-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112A-Bear-1114--0-light-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112A-Bear-1114--0-dark-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of my Bear note showing the headers as described.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0112A-Bear-1114--0-light-cx-1508x1260.png&quot; width=&quot;754&quot; height=&quot;630&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;dates-as-headers&quot;&gt;Dates as headers&lt;/h2&gt;
&lt;p&gt;There are a few patterns that you could use here, but hopefully you&amp;#39;re at home shouting &lt;em&gt;use the date&lt;/em&gt;! Because of course you should use the date.&lt;/p&gt;
&lt;p&gt;You might think the location is more obvious. It&amp;#39;s a &lt;code&gt;UK&lt;/code&gt; licence then a &lt;code&gt;Victoria&lt;/code&gt; licence and so on. And with so few entries, that&amp;#39;d work. But with more entries, future-me is going to forget: did I call it &lt;code&gt;Melbourne&lt;/code&gt;? Or &lt;code&gt;Victoria&lt;/code&gt;? Or &lt;code&gt;Elwood&lt;/code&gt;, the name of the first suburb I lived in? Or just &lt;code&gt;Australia&lt;/code&gt;, because when I first moved here I didn&amp;#39;t understand that I&amp;#39;d need a new licence per-state, and thought I&amp;#39;d never move anyway.&lt;/p&gt;
&lt;h3 id=&quot;not-just-a-header&quot;&gt;Not just a header&lt;/h3&gt;
&lt;p&gt;You should be thinking of this header as a reference that you might use elsewhere. So the headers should match the names of any folders you create, or the names of the files. See figure 22.00.00112C.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve only used the year for historical entries because it&amp;#39;s all I know, and it&amp;#39;s enough. For future entries &lt;code&gt;yyyy-mm&lt;/code&gt; is sufficient. The bullet points within the header will have the full detail.&lt;/p&gt;
&lt;h3 id=&quot;records-keeping&quot;&gt;Records-keeping&lt;/h3&gt;
&lt;p&gt;So now to fill this out with my current licence details, before I replace it and throw it away.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112B-Bear_details-1114--0-light-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112B-Bear_details-1114--0-dark-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112B-Bear_details-1114--0-light-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112B-Bear_details-1114--0-dark-cx-1508x1260.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of the note, showing bullet points with each of my licence&apos;s values (mostly blurred out).&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0112B-Bear_details-1114--0-light-cx-1508x1260.png&quot; width=&quot;754&quot; height=&quot;630&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0112B. Licence labels and values recorded verbatim.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;As well as recording the details exactly as written on the licence, I&amp;#39;ve noted at the top that there&amp;#39;s also a scan in my file system. Always, always help your future self like this. You think it&amp;#39;s so obvious: you assume you&amp;#39;ll also check your file system. The reality is that future-us locks on to the first thing it finds and doesn&amp;#39;t think to keep looking.&lt;/p&gt;
&lt;h2 id=&quot;saving-the-scan&quot;&gt;Saving the scan&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s create some folders in our file system. I&amp;#39;m still experimenting here, but I think it makes sense to &lt;em&gt;exactly&lt;/em&gt; copy, down to the &lt;code&gt;+&lt;/code&gt; followed by a space, the name of the folder from your JDex title.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112C-Bear_Finder--0-light-cx-1088x1139.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0112C-Bear_Finder--0-dark-cx-1088x1139.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112C-Bear_Finder--0-light-cx-1088x1139.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0112C-Bear_Finder--0-dark-cx-1088x1139.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing my file system folders. Parent folder is &apos;11.14 Licences&apos;, then children are &apos;+ Driver licence&apos;, &apos;2020 ACT, Australia&apos;, and then a file named &apos;2025-05-01 ACT driver licence.pdf&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0112C-Bear_Finder--0-light-cx-1088x1139.png&quot; width=&quot;544&quot; height=&quot;570&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0112C. A always. B be. C consistent.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;A folder whose name starts with a &lt;code&gt;+&lt;/code&gt; … odd? Maybe. But who cares? We keep coming back to this concept: &lt;strong&gt;leave yourself hints&lt;/strong&gt;. Future-you is going to see this and immediately understand what it represents.&lt;/p&gt;
&lt;p&gt;The dated subfolder within should be obvious. And the scan of my licence is named with &lt;a href=&quot;http://johnnydecimal.com/20-29-communication/22-blog/22.00.0094-dont-type-the-date-by-hand/&quot;&gt;today&amp;#39;s date&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;securityprivacy&quot;&gt;Security/privacy&lt;/h3&gt;
&lt;p&gt;You might wonder if I&amp;#39;m locking this note. While Bear &lt;a href=&quot;https://bear.app/faq/how-to-encrypt-lock-notes-with-bear/&quot;&gt;can do that&lt;/a&gt;: no, I&amp;#39;m not. You&amp;#39;d have to have one of my devices, unlocked, or have access to my iCloud account, to read that note. In which case you knowing when my licence expires is the least of my worries.&lt;/p&gt;
&lt;h3 id=&quot;thats-enough&quot;&gt;That&amp;#39;s enough&lt;/h3&gt;
&lt;p&gt;And that&amp;#39;s it. A simple records-keeping exercise. There&amp;#39;s no prose here. Nothing to really &lt;em&gt;think&lt;/em&gt; about. This shouldn&amp;#39;t take more than a couple of minutes.&lt;/p&gt;
&lt;h3 id=&quot;follow-up-post&quot;&gt;Follow-up post&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0137/&quot;&gt;22.00.0137 Your JDex is your PKM&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-tiny&quot;&gt;
&lt;p&gt;I plan on travelling the world with a &lt;a href=&quot;https://www.crumpler.com/products/entity?variant=42216042725455&quot;&gt;very small backpack&lt;/a&gt; (that I&amp;#39;ve owned for 15 years). When we return, our dream is to build &lt;a href=&quot;https://kagi.com/search?q=tiny+house+shipping+container&amp;r=au&amp;sh=YPyY3aYv5HdrwsV89KucHg&quot;&gt;some sort of tiny house&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As far as digital minimalism, in preparation for this trip I just deleted&lt;sup&gt;&lt;a href=&quot;#user-content-fn-archived&quot; id=&quot;user-content-fnref-archived&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; my entire photo library. I never looked at those photos, so why have them cluttering my phone? &lt;a href=&quot;#user-content-fnref-tiny&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-parent&quot;&gt;
&lt;p&gt;Which I&amp;#39;ve renamed to include an &lt;code&gt;…&lt;/code&gt; ellipsis after the number. This tells me that there&amp;#39;s &lt;em&gt;more…&lt;/em&gt; I&amp;#39;ve also included a ⬇️ link to the child note, though I don&amp;#39;t know if that&amp;#39;s overkill. &lt;a href=&quot;#user-content-fnref-parent&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-archived&quot;&gt;
&lt;p&gt;Actually I archived them to our server. Because there are chicken photos there that I don&amp;#39;t want to lose. But you get the idea. &lt;a href=&quot;#user-content-fnref-archived&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0111 Things: cross-link to Obsidian and back</title><link>https://johnnydecimal.com/22.00.0111/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0111/</guid><description>Before we tackle my Things inbox, let&apos;s review what it is, and why and how I use it.</description><pubDate>Mon, 28 Apr 2025 01:22:21 GMT</pubDate><content:encoded>&lt;h1 id=&quot;things-cross-link-to-obsidian-and-back&quot;&gt;Things: cross-link to Obsidian and back&lt;/h1&gt;
&lt;p&gt;Wherever possible I like to link apps to each other. My to-dos for my personal and work life are in Things. And my Small Business System JDex notes are in Obsidian. I help myself out by connecting the apps together.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ll just show you how to do this here, but both apps use what&amp;#39;s called a &lt;a href=&quot;https://kagi.com/search?q=what%27s+a+URI+scheme%3F&amp;r=au&amp;sh=WRbfZmjjXgzDsSknI2XTPg&quot;&gt;URI scheme&lt;/a&gt; if you want to explore the concepts further.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-uri&quot; id=&quot;user-content-fnref-uri&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;from-things-to-obsidian&quot;&gt;From Things to Obsidian&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Get the URL of the Obsidian note you want to link to by right-clicking it and selecting &lt;strong&gt;Copy Obsidian URL&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re linking from a category-level project, link to the &lt;code&gt;AC.00&lt;/code&gt; note. In this case I&amp;#39;m linking from &lt;code&gt;SBS.31&lt;/code&gt; so I&amp;#39;ll get the link to note &lt;code&gt;31.00 List of all marketing, PR, &amp;amp; communications&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the notes of your Things project, add a Markdown link.&lt;/p&gt;
&lt;p&gt;Things &amp;#39;supports&amp;#39; Markdown here but doesn&amp;#39;t do much with it. You can just paste the link and it&amp;#39;ll be clickable. But I like to indicate to myself where I&amp;#39;m going to be taken, so I do the full Markdown syntax by adding &lt;code&gt;[JDex](link://)&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-markdown&quot; id=&quot;user-content-fnref-markdown&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0111A-Things--0-light-cx-1054x514.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0111A-Things--0-dark-cx-1054x514.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0111A-Things--0-light-cx-1054x514.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0111A-Things--0-dark-cx-1054x514.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of a Things project showing this Markdown link.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0111A-Things--0-light-cx-1054x514.png&quot; width=&quot;527&quot; height=&quot;257&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.111A. Things&amp;#39; Markdown links aren&amp;#39;t amazing.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;from-obsidian-to-things&quot;&gt;From Obsidian to Things&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Get the URI of the Things project you want to link to by right-clicking it, selecting &lt;strong&gt;Share…&lt;/strong&gt;, and clicking &lt;strong&gt;Copy Link&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In your Obsidian note, add a Markdown link &amp;#39;above the line&amp;#39;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll talk about this more in a dedicated post, but I prefer to keep metadata above a horizontal line, and then actual notes below the line. This link counts as metadata.&lt;/p&gt;
&lt;p&gt;As each of the JDex notes already contains a link to &amp;#39;Open in the Small Business System&amp;#39;, add your link to &amp;#39;Open in Things&amp;#39; directly below.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0111B-Obsidian--0-light-cx-988x467.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0111B-Obsidian--0-dark-cx-988x467.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0111B-Obsidian--0-light-cx-988x467.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0111B-Obsidian--0-dark-cx-988x467.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of an Obsidian note showing this Markdown link.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0111B-Obsidian--0-light-cx-988x467.png&quot; width=&quot;494&quot; height=&quot;233&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0111B. Obsidian&amp;#39;s Markdown links look nicer.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-uri&quot;&gt;
&lt;p&gt;While technically different, most people use URI/URL interchangeably. &lt;a href=&quot;#user-content-fnref-uri&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-markdown&quot;&gt;
&lt;p&gt;Let me know if you need more on Markdown links. &lt;a href=&quot;#user-content-fnref-markdown&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0110 Things: why and how I use it</title><link>https://johnnydecimal.com/22.00.0110/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0110/</guid><description>Before we tackle my Things inbox, let&apos;s review what it is, and why and how I use it.</description><pubDate>Sun, 27 Apr 2025 01:22:34 GMT</pubDate><content:encoded>&lt;h1 id=&quot;things-why-and-how-i-use-it&quot;&gt;Things: why and how I use it&lt;/h1&gt;
&lt;p&gt;We&amp;#39;re going to tackle the 65 items in my Things inbox shortly, but before we do let&amp;#39;s set this up with an introduction to the app. Here&amp;#39;s why and how I use it.&lt;/p&gt;
&lt;h2 id=&quot;a-delightful-clean-task-manager&quot;&gt;A delightful, clean task manager&lt;/h2&gt;
&lt;p&gt;From &lt;a href=&quot;https://theomnishow.omnigroup.com/episode/how-johnny-decimal-noble-uses-omni-software&quot;&gt;OmniFocus&lt;/a&gt; to Apple&amp;#39;s Reminders to … well, if you&amp;#39;ve heard of it, I&amp;#39;ve probably given it a go.&lt;/p&gt;
&lt;p&gt;I always come back to &lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things&lt;/a&gt; because it hits the sweet-spot of features, appearance, and usability. Some (OmniFocus) are notably more powerful, but therefore harder to use and, frankly, uglier. Some (Reminders) are less powerful but integrate better with the devices I use. Being able to shout &lt;em&gt;hey Siri, remind me to make soup!&lt;/em&gt; in to the air is pretty magical.&lt;/p&gt;
&lt;h3 id=&quot;things-is-pretty&quot;&gt;Things is pretty&lt;/h3&gt;
&lt;p&gt;This matters to me. And a pretty interface speaks to the care and attention given to the rest of the app. It&amp;#39;s a useful heuristic: if you open an app and it&amp;#39;s ugly, what care do you think has been given to the rest of the code?&lt;/p&gt;
&lt;p&gt;This is something that I use all day. It needs to be pleasant to use. Things is the class-leader here.&lt;/p&gt;
&lt;h3 id=&quot;delightful-features&quot;&gt;Delightful features&lt;/h3&gt;
&lt;p&gt;This isn&amp;#39;t a review of Things -- there are &lt;a href=&quot;https://kagi.com/search?q=things+3+review&amp;r=au&amp;sh=XirS4Z6P4YmQ9yR3HeKxog&quot;&gt;enough of those&lt;/a&gt;. So here&amp;#39;s just one thing that I find delightful: anywhere in the app, you can just start typing and it&amp;#39;ll enter search mode.&lt;/p&gt;
&lt;p&gt;And search covers &lt;em&gt;everything&lt;/em&gt;: your to-dos, obviously, but also your projects and areas and tags, and even Things&amp;#39; views like &lt;strong&gt;Today&lt;/strong&gt;. So for someone who vastly prefers the keyboard over the mouse, this is a navigational win.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110A-Things_search--0-light-cx-674x1220.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110A-Things_search--0-dark-cx-674x1220.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110A-Things_search--0-light-cx-674x1220.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110A-Things_search--0-dark-cx-674x1220.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing Things&apos; search results for the query &apos;a&apos;. It returns groups of projects, a view of deadlines, the Today view, and any areas, projects, or tasks that contain the letter.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110A-Things_search--0-light-cx-674x1220.png&quot; width=&quot;337&quot; height=&quot;610&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110A. Things&amp;#39; search reveals features such as the &amp;#39;deadlines&amp;#39; view that I didn&amp;#39;t even know existed.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;apple-integration&quot;&gt;Apple integration&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s available on all my devices, and it can reach in to Reminders and import items.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-things&quot; id=&quot;user-content-fnref-things&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; So I can still ask Siri to &lt;em&gt;remind me to make soup!&lt;/em&gt; and next time I open Things it&amp;#39;ll bring it in.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-siri&quot; id=&quot;user-content-fnref-siri&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Things is on my iPhone dock along with Messages and Bear.&lt;/p&gt;
&lt;h1 id=&quot;my-things-setup&quot;&gt;My Things setup&lt;/h1&gt;
&lt;p&gt;Fairly briefly, as we&amp;#39;ll be going over this in a lot more detail as we process my inbox.&lt;/p&gt;
&lt;h3 id=&quot;areas--jd-systems&quot;&gt;Areas = JD systems&lt;/h3&gt;
&lt;p&gt;I represent each of my &lt;a href=&quot;https://jdcm.al/13.11/&quot;&gt;JD systems&lt;/a&gt; with a Things &lt;a href=&quot;https://culturedcode.com/things/support/articles/6378414/#areas&quot;&gt;area&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;When this consolidation activity is done, I&amp;#39;ll have two JD systems:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;P76 Personal&lt;/code&gt; for my personal life.
&lt;ul&gt;
&lt;li&gt;This is the &lt;a href=&quot;https://jdcm.al/14.11/&quot;&gt;Life Admin System&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;D25 Johnny.Decimal&lt;/code&gt; for the business.
&lt;ul&gt;
&lt;li&gt;This is the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;projects--jd-categories&quot;&gt;Projects = JD categories&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;P76&lt;/code&gt; has been like this since I implemented LAS last year and it&amp;#39;s working &lt;em&gt;really&lt;/em&gt; well. Each of my JD categories is a Things &lt;a href=&quot;https://culturedcode.com/things/support/articles/6378414/#projects&quot;&gt;project&lt;/a&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110B-Things_P76_projects--0-light-cx-634x428.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110B-Things_P76_projects--0-dark-cx-634x428.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110B-Things_P76_projects--0-light-cx-634x428.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110B-Things_P76_projects--0-dark-cx-634x428.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Things area &apos;P76 Personal&apos; containing a project each for the 5 LAS categories. Plus an additional project which we&apos;ll get to below.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110B-Things_P76_projects--0-light-cx-634x428.png&quot; width=&quot;317&quot; height=&quot;214&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110B. Areas &amp;amp; projects → areas &amp;amp; categories&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Where a specific ID needs its own project, create one. In JD-world this can represent one of life&amp;#39;s &amp;#39;projects&amp;#39; as we tend to think of them: in this case the fact that we&amp;#39;re &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0098-jdhq-is-on-the-move/&quot;&gt;taking our lives on the road&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Again, more detail later.&lt;/p&gt;
&lt;h3 id=&quot;headings--headers-&quot;&gt;Headings = headers :-)&lt;/h3&gt;
&lt;p&gt;We introduced the concept of &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0080-headers/&quot;&gt;headers&lt;/a&gt; with the Life Admin System. Things has the &lt;a href=&quot;https://culturedcode.com/things/support/articles/2803577/&quot;&gt;same concept&lt;/a&gt;. Which is nice.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110C-Things_headers--0-light-cx-1024x886.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110C-Things_headers--0-dark-cx-1024x886.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110C-Things_headers--0-light-cx-1024x886.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110C-Things_headers--0-dark-cx-1024x886.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of my Things category 13 Money. Headers represent the Life Admin headers of 13.10 Earned, 13.20 Saved, 13.30 Owed, and 13.40 Spent &amp;#38; sent.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110C-Things_headers--0-light-cx-1024x886.png&quot; width=&quot;512&quot; height=&quot;443&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110C. Headers → headers :-)&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;tags--loosely-used-tbc&quot;&gt;Tags = loosely used, TBC&lt;/h3&gt;
&lt;p&gt;There&amp;#39;s a place for tags, but I&amp;#39;m not sure what it is yet. Probably to assign priority. Work-in-progress.&lt;/p&gt;
&lt;h2 id=&quot;everything-should-be-in-a-project&quot;&gt;Everything should be in a project&lt;/h2&gt;
&lt;p&gt;Things will let you put things in its &lt;strong&gt;Upcoming&lt;/strong&gt; and &lt;strong&gt;Anytime&lt;/strong&gt; lists without those items belonging to a project. I don&amp;#39;t like this -- it feels like an opportunity for something to get lost.&lt;/p&gt;
&lt;p&gt;Every item must belong to a project.&lt;/p&gt;
&lt;h1 id=&quot;inbox-clearing-workflow&quot;&gt;Inbox-clearing workflow&lt;/h1&gt;
&lt;p&gt;The gold standard for task workflow -- that is, how a task gets in to your system and then what happens to it once it&amp;#39;s there -- is &lt;a href=&quot;https://gettingthingsdone.com&quot;&gt;GTD&lt;/a&gt;®. Worth a proper read if you&amp;#39;re unfamiliar (where have you &lt;em&gt;been&lt;/em&gt;?); here&amp;#39;s a brief recap, noting my specific implementation details.&lt;/p&gt;
&lt;h3 id=&quot;inbox&quot;&gt;Inbox&lt;/h3&gt;
&lt;p&gt;Most things start in the &lt;strong&gt;Inbox&lt;/strong&gt;. This is a special Things place for items that are new and unprocessed. If you configure &lt;a href=&quot;https://culturedcode.com/things/support/articles/2803561/&quot;&gt;Things&amp;#39; import from Reminders&lt;/a&gt;, this is where those items end up.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110D-Things_places--0-light-cx-617x446.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110D-Things_places--0-dark-cx-617x446.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110D-Things_places--0-light-cx-617x446.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110D-Things_places--0-dark-cx-617x446.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Things&apos; special buckets: Inbox, Today, Upcoming, Anytime, Someday, Logbook, Trash. I have 67 items in my inbox.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110D-Things_places--0-light-cx-617x446.png&quot; width=&quot;308&quot; height=&quot;223&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110D. 67 in my inbox! Shame on me. (Yes, I&amp;#39;ve added 2 since starting this article.)&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;In normal circumstances, I process my inbox daily. At a minimum, a few times a week. It&amp;#39;s &lt;strong&gt;vital&lt;/strong&gt; that you&amp;#39;re never worried that there might be important stuff in there. Like if you remind yourself to &lt;em&gt;feed next door&amp;#39;s bird&lt;/em&gt; and leave it in the inbox the whole time they&amp;#39;re on holiday, that&amp;#39;s not going to work out.&lt;/p&gt;
&lt;p&gt;Processing my inbox is so important, I have a recurring task to remind me to do it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110E-Things_00SysMgmt--0-light-cx-1022x566.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110E-Things_00SysMgmt--0-dark-cx-1022x566.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110E-Things_00SysMgmt--0-light-cx-1022x566.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110E-Things_00SysMgmt--0-dark-cx-1022x566.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing my &apos;00 System management&apos; project. Header &apos;03 To-do &amp;#38; checklists&apos; contains 2 recurring items: &apos;process the inbox&apos;, and &apos;check tomorrow&apos;s calendar&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110E-Things_00SysMgmt--0-light-cx-1022x566.png&quot; width=&quot;511&quot; height=&quot;283&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110E. Processing the inbox is a chore, so I remind myself of the benefits.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;If I add a time-critical item to Things, &lt;strong&gt;I don&amp;#39;t add it to the inbox&lt;/strong&gt;. It goes straight to where it needs to be, with its relevant dates already assigned (see below). This is why I&amp;#39;m not worried about those 67 items: I know none of them means a dead bird.&lt;/p&gt;
&lt;h2 id=&quot;process-to-a-categoryproject&quot;&gt;Process to a category/project&lt;/h2&gt;
&lt;p&gt;GTD says that when you process your inbox, if there&amp;#39;s anything that you can just &lt;em&gt;do&lt;/em&gt; that will take less than a couple of minutes, you should do that.&lt;/p&gt;
&lt;p&gt;Otherwise, the task needs to be moved to one of your categories. Here, we need a little JD theory.&lt;/p&gt;
&lt;h3 id=&quot;everything-you-need-to-do-should-fit-in-a-jd-category&quot;&gt;Everything you need &amp;#39;to-do&amp;#39; should fit in a JD category&lt;/h3&gt;
&lt;p&gt;Because everything you do is part of your life or job. And if you can&amp;#39;t define what it &lt;em&gt;is&lt;/em&gt; -- and therefore which of your categories it should be assigned to -- then what even is it? And why are you doing it?&lt;/p&gt;
&lt;p&gt;This requires mental energy. Of course it does: being organised isn&amp;#39;t free. Otherwise everybody would be. But I find this to be a useful checkpoint; an indication that my system is working well.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If I can&amp;#39;t find a category for a to-do, my system needs to be reconfigured to create one&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;each-category-has-an-inbox-kinda&quot;&gt;Each category has an &amp;#39;inbox&amp;#39; (kinda)&lt;/h3&gt;
&lt;p&gt;A happy accident of design is that, by using headers to group our fully-organised tasks, we end up with a pseudo-inbox in each category by default. So sorting tasks is a two-step process, and I think that makes it easier.&lt;/p&gt;
&lt;p&gt;Because &lt;em&gt;now&lt;/em&gt; there&amp;#39;s a high-level decision, which is easy:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Which category does this belong to?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And &lt;em&gt;later&lt;/em&gt;, there&amp;#39;s a lower-level decision that might need a bit more thought:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Which header does this belong to?&lt;/li&gt;
&lt;li&gt;Does it need to be renamed for clarity?&lt;/li&gt;
&lt;li&gt;Do I need to add any notes?&lt;/li&gt;
&lt;li&gt;What other properties (due dates, tags…) do I need?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This pseudo-inbox is just the piece of real estate above your headers. It&amp;#39;s where a task ends up if you drag it from the inbox directly on to the list of projects in the sidebar, or if you use Things&amp;#39; &lt;strong&gt;Move…&lt;/strong&gt; shortcut by right-clicking the task or hitting &lt;strong&gt;Cmd+Shift+M&lt;/strong&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110F-Things_pseudo_inbox--0-light-cx-1004x852.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110F-Things_pseudo_inbox--0-dark-cx-1004x852.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110F-Things_pseudo_inbox--0-light-cx-1004x852.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110F-Things_pseudo_inbox--0-dark-cx-1004x852.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Things. The area above any of the headers you&apos;ve defined is highlighted as the &apos;pseudo-inbox&apos; for the category&apos;&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110F-Things_pseudo_inbox--0-light-cx-1004x852.png&quot; width=&quot;502&quot; height=&quot;426&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110F. A category-level pseudo-inbox.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;So, the first step is to &lt;strong&gt;completely clear your inbox&lt;/strong&gt; and have every task in its own category/project. It should be obvious that if you spot anything that feels urgent while you&amp;#39;re doing this, you shouldn&amp;#39;t ignore it. Never, ever pass over a time-sensitive task. 🦜&lt;/p&gt;
&lt;p&gt;If that took a while, you can take a break. Because you&amp;#39;ll touch each of your categories in due course, where you&amp;#39;ll complete the second step.&lt;/p&gt;
&lt;h1 id=&quot;category-organising-workflow&quot;&gt;Category-organising workflow&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s the epiphany. Credit for this idea goes to my mate Alex. I&amp;#39;m not sure if he came up with it, &lt;del&gt;but he&amp;#39;s the one who told me so that&amp;#39;ll do&lt;/del&gt; he tells me that he did.&lt;/p&gt;
&lt;p&gt;You&amp;#39;re going to divide up your categories, and review each of them on a specific day of the week.&lt;/p&gt;
&lt;p&gt;Life Admin provides a really nice example, as there are 5 categories. So we review &lt;code&gt;11 Me…&lt;/code&gt; on Monday, &lt;code&gt;12 Where I live…&lt;/code&gt; on Tuesday, and so on.&lt;/p&gt;
&lt;p&gt;If your system has more than 5 categories, you might choose to do them less frequently, or to do more than one a day. I&amp;#39;d suggest keeping a weekly schedule to start, and spreading out later if it feels okay. I know after having done it for 6+ months that my LAS categories don&amp;#39;t need to be reviewed weekly: very often there&amp;#39;s nothing for me to do.&lt;/p&gt;
&lt;h3 id=&quot;a-more-rigorous-processing&quot;&gt;A more rigorous processing&lt;/h3&gt;
&lt;p&gt;At this stage, you want to make sure that every task is tip-top. Does it have a good title that makes sense? If it needs a date or a deadline does it have one? Is it a &lt;strong&gt;Someday&lt;/strong&gt; task that should be hidden until later?&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll leave the detail for a future post.&lt;/p&gt;
&lt;h3 id=&quot;leave-nothing-to-chance&quot;&gt;Leave nothing to chance&lt;/h3&gt;
&lt;p&gt;Don&amp;#39;t just think you&amp;#39;ll remember to do this review. We&amp;#39;re in a to-do system: create a to-do!&lt;/p&gt;
&lt;p&gt;This is what the zero-level header &lt;code&gt;category management&lt;/code&gt; is for. Create a to-do that &lt;a href=&quot;https://culturedcode.com/things/support/articles/2803564/&quot;&gt;repeats&lt;/a&gt; on the relevant day of the week.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-later&quot; id=&quot;user-content-fnref-later&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110G-Things_14--0-light-cx-702x170.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110G-Things_14--0-dark-cx-702x170.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110G-Things_14--0-light-cx-702x170.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110G-Things_14--0-dark-cx-702x170.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Things&apos; repeating task &apos;P76.14: review this category&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110G-Things_14--0-light-cx-702x170.png&quot; width=&quot;351&quot; height=&quot;85&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110G. A repeating review task.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;flexibility-built-in&quot;&gt;Flexibility built-in&lt;/h3&gt;
&lt;p&gt;This system allows you a little wiggle-room. Because let&amp;#39;s say last week I didn&amp;#39;t review each category on the assigned day. Which in fact I didn&amp;#39;t, because I was moving house and driving a van up a highway.&lt;/p&gt;
&lt;p&gt;Well, no problem. Here&amp;#39;s a section of my &lt;strong&gt;Today&lt;/strong&gt; view.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110H-Things_reviews--0-light-cx-1160x556.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110H-Things_reviews--0-dark-cx-1160x556.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110H-Things_reviews--0-light-cx-1160x556.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110H-Things_reviews--0-dark-cx-1160x556.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot showing 3 of these review tasks for categories 13, 14, and 15.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110H-Things_reviews--0-light-cx-1160x556.png&quot; width=&quot;580&quot; height=&quot;278&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0110H. Repeating tasks remain in Today until done.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;I have some catching up to do, but those reviews won&amp;#39;t just go un-done.&lt;/p&gt;
&lt;p&gt;And thanks to &lt;em&gt;another&lt;/em&gt; of Things&amp;#39; delightful features, I can click the name of the project to be taken directly to it. Click, review, complete review task, back to Today, click, review…&lt;/p&gt;
&lt;h3 id=&quot;so-ive-still-got-67-inbox-items&quot;&gt;So I&amp;#39;ve still got 67 inbox items…&lt;/h3&gt;
&lt;p&gt;I better get to doing the actual work! I&amp;#39;ll record myself doing that and put it in the weekly YouTube review video, so keep an eye on &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;the channel&lt;/a&gt;. (I&amp;#39;ll also post it here.)&lt;/p&gt;
&lt;h2 id=&quot;diagram&quot;&gt;Diagram&lt;/h2&gt;
&lt;p&gt;Lucy is our understanding-canary: if she gets what I&amp;#39;m trying to say, I&amp;#39;ve done alright. And from her new-found understanding, she&amp;#39;s going to sketch this out visually. So, diagram coming soon. Will update post.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110J-Lucy_diagram--1-light-cx-2000x2000.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0110J-Lucy_diagram--1-dark-cx-2000x2000.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110J-Lucy_diagram--1-light-cx-2000x2000.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0110J-Lucy_diagram--1-dark-cx-2000x2000.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Lucy&apos;s diagram summarising this post. A cartoon me has three ideas for things to-do. We see them go in to his disorganised inbox, then a &apos;daily&apos; arrow moving them to a more-organised category inbox, then a &apos;weekly&apos; arrow moving them to a very-organised place. And finally they get done! ✅&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0110J-Lucy_diagram--1-light-cx-2000x2000.png&quot; width=&quot;2000&quot; height=&quot;2000&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;Things: why and how I use it&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0114/&quot;&gt;Things: processing your inbox&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0117/&quot;&gt;Things: principles and priorities&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0121/&quot;&gt;Things: processing your categories&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-things&quot;&gt;
&lt;p&gt;To pre-empt any complaints about cost: yeah, you have to buy it for every device class. Yeah, it&amp;#39;s not cheap. But it&amp;#39;s a one-off cost, and if you don&amp;#39;t think that being organised is worth ~$100 every 5-odd years, you might be in the wrong place. &lt;a href=&quot;#user-content-fnref-things&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-siri&quot;&gt;
&lt;p&gt;I activate Siri by long-pressing the power button on my phone. It responds within half a second, and you can then just say &lt;em&gt;remind me to make soup&lt;/em&gt;. No need for the &amp;#39;hey Siri&amp;#39; invocation. I find this simple, reliable, and unobtrusive.&lt;/p&gt;
&lt;p&gt;You &lt;em&gt;can&lt;/em&gt; say something like &lt;em&gt;in Things, remind me to…&lt;/em&gt;, but I find this unreliable. It&amp;#39;s much simpler to just have your reminder go to Reminders, and have Things import it. &lt;a href=&quot;#user-content-fnref-siri&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-later&quot;&gt;
&lt;p&gt;This to-do didn&amp;#39;t appear in previous screenshots because I had instructed Things to &lt;strong&gt;Hide later items&lt;/strong&gt; from the view. Another delightful feature: why even see things that you know you won&amp;#39;t do until later? &lt;a href=&quot;#user-content-fnref-later&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0109 I&apos;m never distracted when I&apos;m cooking</title><link>https://johnnydecimal.com/22.00.0109/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0109/</guid><description>Through the day, I often forget what I was supposed to be doing. But put a sharp knife in my hand and turn on the gas and I become hyper-focused.</description><pubDate>Sun, 27 Apr 2025 00:44:34 GMT</pubDate><content:encoded>&lt;h1 id=&quot;im-never-distracted-when-im-cooking&quot;&gt;I&amp;#39;m never distracted when I&amp;#39;m cooking&lt;/h1&gt;
&lt;p&gt;Through the day, I often forget what I was supposed to be doing mid-way through doing it. But put a sharp knife in my hand, turn on the gas, and I become hyper-focused.&lt;/p&gt;
&lt;p&gt;And I can be focused, free of distractions, for an hour. An hour and a half. Full attention, no problem.&lt;/p&gt;
&lt;p&gt;I never want to pick up my phone. Never need to check my email. I think because there&amp;#39;s &lt;em&gt;so much else&lt;/em&gt; going on, and there are consequences to getting it wrong. Something burns, something goes cold, some ingredient is forgotten. The meal just isn&amp;#39;t &lt;em&gt;great&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;A great meal needs my full attention for an hour. And it gets it.&lt;/p&gt;
&lt;p&gt;How do I bring this same mindset to the rest of my life without having to walk around carrying a wok? It&amp;#39;s clearly possible. That&amp;#39;s my goal.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0108 When I migrate to SBS I&apos;ll copy, not move</title><link>https://johnnydecimal.com/22.00.0108/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0108/</guid><description>Old systems should be left as static archives.</description><pubDate>Sat, 26 Apr 2025 04:00:33 GMT</pubDate><content:encoded>&lt;h1 id=&quot;when-i-migrate-to-sbs-ill-copy-not-move&quot;&gt;When I migrate to SBS I&amp;#39;ll copy, not move&lt;/h1&gt;
&lt;p&gt;I&amp;#39;m just &lt;a href=&quot;https://jdcm.al/20-29-communication/22-blog/22.00.0106-creating-dark-mode-images/#i-guess-its-time-to-upgrade-myself-to-the-sbs&quot;&gt;in the process&lt;/a&gt; of implementing the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;SBS&lt;/a&gt; myself. Our current system has the &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.11-multiple-systems/&quot;&gt;identifier&lt;/a&gt; &lt;code&gt;D85&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The new system is going to be &lt;code&gt;D25&lt;/code&gt;: memorable to me as it&amp;#39;s the year we released the SBS. &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0107-daves-sticker/&quot;&gt;The previous post&lt;/a&gt; made me realise that when I migrate my data across, I should &lt;em&gt;copy&lt;/em&gt; it and not &lt;em&gt;move&lt;/em&gt; it.&lt;/p&gt;
&lt;p&gt;Because these old identifiers will always be useful. I can just leave that data sitting there forever. Maybe move it off to an archive drive so I don&amp;#39;t update it by accident. But old systems should never &lt;em&gt;disappear&lt;/em&gt;: they should just be left, frozen like Han Solo.&lt;/p&gt;
&lt;p&gt;Then an email with an old reference can come in years from now and I&amp;#39;ll always have the ability to find its related artefacts basically instantly.&lt;/p&gt;
&lt;p&gt;Nice.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0107 Dave&apos;s sticker: on the value of adding an ID to your email subject</title><link>https://johnnydecimal.com/22.00.0107/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0107/</guid><description>Adding a JD ID to your email subject gives you instant recall 2 months later.</description><pubDate>Sat, 26 Apr 2025 02:12:13 GMT</pubDate><content:encoded>&lt;h1 id=&quot;daves-sticker-on-the-value-of-adding-an-id-to-your-email-subject&quot;&gt;Dave&amp;#39;s sticker: on the value of adding an ID to your email subject&lt;/h1&gt;
&lt;p&gt;Dave just emailed from California. The Small Business sticker we mailed back in February hasn&amp;#39;t arrived. :-(&lt;/p&gt;
&lt;p&gt;(We sent them in standard envelopes with $4 worth of stamps. I wondered what percentage would actually arrive. A: not 100%.)&lt;/p&gt;
&lt;p&gt;He replied to an email that I&amp;#39;d sent on 1st February asking people to confirm their addresses. The subject line of that email was:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Decimal.Business sticker mailout - please confirm [D85.21.11]&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Well, how convenient. Guess how long it took me to find the original document with the labels we printed?&lt;/p&gt;
&lt;h2 id=&quot;ids-in-filenames&quot;&gt;IDs in filenames&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m sure I&amp;#39;ve written about this elsewhere but I can&amp;#39;t find it now: a few years ago, my mate and ex-boss Alex sent me an MS Project file that was 5 years old. &amp;#39;Do you know if this is the latest version?&amp;#39;, he asked.&lt;/p&gt;
&lt;p&gt;I&amp;#39;d named the file &lt;code&gt;32.18 Something something&lt;/code&gt;. So I logged in, found the old SharePoint Library, and navigated to that folder. I was there in less than a minute. (It was the latest version.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Having an ID &amp;#39;follow&amp;#39; a file or email around is invaluable and takes no extra time&lt;/strong&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0106 Creating &apos;dark mode&apos; images</title><link>https://johnnydecimal.com/22.00.0106/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0106/</guid><description>Creating a bash script to turn any &apos;light mode&apos; image in to a passable &apos;dark mode&apos; equivalent.</description><pubDate>Sat, 26 Apr 2025 00:47:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;creating-dark-mode-images&quot;&gt;Creating &amp;#39;dark mode&amp;#39; images&lt;/h1&gt;
&lt;p&gt;I just sat down to do this, and as I&amp;#39;m in &amp;#39;working out how I work&amp;#39; mode, I&amp;#39;m just going to type this out as I do it. Pretend you&amp;#39;re watching over my shoulder.&lt;/p&gt;
&lt;h2 id=&quot;objective&quot;&gt;Objective&lt;/h2&gt;
&lt;p&gt;When creating images for this site, I want each to have a &amp;#39;dark mode&amp;#39; equivalent. Personally I rarely use dark mode, but for those who do a mostly-white image in the middle of a dark page isn&amp;#39;t pleasant.&lt;/p&gt;
&lt;p&gt;But you know what else isn&amp;#39;t pleasant? Taking two screenshots of every damned thing! I enjoy writing but honestly I find images a chore. And some apps -- ref. my beloved &lt;a href=&quot;https://diagrams.app&quot;&gt;Diagrams&lt;/a&gt; from yesterday -- just don&amp;#39;t have a dark mode. So I need a better solution.&lt;/p&gt;
&lt;h2 id=&quot;the-johnnydecimal-angle&quot;&gt;The Johnny.Decimal angle&lt;/h2&gt;
&lt;p&gt;This will involve a bit of research, and I&amp;#39;ll learn some stuff. I&amp;#39;ll end up with some sort of &lt;a href=&quot;https://commandline.johnnydecimal.com&quot;&gt;bash script&lt;/a&gt; that creates the new image.&lt;/p&gt;
&lt;p&gt;It&amp;#39;d be nice to record this somewhere. But even more than the desire to record the &lt;em&gt;end result&lt;/em&gt; is my desire to record &lt;em&gt;the very activity itself&lt;/em&gt;.&lt;/p&gt;
&lt;h3 id=&quot;youre-always-doing-something&quot;&gt;You&amp;#39;re always doing something&lt;/h3&gt;
&lt;p&gt;I started exploring this in my stalled-by-production-of-SBS &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0074-focus-and-productivity/&quot;&gt;YouTube series&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;TL;DR: you&amp;#39;re always doing &lt;strong&gt;something&lt;/strong&gt;. Being aware of what that thing is should help you be more focused, less distracted, and ideally prevent you from context switching too often.&lt;/p&gt;
&lt;p&gt;I used the timers that I show in that video series for months. It was useful. An overhead, for sure, but everything&amp;#39;s a trade-off.&lt;/p&gt;
&lt;h3 id=&quot;start-with-an-id-dont-finish-with-one&quot;&gt;Start with an ID, don&amp;#39;t finish with one&lt;/h3&gt;
&lt;p&gt;How I want to manifest this in my daily life is by &lt;em&gt;starting&lt;/em&gt; any activity by finding the relevant JDex entry, and recording the fact that I&amp;#39;m starting work.&lt;/p&gt;
&lt;p&gt;This makes the activity much more deliberate. Don&amp;#39;t sit down, mash the keyboard, finish something, then figure out where to record it. That&amp;#39;s backwards. Rather, sit down, find the place, open the note, refresh your memory, log the start of this new activity, and &lt;em&gt;then&lt;/em&gt; do the work.&lt;/p&gt;
&lt;h3 id=&quot;tracking-this-under-sbs&quot;&gt;Tracking this under SBS&lt;/h3&gt;
&lt;p&gt;Unlike &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0105-besties-data/&quot;&gt;Bestie&amp;#39;s data&lt;/a&gt;, this does count as a &amp;#39;work&amp;#39; activity. But if I was tracking this in my Life Admin System, I&amp;#39;d put it at &lt;code&gt;14.22 Software, licenses, &amp;amp; downloads&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;This isn&amp;#39;t a &lt;em&gt;perfect&lt;/em&gt; spot, but we&amp;#39;ve learned to just find the &lt;em&gt;best&lt;/em&gt; spot and make do. Because your mindset when coming back to find this later is exactly the same: of all of the limited places, where would I have put it?&lt;/p&gt;
&lt;p&gt;And let&amp;#39;s go back to one of the original design principles of JD: the idea that you should be able to start at the top of your system and, by process of elimination, find what you&amp;#39;re looking for.&lt;/p&gt;
&lt;p&gt;So let&amp;#39;s try that with Life Admin. There&amp;#39;s only one area, so let&amp;#39;s look at its categories. Only one of them is viable:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;del&gt;11 Me &amp;amp; other living things&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;&lt;del&gt;12 Where I live &amp;amp; how I get around&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;&lt;del&gt;13 Money earned, saved, owed, &amp;amp; spent&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;14 My online life ✅&lt;/li&gt;
&lt;li&gt;&lt;del&gt;15 Travel, events, &amp;amp; entertainment&lt;/del&gt; ❌&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now let&amp;#39;s scan the headers of &lt;code&gt;14&lt;/code&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;del&gt;14.10 ■ Computers &amp;amp; other devices&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;14.20 ■ Software &amp;amp; accounts ✅&lt;/li&gt;
&lt;li&gt;&lt;del&gt;14.30 ■ My online presence&lt;/del&gt; ❌&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This strongly feels like a software solution to me, but I could also see how you might consider it part of your &amp;#39;online presence&amp;#39;. Within &lt;code&gt;14.20&lt;/code&gt; we have:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;del&gt;14.21 My emergency recovery kit&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;14.22 Software, licenses, &amp;amp; downloads ✅&lt;/li&gt;
&lt;li&gt;&lt;del&gt;14.23 Email accounts&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;&lt;del&gt;14.24 Social media accounts&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;&lt;del&gt;14.25 Domains &amp;amp; hosting&lt;/del&gt; ❌&lt;/li&gt;
&lt;li&gt;&lt;del&gt;14.26 All other accounts&lt;/del&gt; ❌&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And there we are. &lt;code&gt;14.22&lt;/code&gt; will do the job. Rather than cluttering the parent note I&amp;#39;d create a sub-note &lt;code&gt;14.22+ Script to generate dark mode images&lt;/code&gt; and put the details in there.&lt;/p&gt;
&lt;h2 id=&quot;that-was-a-tangent-because-im-not-doing-that&quot;&gt;That was a tangent because I&amp;#39;m not doing that&lt;/h2&gt;
&lt;p&gt;This is a work thing so it&amp;#39;s going to live in my &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;SBS&lt;/a&gt;. And there &lt;em&gt;is&lt;/em&gt; a perfect home for it there: &lt;code&gt;14.31 Internal software &amp;amp; services&lt;/code&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0106A-SBS-1431--0_original-light-1662x958.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0106A-SBS-1431--0_original-dark-1662x958.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0106A-SBS-1431--0_original-light-1662x958.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0106A-SBS-1431--0_original-dark-1662x958.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of me searching SBS for &apos;software&apos;. 14.31 is the top result.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0106A-SBS-1431--0_original-light-1662x958.png&quot; width=&quot;831&quot; height=&quot;479&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0106A. Searching the Small Business System for &amp;#39;software&amp;#39;.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;blockquote&gt;
&lt;p&gt;By internal software we mean any software (fancy or low-code no-code), scripts, or automations you’ve created to help the business.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Brilliant.&lt;/p&gt;
&lt;h3 id=&quot;i-guess-its-time-to-upgrade-myself-to-the-sbs&quot;&gt;I guess it&amp;#39;s time to upgrade myself to the SBS&lt;/h3&gt;
&lt;p&gt;Talk about tangents. I haven&amp;#39;t moved our own business over to the SBS yet. All we&amp;#39;ve done since we finished it is move house. I guess now&amp;#39;s the time to install it. I&amp;#39;ll walk through this on the end-of-week review video, but skip the details here.&lt;/p&gt;
&lt;p&gt;(I will give myself a bit of credit for how easy that is. I&amp;#39;m really happy with the process to download your system. ☺️)&lt;/p&gt;
&lt;h3 id=&quot;1431&quot;&gt;&lt;code&gt;14.31+&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;Okay, just like &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0105-besties-data/#extend-the-end&quot;&gt;last time&lt;/a&gt; I&amp;#39;m going to create a sub-note of &lt;code&gt;14.31&lt;/code&gt; rather than cluttering the main note.&lt;/p&gt;
&lt;p&gt;And I&amp;#39;m going to make a decision: &lt;strong&gt;I am not going to type any new data in to any parent JDex entry&lt;/strong&gt;. That is, the entries that create your initial system. Instead, &lt;strong&gt;all new data will be in a sub-note&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This leaves the parent note as a holder of metadata and pointer to sub-notes, keeping it clean.&lt;/p&gt;
&lt;h3 id=&quot;open-in-new-window&quot;&gt;&amp;#39;Open in new window&amp;#39;&lt;/h3&gt;
&lt;p&gt;When I&amp;#39;m doing this sort of thing I like the JDex note to be as simple as possible.&lt;/p&gt;
&lt;p&gt;Both Bear and Obsidian have an option to open the current note in a new window. I do this, shrink it to look like a neat little notepad, and work in there. Keeps me focused.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0106B-Obsidian_new_window--0-light-3840x2160.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0106B-Obsidian_new_window--0-dark-3840x2160.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0106B-Obsidian_new_window--0-light-3840x2160.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0106B-Obsidian_new_window--0-dark-3840x2160.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of my desktop. At the top left there&apos;s an Obsidian window that takes up about 1/16th of the screen.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0106B-Obsidian_new_window--0-light-3840x2160.png&quot; width=&quot;1920&quot; height=&quot;1080&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0106B. A neat little JDex entry.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;addendum-leave-myself-a-breadcrumb-in-bear&quot;&gt;Addendum: leave myself a breadcrumb in Bear&lt;/h3&gt;
&lt;p&gt;While I said that this is a work task, future-me might forget that. So it can&amp;#39;t hurt to leave myself a note in the other place I might look, which is the aforementioned &lt;code&gt;14.22&lt;/code&gt; in my personal system.&lt;/p&gt;
&lt;p&gt;For bonus points, use Obsidian&amp;#39;s &lt;strong&gt;Copy Obsidian URL&lt;/strong&gt; feature to get a link to it. Then create a Markdown link like &lt;code&gt;[D25.14.31+](obsidian://…)&lt;/code&gt; to jump yourself from Bear directly to Obsidian.&lt;/p&gt;
&lt;p&gt;As always, if you want any more guidance with this sort of thing, just ask.&lt;/p&gt;
&lt;h1 id=&quot;converting-the-image&quot;&gt;Converting the image&lt;/h1&gt;
&lt;p&gt;This isn&amp;#39;t why you&amp;#39;re here, but for the record this is how you do this with &lt;a href=&quot;https://formulae.brew.sh/formula/imagemagick&quot;&gt;ImageMagick&lt;/a&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-bash&quot;&gt;magick input.png \
  \( -clone 0 \
  -fill &amp;quot;#47a1b3&amp;quot; \
  -colorize 30% \) \
  -compose multiply -composite \
  -brightness-contrast -15x0 \
  output.png
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I asked &lt;a href=&quot;https://claude.ai&quot;&gt;Claude 3.5 Sonnet&lt;/a&gt; (via &lt;a href=&quot;https://cursor.com&quot;&gt;Cursor&lt;/a&gt;) to produce that for me, and tweaked the results. It also produced a bash script so I can execute &lt;code&gt;magickdark &amp;lt;filename.png&amp;gt;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;For me this is exactly what AI was made for: why spend an hour figuring out this one-time task when it can be generated for me in a minute?&lt;/p&gt;
&lt;p&gt;Switch to dark mode to see the altered images. (Or you can open any image in a new tab and replace &lt;code&gt;light&lt;/code&gt; in its filename with &lt;code&gt;dark&lt;/code&gt;.)&lt;/p&gt;
&lt;h1 id=&quot;this-has-all-been-a-tangent&quot;&gt;This has &lt;em&gt;all&lt;/em&gt; been a tangent&lt;/h1&gt;
&lt;p&gt;This morning I thought, &lt;em&gt;time to sort out my &lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things&lt;/a&gt;&lt;/em&gt;, which has 61 items in the inbox.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Gonna need some screenshots&lt;/em&gt;, I thought. &lt;em&gt;Gonna need that dark mode thing&lt;/em&gt;. And here we are, hours later.&lt;/p&gt;
&lt;p&gt;So tomorrow, we tackle Things!&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0105 Bestie&apos;s data</title><link>https://johnnydecimal.com/22.00.0105/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0105/</guid><description>I look after my bestie&apos;s data. She&apos;s a pro photographer. Here&apos;s how I organise it.</description><pubDate>Fri, 25 Apr 2025 10:22:43 GMT</pubDate><content:encoded>&lt;h1 id=&quot;besties-data&quot;&gt;Bestie&amp;#39;s data&lt;/h1&gt;
&lt;p&gt;The setup: my bestie Michelle is a &lt;a href=&quot;https://michellegracehunder.com&quot;&gt;professional photographer&lt;/a&gt;. This is a job with extreme data needs: a single shoot can easily clock over 50GB of RAW images. Do a few of those a week and you soon fill up a hard drive.&lt;/p&gt;
&lt;p&gt;Now do that for 15 years, and back it all up without spending $1,000 a year and destroying your internet connection.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-internet&quot; id=&quot;user-content-fnref-internet&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; It&amp;#39;s tricky. Mishy isn&amp;#39;t a nerd, so I manage it for her.&lt;/p&gt;
&lt;h2 id=&quot;the-jdex-entry&quot;&gt;The JDex entry&lt;/h2&gt;
&lt;p&gt;I manage this as part of my Life Admin System. It&amp;#39;s nothing to do with my job.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://jdcm.al/14.11&quot;&gt;LAS&lt;/a&gt; has the ID &lt;code&gt;14.14 My data storage &amp;amp; backups&lt;/code&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Anything related to the devices and services that keep your data.&lt;br&gt;
&lt;em&gt;e.g. physical storage like hard drives and USB sticks, cloud storage services like Dropbox, iCloud, or OneDrive, notes about what data is where, back up services like Time Machine or Backblaze, notes about back up strategies and tests.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Perfect!&lt;/p&gt;
&lt;h2 id=&quot;extend-the-end&quot;&gt;Extend the end&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://jdcm.al/13.31&quot;&gt;Extend the end&lt;/a&gt; (EtE) is a fairly new idea, so I&amp;#39;m still figuring out the patterns. As they become clearer, I&amp;#39;ll formalise them on the main site.&lt;/p&gt;
&lt;p&gt;But here&amp;#39;s my current thinking. I don&amp;#39;t think this is far off the end result.&lt;/p&gt;
&lt;h3 id=&quot;tag-like-entries&quot;&gt;Tag-like entries&lt;/h3&gt;
&lt;p&gt;If you want to extend the end of various notes across a system and refer to the same entity when doing so -- let&amp;#39;s say I&amp;#39;m keeping notes related to Mishy throughout my system -- you want to be able to recall all of those notes, as a collection, really easily.&lt;/p&gt;
&lt;p&gt;In this situation I use the following pattern:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The ID: &lt;code&gt;14.14&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;EtE&amp;#39;s &lt;code&gt;+&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;A short code consistent across all notes: &lt;code&gt;MGH&lt;/code&gt; for Michelle Grace Hunder.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This allows me to search my JDex for &lt;code&gt;+MGH&lt;/code&gt; and pull up all of the notes related to Michelle. I manage my personal system in Bear, and I have 2 notes.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0105A-Bear_MGH--0_original-light-cx-748x336.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0105A-Bear_MGH--0_original-dark-cx-748x336.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0105A-Bear_MGH--0_original-light-cx-748x336.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0105A-Bear_MGH--0_original-dark-cx-748x336.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Bear showing a search for &apos;+MGH&apos; with 2 notes being returned.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0105A-Bear_MGH--0_original-light-cx-748x336.png&quot; width=&quot;374&quot; height=&quot;168&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Note that there is no space in this sequence, and I consider the canonical reference to this note to be &lt;code&gt;14.14+MGH&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;one-off-entries&quot;&gt;One-off entries&lt;/h3&gt;
&lt;p&gt;Briefly, as I&amp;#39;ll say more about this with a specific example in another post, but for one-off entries, I just use the &lt;code&gt;+&lt;/code&gt;, then a space, then a descriptive title.&lt;/p&gt;
&lt;p&gt;For example alongside &lt;code&gt;13.24 Pension&lt;/code&gt; I have &lt;code&gt;13.24+ UK voluntary contributions&lt;/code&gt;. This note tracks the historical back-payment to the UK government of annual pension contributions.&lt;/p&gt;
&lt;p&gt;That isn&amp;#39;t something that will exist on any other ID, so it doesn&amp;#39;t need an easily-referenceable code.&lt;/p&gt;
&lt;h3 id=&quot;tweak-the-parent-note&quot;&gt;Tweak the parent note&lt;/h3&gt;
&lt;p&gt;If you extend an ID, you should make it obvious that you&amp;#39;ve done so. Otherwise it can be easy to miss.&lt;/p&gt;
&lt;p&gt;The more I do this thing the more I realise that the worst possible sin is causing yourself stress, or even allowing the possibility. The &lt;em&gt;entire point&lt;/em&gt; of this system -- which is significant extra work to implement, don&amp;#39;t think I don&amp;#39;t know it -- is to remove this stress! You must do &lt;strong&gt;everything&lt;/strong&gt; to remove it.&lt;/p&gt;
&lt;p&gt;So there&amp;#39;s &lt;strong&gt;nothing worse&lt;/strong&gt; than being sure that you created some data -- you remember doing it -- and not being able to find it.&lt;/p&gt;
&lt;p&gt;There are two ways to mitigate this.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Rename the parent note, using &lt;code&gt;…&lt;/code&gt; to indicate that it has been extended.&lt;/p&gt;
&lt;p&gt;My original JDex entry&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;14.14 My data storage &amp;amp; backups&lt;/code&gt; is now called&lt;/li&gt;
&lt;li&gt;&lt;code&gt;14.14… My data storage &amp;amp; backups&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You&amp;#39;re telling yourself that there&amp;#39;s more.&lt;/p&gt;
&lt;p&gt;On a Mac you can get the ellipsis by typing Option+; If you&amp;#39;re on Windows you might have to copy/paste it, sorry.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Just make a note in your JDex&lt;/p&gt;
&lt;p&gt;Alternatively, just note in the JDex entry &lt;code&gt;14.14&lt;/code&gt; that there&amp;#39;s a sub-note. &lt;code&gt;[[Wiki-link]]&lt;/code&gt; to it so you can just click to navigate.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-help&quot; id=&quot;user-content-fnref-help&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;I put all of this &amp;#39;metadata&amp;#39; above a &lt;code&gt;---&lt;/code&gt; horizontal line. And actually, I&amp;#39;m starting to think that the parent JDex note should only &lt;em&gt;ever&lt;/em&gt; contain metadata, and that &lt;em&gt;all&lt;/em&gt; supplemental text should be in a sub-note. That&amp;#39;ll be a future post.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;saving-the-file&quot;&gt;Saving the file&lt;/h2&gt;
&lt;p&gt;In my file system, I&amp;#39;ve created a subfolder &lt;code&gt;+MGH&lt;/code&gt; inside folder &lt;code&gt;14.14 My data storage &amp;amp; back ups&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Again, this is the first time I&amp;#39;ve used this pattern. I think this will cause this folder to always be at the top, which is probably what I want.&lt;/p&gt;
&lt;p&gt;(Can you use &lt;code&gt;+&lt;/code&gt; in a Windows file path? I don&amp;#39;t have my virtual image handy. &lt;a href=&quot;https://stackoverflow.com/questions/1976007/what-characters-are-forbidden-in-windows-and-linux-directory-names&quot;&gt;Looks to be okay&lt;/a&gt;.)&lt;/p&gt;
&lt;h1 id=&quot;mishys-data&quot;&gt;Mishy&amp;#39;s data&lt;/h1&gt;
&lt;p&gt;The point of this post isn&amp;#39;t to tell you how to redundantly store and back up 30TB of data, but if you &lt;em&gt;are&lt;/em&gt; interested, the &lt;a href=&quot;https://diagrams.app&quot;&gt;Diagram&lt;/a&gt; below shows you how I do it.&lt;/p&gt;
&lt;p&gt;Of note here is the following.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;The file name, which is &lt;code&gt;P76.14.14+MGH Bestie&amp;#39;s data&lt;/code&gt;. I find it useful enough to use the full JD ID and it only takes another second.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In this particular JDex note, I&amp;#39;ve created a link to this file. If there&amp;#39;s &lt;em&gt;a&lt;/em&gt; file that&amp;#39;s really relevant, I like the idea of reminding myself that it&amp;#39;s there. If you have a &lt;em&gt;folder full&lt;/em&gt; of files, this is probably less useful.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll play with this some more and report back. This is the first time I&amp;#39;ve done it. In Bear, hit Cmd+K and you can drag a file from Finder in to the &lt;strong&gt;Address&lt;/strong&gt; field. Bear will URL encode the path. Now add &lt;code&gt;file://&lt;/code&gt; to the front of the resulting text.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the lower-right of the Diagram, I&amp;#39;ve added a block with the ID of the file. Feels like an architectural diagram! 🤓&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0105B-Diagrams_MGH--0_original-light-cx-2268x2376.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0105B-Diagrams_MGH--0_original-dark-cx-2268x2376.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0105B-Diagrams_MGH--0_original-light-cx-2268x2376.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0105B-Diagrams_MGH--0_original-dark-cx-2268x2376.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of the Diagram. It&apos;s a block drawing with shapes and lines, too complex to describe here. Let me know if you want the details and I&apos;ll be happy to help.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0105B-Diagrams_MGH--0_original-light-cx-2268x2376.png&quot; width=&quot;1134&quot; height=&quot;1188&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0105B. You can right-click and &amp;#39;open in new window&amp;#39; to see more detail.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-internet&quot;&gt;
&lt;p&gt;Upload in Australia is almost universally limited to 40Mbps thanks to our crappy infrastructure. &lt;a href=&quot;#user-content-fnref-internet&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-help&quot;&gt;
&lt;p&gt;Whenever I say something like this, if you&amp;#39;re &lt;em&gt;at all&lt;/em&gt; unsure what I mean, or how to do it, please ask on any of the forums. There are no stupid questions here and I assume no prior knowledge. I certainly don&amp;#39;t assume that all of my readers are tech nerds. &lt;a href=&quot;#user-content-fnref-help&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0104 Everything Everywhere All at Once</title><link>https://johnnydecimal.com/22.00.0104/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0104/</guid><description>I&apos;m going to try documenting essentially everything I do, and become The Most Organised Man in the World.</description><pubDate>Fri, 25 Apr 2025 05:06:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;everything-everywhere-all-at-once&quot;&gt;Everything Everywhere All at Once&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve wanted to do this for a while, but here at JDHQ we tend to focus on a single task. It&amp;#39;s just how me and Lucy work: we go deep on a thing. For months, that was the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;. As soon as we finished that, we had to &lt;a href=&quot;https://jdcm.al/20-29-communication/22-blog/22.00.0098-jdhq-is-on-the-move/&quot;&gt;move house&lt;/a&gt;. As of yesterday, that&amp;#39;s done.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0104A-Butchers_paper--0_original-light-cx-880x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0104A-Butchers_paper--0_original-dark-cx-880x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0104A-Butchers_paper--0_original-light-cx-880x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0104A-Butchers_paper--0_original-dark-cx-880x392.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo of butcher&apos;s paper on our wall with columns each for &apos;video&apos;, &apos;blog&apos;, and the Small Business System. Sticky notes show that we intended to produce videos &amp;#38; blog posts while building the SBS.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0104A-Butchers_paper--0_original-light-cx-880x392.png&quot; width=&quot;440&quot; height=&quot;196&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0104A. When we started the SBS in early October, we planned to produce a video and a blog post each week at the same time. Sweet innocent fools.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;As a result, some of my own stuff is a bit of a mess. I haven&amp;#39;t yet moved our own business over to the SBS. I have … checks … 61! to-do-like items in my Things inbox.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-p4&quot; id=&quot;user-content-fnref-p4&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; That&amp;#39;s deliberate: I know none of them are time-critical, and I&amp;#39;ve been letting them build up so I could process them in public.&lt;/p&gt;
&lt;p&gt;Mail: 147 items across a handful of mailboxes. Physical papers: a small stack to process. A couple of documents on my Desktop. And there&amp;#39;ll be more as I discover it. Again, a conscious decision these last few weeks to let it build. Giving myself material to work with.&lt;/p&gt;
&lt;p&gt;Oh yeah, and we&amp;#39;re taking JDHQ international next month, moving to Vietnam with nothing more than a 10kg backpack.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-moving&quot; id=&quot;user-content-fnref-moving&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; So that&amp;#39;ll take some organising. And the scope of my life has already narrowed dramatically: from &lt;em&gt;a house full of stuff&lt;/em&gt; to &lt;em&gt;one bag and a laptop&lt;/em&gt;. It becomes more important, then, that that laptop is immaculately organised.&lt;/p&gt;
&lt;h2 id=&quot;the-plan&quot;&gt;The plan&lt;/h2&gt;
&lt;p&gt;So here&amp;#39;s the plan: I&amp;#39;m going to meticulously document &lt;em&gt;everything&lt;/em&gt; that I touch. I intend to become nothing less than The Most Organised Man in the World. To the point of absurdity: I don&amp;#39;t recommend you do this! Because who has the time? A: me! It&amp;#39;s my job, thanks to you.&lt;/p&gt;
&lt;p&gt;But I do think that going really deep on this thing will be instructive. It&amp;#39;ll reveal patterns. It&amp;#39;ll force me to clean up my own documentation. It&amp;#39;ll show me what works and what doesn&amp;#39;t.&lt;/p&gt;
&lt;h3 id=&quot;daily-blog&quot;&gt;Daily: blog&lt;/h3&gt;
&lt;p&gt;This will mostly take the form of blog posts. So you&amp;#39;re in the right place.&lt;/p&gt;
&lt;h3 id=&quot;weekly-youtube&quot;&gt;Weekly: YouTube&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m going to try for a weekly round-up video on &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;YouTube&lt;/a&gt;. Videos take much longer to produce, but Lucy&amp;#39;s our editor so they can be happening in parallel.&lt;/p&gt;
&lt;p&gt;I think most of this audience prefers having the words to refer back to, so I&amp;#39;m not planning any original content in the videos. They&amp;#39;ll be a summary/recap style of the previous week&amp;#39;s blog posts.&lt;/p&gt;
&lt;p&gt;But sometimes it&amp;#39;s easier to demonstrate something with moving pictures. Let&amp;#39;s just see what happens.&lt;/p&gt;
&lt;h3 id=&quot;feedback-socials&quot;&gt;Feedback: socials&lt;/h3&gt;
&lt;p&gt;Snippets will be cross-posted to &lt;a href=&quot;https://hachyderm.io/@johnnydecimal&quot;&gt;Mastodon&lt;/a&gt; and &lt;a href=&quot;https://bsky.app/profile/jdcm.al&quot;&gt;Bluesky&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;My &amp;#39;comments section&amp;#39; is &lt;a href=&quot;https://discord.com/channels/822215537589354566/1267672809480650884&quot;&gt;Discord&lt;/a&gt; and &lt;a href=&quot;https://forum.johnnydecimal.com/c/jd-concepts/22-blog/13&quot;&gt;the forum&lt;/a&gt;, both of which have dedicated channels where I cross-post links to blog posts.&lt;/p&gt;
&lt;h2 id=&quot;tomorrow&quot;&gt;Tomorrow&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve been documenting my bestie&amp;#39;s data storage &amp;amp; backup situation. She&amp;#39;s a &lt;a href=&quot;https://michellegracehunder.com&quot;&gt;professional photographer&lt;/a&gt; so it&amp;#39;s a) complicated and b) really important to get right.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll show you how I manage all that in my own Life Admin System at &lt;code&gt;14.14+MGH&lt;/code&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-p4&quot;&gt;
&lt;p&gt;Some of them are &lt;a href=&quot;https://jdcm.al/20-29-communication/22-blog/22.00.0066-the-classes-of-to-do-pt-2/#p4-not-really-a-thing-to-do-yet&quot;&gt;P4&lt;/a&gt; &amp;#39;someday&amp;#39; items, not actual things to-do. Regardless, I&amp;#39;ll be processing them all here and showing you how I handle them. &lt;a href=&quot;#user-content-fnref-p4&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-moving&quot;&gt;
&lt;p&gt;Note to the Australian Tax Office: we&amp;#39;re not actually &amp;#39;moving&amp;#39; to Vietnam, as in becoming residents. We&amp;#39;re going on a really long, plan-it-as-you-do-it trip around the world, and our first stop is Vietnam. We remain tax residents of Australia. But trying to say this gets clumsy, so I&amp;#39;m just going to use the word &amp;#39;moving&amp;#39; in all future posts. &lt;a href=&quot;#user-content-fnref-moving&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0103 SBS: Question about portfolio; storing brush templates</title><link>https://johnnydecimal.com/22.00.0103/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0103/</guid><description>On Discord, theoutermost asks the best place to store their portfolio, showreel, &amp; CV. And a follow-up question about saving items used in creative work.</description><pubDate>Fri, 25 Apr 2025 02:36:17 GMT</pubDate><content:encoded>&lt;h1 id=&quot;sbs-question-about-portfolio-storing-brush-templates&quot;&gt;SBS: Question about portfolio; storing brush templates&lt;/h1&gt;
&lt;p&gt;On Discord, &lt;a href=&quot;https://discord.com/channels/822215537589354566/1292946370759495821/1364596146613391423&quot;&gt;&lt;strong&gt;theoutermost&lt;/strong&gt; asks&lt;/a&gt; in the context of the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;m trying to work out where&amp;#39;s best to keep my files related to my Portfolio/Showreel and CV. To me they are related to my work and business rather than my Life Admin, so it would seem appropriate for them to be in my SBS but I&amp;#39;m not sure where.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;sbs-vs-las&quot;&gt;SBS vs. LAS&lt;/h2&gt;
&lt;p&gt;The first decision is an easy one: if you have the Life Admin System &lt;em&gt;and&lt;/em&gt; the Small Business System, and you&amp;#39;re wondering where to store stuff related to your work: it&amp;#39;s the SBS.&lt;/p&gt;
&lt;p&gt;As we&amp;#39;ll see below, there&amp;#39;s a nice way to leave yourself a breadcrumb in your LAS. So if you go looking for it there, you won&amp;#39;t be confused.&lt;/p&gt;
&lt;h2 id=&quot;portfolios-showreels-and-cvs-are-marketing&quot;&gt;Portfolios, showreels, and CVs are &amp;#39;marketing&amp;#39;&lt;/h2&gt;
&lt;p&gt;From the &lt;a href=&quot;https://sbs.johnnydecimal.com/31#:~:text=Anything%20that%20you%20would%20classify%20as%20self%2Dpromotion%2C%20either%20paid%20or%20free.&quot;&gt;description&lt;/a&gt; of category &lt;code&gt;31 Marketing, PR, &amp;amp; communications&lt;/code&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Anything that you would classify as self-promotion, either paid or free.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This category comes &amp;#39;empty&amp;#39; -- it contains no IDs -- as we can&amp;#39;t know what you might need to create here.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-future&quot; id=&quot;user-content-fnref-future&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; So you need to create a couple of IDs for yourself.&lt;/p&gt;
&lt;p&gt;This feels to me like two things: your portfolio/showreel, and your CV. But you decide: you might like an ID each for your portfolio &amp;amp; showreel if they&amp;#39;re distinct.&lt;/p&gt;
&lt;h3 id=&quot;process-create-ids-in-your-jdex&quot;&gt;Process: create IDs in your JDex&lt;/h3&gt;
&lt;p&gt;First thing to do is create these IDs.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Fire up your JDex.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create 2 new notes:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-text&quot;&gt;31.11 Portfolio &amp;amp; showreel*
31.12 CV
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;em&gt;*You can&amp;#39;t use the &lt;code&gt;/&lt;/code&gt; character in an Obsidian title as the note&amp;#39;s title is the name of the file on disk.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It is &lt;strong&gt;mandatory&lt;/strong&gt; to create the JDex entry first. Don&amp;#39;t create file system folders first! This will lead to inconsistency.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;While you&amp;#39;re in your JDex, if you think it&amp;#39;ll help you find these things in the future, add some searchable terms to the note.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You said that you&amp;#39;ll be updating these artefacts over time. Let&amp;#39;s say annually.&lt;/p&gt;
&lt;p&gt;This naturally suggests subfolders named &lt;code&gt;yyyy&lt;/code&gt;, e.g. &lt;code&gt;2024&lt;/code&gt;. I&amp;#39;d probably leave the current version of these artefacts at the root of the folder, and move each previous year to a &lt;code&gt;yyyy&lt;/code&gt; folder as required.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;updating-artefacts-over-time&quot;&gt;Updating artefacts over time&lt;/h2&gt;
&lt;p&gt;Continuing this question:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I need to create new portfolios each year with examples of updated work&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is where your &lt;code&gt;50-59 Portfolio of creative outputs&lt;/code&gt; comes in. The process is:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Each (say annual) update of these artefacts is a new &lt;code&gt;creative output&lt;/code&gt; job.&lt;/p&gt;
&lt;p&gt;The first job you create is &lt;a href=&quot;https://jdcm.al/10-19-concepts/15-patterns-templates/15.02-creative-pattern/#numbering-scheme&quot;&gt;numbered&lt;/a&gt; &lt;code&gt;50001&lt;/code&gt;, the next &lt;code&gt;50002&lt;/code&gt;. This allows more than 100 jobs over time.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create a new ID in your JDex for the job, and create the folder on disk.&lt;/p&gt;
&lt;p&gt;Ideally, you&amp;#39;re starting from a &lt;a href=&quot;https://jdcm.al/10-19-concepts/15-patterns-templates/15.02-creative-pattern/#standardise-subfolders&quot;&gt;subfolder template&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do the creative work in the job folder.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When the job is finished, copy the final output back to &lt;code&gt;31.11&lt;/code&gt; &amp;amp; &lt;code&gt;31.12&lt;/code&gt;, moving last year&amp;#39;s files to a previous-year folder as noted above.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For a JD power-up 🦸, create a wiki-link from &lt;code&gt;31.11&lt;/code&gt; to the creative job, say &lt;code&gt;50001&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Because &lt;em&gt;next&lt;/em&gt; year, you&amp;#39;re going to want to remember what you did this year.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0103A-Obsidian-3111--0_original-light-cx-776x274.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0103A-Obsidian-3111--0_original-dark-cx-776x274.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0103A-Obsidian-3111--0_original-light-cx-776x274.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0103A-Obsidian-3111--0_original-dark-cx-776x274.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Obsidian with a wiki-link from 31.11 to 50001.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0103A-Obsidian-3111--0_original-light-cx-776x274.png&quot; width=&quot;388&quot; height=&quot;137&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0103A. Use [[square brackets]] to link to another note.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;As an added bonus, Obsidian&amp;#39;s &lt;a href=&quot;https://help.obsidian.md/plugins/backlinks&quot;&gt;backlinks&lt;/a&gt; will automatically link you from the creative job back to the thing it relates to.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0103B-Obsidian-50001--0_original-light-cx-770x702.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0103B-Obsidian-50001--0_original-dark-cx-770x702.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0103B-Obsidian-50001--0_original-light-cx-770x702.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0103B-Obsidian-50001--0_original-dark-cx-770x702.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Obsidian showing the auto-generated backlink from 50001 to 31.11.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0103B-Obsidian-50001--0_original-light-cx-770x702.png&quot; width=&quot;385&quot; height=&quot;351&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0103B. Obsidian automatically generates &amp;#39;backlinks&amp;#39; from the current document.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;leave-yourself-a-breadcrumb&quot;&gt;Leave yourself a breadcrumb&lt;/h2&gt;
&lt;p&gt;Life Admin has &lt;code&gt;11.71 My sales pitch&lt;/code&gt; as a place to put your CV:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The documents you use to sell yourself as a potential employee.&lt;br&gt;
&lt;em&gt;e.g. CV/resume, references, portfolio, LinkedIn profile text.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Drop yourself a note in there to tell yourself that your CV is at &lt;code&gt;SBS.31.12&lt;/code&gt;. Then there&amp;#39;ll be no stress if you come looking for it here in the future.&lt;/p&gt;
&lt;h1 id=&quot;digital-assets&quot;&gt;Digital assets&lt;/h1&gt;
&lt;p&gt;Continuing, &lt;strong&gt;theoutermost&lt;/strong&gt; asks:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;As part of my work storyboarding or animating jobs I have tools and assets I use like templates, brushes, fonts that will be used across all jobs I do so should they live in the Library of Creative Inputs…&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Absolutely! This is exactly what it&amp;#39;s for. &lt;code&gt;41 Design elements&lt;/code&gt; is the place for stuff like this.&lt;/p&gt;
&lt;p&gt;As above, create yourself an ID for each of these types of thing. Here at JDHQ we have &lt;code&gt;41.11 Typefaces&lt;/code&gt;, &lt;code&gt;41.12 Colours&lt;/code&gt;. You might add &lt;code&gt;41.13 Brushes&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;How granular you make these IDs is up to you. See &lt;a href=&quot;https://sbs.johnnydecimal.com/00.34+OPS9/#step-22&quot;&gt;&lt;code&gt;SBS.00.34+OPS9&lt;/code&gt;&lt;/a&gt; for more guidance on creating your own IDs, and of course just ask if you&amp;#39;re unsure.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-future&quot;&gt;
&lt;p&gt;Although as patterns emerge -- like this one -- we&amp;#39;ll likely add some suggested IDs to the standard system. &lt;a href=&quot;#user-content-fnref-future&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0102 The Small Business System</title><link>https://johnnydecimal.com/22.00.0102/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0102/</guid><description>After 6 months of work, the Small Business System is launched.</description><pubDate>Sun, 30 Mar 2025 03:03:56 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-small-business-system&quot;&gt;The Small Business System&lt;/h1&gt;
&lt;p&gt;After 6 months of work, the &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;Small Business System&lt;/a&gt; has launched. Here&amp;#39;s why it took that long, what&amp;#39;s in it, and what&amp;#39;s next.&lt;/p&gt;
&lt;h2 id=&quot;whyd-it-take-so-long&quot;&gt;Why&amp;#39;d it take so long?&lt;/h2&gt;
&lt;p&gt;Firstly, if you signed up a long time ago: thank you. Some of you gave us money ... let me see ... back on the 10th November. (Anthony in Reading, you were first!) That&amp;#39;s a long time, and that money has kept us going. It&amp;#39;s allowed us to focus on creating this thing and to not worry about promoting everything else. That&amp;#39;s &lt;em&gt;massive&lt;/em&gt;, so thank you. You literally made it possible.&lt;/p&gt;
&lt;p&gt;So, we followed &lt;a href=&quot;https://jdcm.al/14.21&quot;&gt;the process&lt;/a&gt; and went deep on discovery. &lt;a href=&quot;https://mindnode.com&quot;&gt;MindNode&lt;/a&gt; was, as always, indispensable. Here&amp;#39;s an early version, once we&amp;#39;d given at least some shape to the initially-random thoughts.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0102A-MindNode--0_original-light-cx-2178x2430.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0102A-MindNode--0_original-dark-cx-2178x2430.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0102A-MindNode--0_original-light-cx-2178x2430.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0102A-MindNode--0_original-dark-cx-2178x2430.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of a MindNode mind map. It&apos;s zoomed way out because there are hundreds of nodes. Nothing is legible.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0102A-MindNode--0_original-light-cx-2178x2430.png&quot; width=&quot;1089&quot; height=&quot;1215&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;That took about a month. Many whiteboards, mind maps, walks, chats over a beer. What would it contain? Who was it for? What&amp;#39;s a &amp;#39;small business&amp;#39; and what does it contain?&lt;/p&gt;
&lt;h3 id=&quot;whats-a-small-business&quot;&gt;What&amp;#39;s a small business?&lt;/h3&gt;
&lt;p&gt;A question worth answering. We had a couple of ideal businesses that we kept coming back to. There&amp;#39;s &lt;em&gt;person who makes candles and sells them at local market&lt;/em&gt;. There&amp;#39;s &lt;em&gt;small hairdressing salon&lt;/em&gt; like my best friend &lt;a href=&quot;https://www.berryhairstudio.com.au&quot;&gt;Berry&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s &lt;em&gt;personal trainer&lt;/em&gt; who meets you at 6am and makes you skip rope and do weights. We&amp;#39;ve got Jeff from &lt;a href=&quot;https://lovettsundries.com&quot;&gt;Lovett Sundries&lt;/a&gt; who &lt;em&gt;make their own natural cosmetics&lt;/em&gt;. Or my mate George who &lt;em&gt;runs a fleet of high-end taxis&lt;/em&gt; in Melbourne.&lt;/p&gt;
&lt;p&gt;And then classic businesses that we can all relate to. Restaurant. Bakery. Professional services. Consultant. Freelancer. Farmer. Dog groomer.&lt;/p&gt;
&lt;p&gt;So you can see, there&amp;#39;s a lot to consider. Do you have premises? A vehicle? Staff? Do you keep stock? Do you have a handful of customers or thousands? Do you make a thing, deliver a service, or a bit of both?&lt;/p&gt;
&lt;p&gt;We think we&amp;#39;ve designed something that fits everyone. If you run &lt;em&gt;any&lt;/em&gt; sort of business and you have between 1-10 staff -- maybe more, we&amp;#39;ll have to test it out -- we think we can accommodate you.&lt;/p&gt;
&lt;h3 id=&quot;complete-and-consistent&quot;&gt;Complete and consistent&lt;/h3&gt;
&lt;p&gt;The design phase took so long because we checked, again and again, that this thing met our two main design goals: that it be &lt;strong&gt;complete&lt;/strong&gt; and &lt;strong&gt;consistent&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;We think there&amp;#39;s a place for everything. It might not feel like exactly the &lt;em&gt;right&lt;/em&gt; place to you, but we learned with Life Admin that it&amp;#39;s more important just to &lt;em&gt;pick a place&lt;/em&gt;, and get on with it. This is a tool, not art.&lt;/p&gt;
&lt;p&gt;And Lucy has gone to extraordinary lengths to make sure that it&amp;#39;s internally consistent. How she holds it all in her mind I&amp;#39;ll never know. I&amp;#39;d write something and she&amp;#39;d say, &lt;em&gt;but up here we said...&lt;/em&gt;, and we&amp;#39;d revisit that and line it all up.&lt;/p&gt;
&lt;h2 id=&quot;whats-in-it&quot;&gt;What&amp;#39;s in it?&lt;/h2&gt;
&lt;p&gt;So what&amp;#39;s in it is hopefully a structure that will accommodate all those types of business. Some of you will use more of it than others. That&amp;#39;s by design.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve ended up with 5 areas containing about 20 categories and about 200 pre-defined IDs. Some of the areas are designed for you to create your own IDs as we can&amp;#39;t know, for example, how your list of products should be structured. So you&amp;#39;ll end up with more over time.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s guidance on how to do this. Suggested templates (which are included in your download). A whole help system. And user settings: you log in to this thing. Initially that&amp;#39;s just &lt;em&gt;do you want to use emoji&lt;/em&gt;, but this gives me the ability do to more over time. See below.&lt;/p&gt;
&lt;p&gt;Lucy&amp;#39;s master document clocked over 46,000 words; about 340 pages. She wrote essentially all of it, while I built the site. (I should rename this thing &lt;code&gt;Jucy.Decimal&lt;/code&gt;.)&lt;/p&gt;
&lt;h3 id=&quot;what-do-i-get&quot;&gt;What do I get?&lt;/h3&gt;
&lt;p&gt;We learned a lesson with the Life Admin System: manually creating PDFs and folders full of text files is a &lt;em&gt;nightmare&lt;/em&gt;. It&amp;#39;s difficult, unwieldy, and unmaintainable.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;ve built a website. I think it&amp;#39;s pretty neat. Think of it as your business operations dashboard. From there, you download a set of folders and JDex files that are generated on-the-fly. So we can update the system really, really easily. Constantly. Frictionless. We update it, you refresh the page, you see it. It&amp;#39;s a joy.&lt;/p&gt;
&lt;h3 id=&quot;a-shared-language&quot;&gt;A shared language&lt;/h3&gt;
&lt;p&gt;This is the natural evolution of Johnny.Decimal which is, of course, inspired by the Dewey Decimal system. In that system, every library doesn&amp;#39;t invent its own scheme. That&amp;#39;d be madness. Rather, I can tell you &lt;code&gt;152.42 LEMB&lt;/code&gt; and that&amp;#39;ll guide you to &lt;a href=&quot;https://www.annalembke.com/dopamine-nation&quot;&gt;the book I&amp;#39;m reading&lt;/a&gt; in any library on Earth.&lt;/p&gt;
&lt;p&gt;Now imagine this same power in your business life. If you want help with your IT backups, you don&amp;#39;t have to explain the scope first: just tell someone you&amp;#39;re at &lt;a href=&quot;https://sbs.johnnydecimal.com/14.23&quot;&gt;14.23&lt;/a&gt;. Now we know exactly what we&amp;#39;re referring to, and we can reference (and contribute to) the same set of resources. And you can chat in a &lt;a href=&quot;https://forum.johnnydecimal.com/c/small-business/14-technology/23&quot;&gt;channel dedicated to that part of the system&lt;/a&gt;. Targeted. Focused. Efficient.&lt;/p&gt;
&lt;h2 id=&quot;whats-next&quot;&gt;What&amp;#39;s next?&lt;/h2&gt;
&lt;p&gt;We can&amp;#39;t emphasise enough that this is version 1.0. As well as constantly upgrading the content, I&amp;#39;d love to build this to be a fully-featured app.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s a small example. One of the things we&amp;#39;ve defined is an ops manual that tells you how to &lt;a href=&quot;https://sbs.johnnydecimal.com/14.23+OPS1&quot;&gt;configure&lt;/a&gt; and then &lt;a href=&quot;https://sbs.johnnydecimal.com/14.23+OPS2&quot;&gt;test&lt;/a&gt; your IT backups. So how can we help you do that?&lt;/p&gt;
&lt;p&gt;Well, I can build a system of reminders. You tested your backups yet? Check the box and we&amp;#39;ll automatically make a log in your JDex. Don&amp;#39;t check the box and I&amp;#39;ll nag you. Maybe this can feed in to your calendar. This is all fairly easy, I just need the time to build it.&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s the next couple of years for us. Assuming this is successful enough to keep us off the streets, we&amp;#39;ll be working on it full time.&lt;/p&gt;
&lt;h3 id=&quot;the-vision&quot;&gt;The vision&lt;/h3&gt;
&lt;p&gt;Because here&amp;#39;s my long-term vision. You start a business. Let&amp;#39;s say you&amp;#39;re making those candles. Maybe this is something you do on the side, so you don&amp;#39;t have a lot of spare time. And it&amp;#39;s your first crack at being indie.&lt;/p&gt;
&lt;p&gt;Today, you have to figure &lt;em&gt;everything&lt;/em&gt; out yourself. From business registration to insurance to calculating your taxes and backing up your IT systems, tracking your customers, orders, stock, your marketing, setting up a website and email, &lt;em&gt;all of it&lt;/em&gt;. That&amp;#39;s wild, right? It&amp;#39;s 2025 and unless you go and do a business course at your local tertiary education place, there isn&amp;#39;t &lt;strong&gt;one place&lt;/strong&gt; that you can go and find all this information.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I want you to be able to log in to the Small Business System and for that all to be taken care of&lt;/strong&gt;. I mean, you still have to do the work! But we&amp;#39;ll guide you all the way. I want this to feel like you&amp;#39;ve got us -- and the rest of the community -- on your staff.&lt;/p&gt;
&lt;h3 id=&quot;the-community&quot;&gt;The community&lt;/h3&gt;
&lt;p&gt;I&amp;#39;d also love this to become a genuinely useful community of like-minded business people. You&amp;#39;ve already self-selected in to a group of people who are actively trying to be more organised. Imagine what that community can do for each other.&lt;/p&gt;
&lt;p&gt;I know all about IT. Ask me: I&amp;#39;ll help. But marketing? Clueless. Well one of you reading this is a marketing expert. Hi! Let&amp;#39;s help each other. Let&amp;#39;s swap skills and knowledge, and buy stuff from each other, and support and recommend each other.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m in other &amp;#39;small business&amp;#39; communities. The quality of discourse is ... low. Because it&amp;#39;s mostly full of dudes trying to get rich quick on a lazy internet idea. &lt;strong&gt;This is not for them&lt;/strong&gt;. This is for people who are getting on with making a thing. Your time will be respected here.&lt;/p&gt;
&lt;h2 id=&quot;preview-mode&quot;&gt;&amp;#39;Preview mode&amp;#39;&lt;/h2&gt;
&lt;p&gt;When I built the site I had an idea: what if there wasn&amp;#39;t one site with all fancy graphics (lol, me?) that tried to &lt;em&gt;sell&lt;/em&gt; you the site, then entirely another site once you were in?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What if it was all the same site?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s what I built: one site. If you&amp;#39;re signed up, you see it all. If you&amp;#39;re not, you see the ░░░░░░░░░░ version. I really like how it turned out.&lt;/p&gt;
&lt;p&gt;Check it out at &lt;a href=&quot;https://sbs.johnnydecimal.com&quot;&gt;https://sbs.johnnydecimal.com&lt;/a&gt;. Now if you&amp;#39;ll excuse me I think I might have a few days off.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0101 My data storage &amp; backup strategy</title><link>https://johnnydecimal.com/22.00.0101/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0101/</guid><description>In case it helps, here&apos;s how I manage large volumes of data across multiple machines and keep it all backed up.</description><pubDate>Fri, 07 Mar 2025 23:16:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;my-data-storage--backup-strategy&quot;&gt;My data storage &amp;amp; backup strategy&lt;/h1&gt;
&lt;p&gt;By email, Dylan asked about my data storage and backup strategy. In answering, I thought it&amp;#39;d be useful enough to formalise here.&lt;/p&gt;
&lt;h2 id=&quot;the-problem&quot;&gt;The &amp;#39;problem&amp;#39;&lt;/h2&gt;
&lt;p&gt;Here&amp;#39;s what I&amp;#39;m working with. The scope of this is mine &amp;amp; Lucy&amp;#39;s personal stuff, and the Johnny.Decimal business.&lt;/p&gt;
&lt;p&gt;We each have a laptop. Mine only has 500GB of storage so I&amp;#39;m severely limited. Lucy&amp;#39;s has 1TB but this is still smaller than the … checks … ah not quite, 787GB that is the entire &lt;code&gt;D85 Johnny.Decimal&lt;/code&gt; business folder.&lt;/p&gt;
&lt;p&gt;That folder contains all of the raw footage from the workshop. That&amp;#39;s 641GB just there. I probably don&amp;#39;t need to keep that now, but whatever. I &lt;em&gt;certainly&lt;/em&gt; don&amp;#39;t need to keep it all on a laptop.&lt;/p&gt;
&lt;p&gt;So we also have a Mac mini. The &amp;#39;server&amp;#39;, even though it just runs plain macOS. The point is that it&amp;#39;s always powered on.&lt;/p&gt;
&lt;p&gt;Mac minis are great for this. I ran a 2010 version until 2023. It was sold as a &lt;a href=&quot;https://everymac.com/systems/apple/mac_mini/specs/mac-mini-core-2-duo-2.66-mid-2010-server-specs.html&quot;&gt;server&lt;/a&gt;, back when Apple did that. 13 years isn&amp;#39;t bad from a ~$1,000 computer.&lt;/p&gt;
&lt;p&gt;I replaced it with a refurb M1 mini, lowest spec. Also ~$1,000. Should also last well over a decade.&lt;/p&gt;
&lt;p&gt;These machines don&amp;#39;t need to do much. No data is stored on them -- we&amp;#39;ll get to that. Processor wise, they do next to nothing. They serve files. So don&amp;#39;t spend money on anything fancy.&lt;/p&gt;
&lt;h2 id=&quot;nas-vs-das&quot;&gt;NAS vs DAS&lt;/h2&gt;
&lt;p&gt;Okay, so where&amp;#39;s all the data? The difference between NAS &amp;amp; DAS is both subtle and vitally important. I&amp;#39;ll assume you&amp;#39;re not a storage expert, so I&amp;#39;ll spell it out.&lt;/p&gt;
&lt;p&gt;&amp;#39;NAS&amp;#39; stands for &amp;#39;network-attached storage&amp;#39;. This means that the device itself attaches to your network. It is a tiny server: it has its own smarts. Synology and QNAP are the ones you&amp;#39;ve heard of.&lt;/p&gt;
&lt;p&gt;The advantage of these devices is that you don&amp;#39;t need &lt;em&gt;another&lt;/em&gt; server. Like a Mac mini. They do it all themselves: you configure them on your network, then you can connect to their storage from any computer. That can be really convenient, and I still have an old Synology in my setup.&lt;/p&gt;
&lt;p&gt;The downside is that if you want to configure them to do anything special, you&amp;#39;re dealing with a device that is usually underpowered, whose software is &lt;em&gt;not&lt;/em&gt; macOS or Windows. It&amp;#39;s some specialised Synology or QNAP thing.&lt;/p&gt;
&lt;p&gt;So if you want to run, say, Syncthing -- we&amp;#39;ll get to all of this later -- then you&amp;#39;re depending on that software having a Synology version. Not everything does, and when it does, it&amp;#39;s often a cut-down variant. This can be limiting.&lt;/p&gt;
&lt;p&gt;For these reasons, I moved away from a NAS when I bought the new mini.&lt;/p&gt;
&lt;h3 id=&quot;das&quot;&gt;DAS&lt;/h3&gt;
&lt;p&gt;DAS stands for &amp;#39;direct-attached storage&amp;#39;. It&amp;#39;s storage that is directly attached to a computer. It&amp;#39;s basically an external hard drive. And you can just use an external hard drive from your office supplies store.&lt;/p&gt;
&lt;p&gt;But if this is your central data store, you probably want something a bit more advanced. Hard drives get hot, so something with a fan is nice. And you can get units that take multiple disks, which &lt;em&gt;can&lt;/em&gt; provide redundancy in case one of the drives fails.&lt;/p&gt;
&lt;p&gt;(It depends how you set these disks up, and this is as technical as I&amp;#39;ll get here. Look up &lt;a href=&quot;https://kagi.com/search?q=raid+levels&amp;r=au&amp;sh=Cc-bYsYSZZLFu5KHPDZKFg&quot;&gt;RAID levels&lt;/a&gt; if you want to know more.)&lt;/p&gt;
&lt;p&gt;So I have a &lt;a href=&quot;https://www.tomshardware.com/reviews/lacie-2big-raid-16tb-hard-drive-review,6249.html&quot;&gt;LaCie 2big 16TB&lt;/a&gt; DAS that is plugged directly in to the Mac mini via USB-C.&lt;/p&gt;
&lt;p&gt;The LaCie doesn&amp;#39;t do anything by itself. It &lt;em&gt;requires&lt;/em&gt; a server. But now that server is a fully-featured computer, and I can install whatever I want on it.&lt;/p&gt;
&lt;h1 id=&quot;so-wheres-all-the-data&quot;&gt;So where&amp;#39;s all the data?&lt;/h1&gt;
&lt;p&gt;Let&amp;#39;s recap. Johnny has a 500GB MacBook Air. Lucy has a 1TB MacBook Pro. And there&amp;#39;s an always-on Mac mini whose internal storage is insignificant because it has 16TB of HDD plugged in the back. I&amp;#39;ll call the mini &amp;#39;the server&amp;#39; from now on.&lt;/p&gt;
&lt;p&gt;Technically, we could store all of our files on the server and access them over the network. But this would be slow, especially over wifi. Ideally, you want the things you&amp;#39;re using all day to be on the machine you&amp;#39;re using.&lt;/p&gt;
&lt;p&gt;This is where synchronisation software comes in. Dropbox is the one you know: you install it, point it to a folder, and it synchronises all of those files. If you want them on another computer, you just install it there and wait for them to copy over. As a bonus, now they&amp;#39;re also in the cloud, and you can log in to a website and access them from anywhere.&lt;/p&gt;
&lt;p&gt;This is a great technology but it comes with limits. What if me and Lucy both edit the same file at the same time? This causes a &amp;#39;conflict&amp;#39;, and there&amp;#39;s not much you can do about that. Dropbox can&amp;#39;t merge our Excel sheets, it&amp;#39;s just too hard. So that&amp;#39;s just something to be aware of.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-conflict&quot; id=&quot;user-content-fnref-conflict&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;syncthing&quot;&gt;Syncthing&lt;/h2&gt;
&lt;p&gt;The secret sauce is an amazing piece of free software: &lt;a href=&quot;https://syncthing.net&quot;&gt;Syncthing&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-syncthing&quot; id=&quot;user-content-fnref-syncthing&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;It&amp;#39;s like Dropbox, but completely configurable. You get to say what synchronises from which computer to which other computers. And you get granular control down to the folder or file level.&lt;/p&gt;
&lt;p&gt;You also get to control what happens to the file on &lt;em&gt;this&lt;/em&gt; computer after a new version is received from &lt;em&gt;that&lt;/em&gt; computer. This is really handy. On the server, I&amp;#39;ve got it configured to keep versions of each file, which it deletes as they get old. It&amp;#39;ll keep … well, let&amp;#39;s just quote Syncthing:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The following intervals are used: for the first hour a version is kept every 30 seconds, for the first day a version is kept every hour, for the first 30 days a version is kept every day, until the maximum age a version is kept every week.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;So as Lucy is working on the small business system, every time she saves the document, it&amp;#39;s synchronised to both my laptop, and the server. The server is then applying the &amp;#39;retention policy&amp;#39; as described above. This is one form of backup: if Lucy accidentally deletes all the text in the document, we can just grab a previous version from Syncthing. Super handy.&lt;/p&gt;
&lt;h3 id=&quot;our-syncthing-configuration&quot;&gt;Our Syncthing configuration&lt;/h3&gt;
&lt;p&gt;In a nutshell: the server has everything, and we each have most stuff, minus the massive folder of workshop video files. There&amp;#39;s a bit more to it, but that&amp;#39;s all you really need to know.&lt;/p&gt;
&lt;h2 id=&quot;start-picturing-blobs-of-data&quot;&gt;Start picturing &amp;#39;blobs&amp;#39; of data&lt;/h2&gt;
&lt;p&gt;What&amp;#39;s important is what this means for our data. When you&amp;#39;re planning something like this, you need to have this picture in your mind of:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;em&gt;What&lt;/em&gt; your data is, and&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Where&lt;/em&gt; your data is.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Johnny.Decimal makes this easy for me to think about. Each blob of data -- the minimum unit of &amp;#39;my data&amp;#39; that I think about -- is a Johnny.Decimal system. I have:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;code&gt;D85 Johnny.Decimal&lt;/code&gt; (the business)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;D01 johnnydecimal.com&lt;/code&gt; (the website)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;P76 Johnny&amp;#39;s personal life&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;L77 Learn with Lucy&lt;/code&gt; (the Excel course)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Z99 Archive&lt;/code&gt; some old long-term archives, including some data that isn&amp;#39;t mine&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I know that &lt;strong&gt;all&lt;/strong&gt; of this data is on the server. That&amp;#39;s really important when it comes to backups, later. It&amp;#39;s so important, it&amp;#39;s a non-negotiable: &lt;strong&gt;all data must always be on the server&lt;/strong&gt;. Then I know that if both laptops fall in the ocean, nothing is actually lost.&lt;/p&gt;
&lt;p&gt;I also know that Syncthing is synchronising &lt;strong&gt;the important stuff that we use every day&lt;/strong&gt; to both laptops. And those laptops synchronise to each other.&lt;/p&gt;
&lt;p&gt;This is important because if &lt;em&gt;one&lt;/em&gt; of the laptops falls in the ocean, it&amp;#39;d be nice to be able to access our important daily stuff quickly. We can do that from the other laptop. And when we get a replacement machine, the two laptops can talk directly to each other. The server, physically far away, is a last resort.&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s the day-to-day synchronisation of data. Syncthing is indispensable. It&amp;#39;s complex, but worth getting to know. If you need any help, ask.&lt;/p&gt;
&lt;h1 id=&quot;backups&quot;&gt;Backups&lt;/h1&gt;
&lt;p&gt;Backups? Didn&amp;#39;t we just talk about backups? All these copies of your data all over the place on three machines?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;We did not. Synchronisation is not a backup&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Read that again. In bold. &lt;strong&gt;Synchronisation is NOT a backup&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Because synchronisation -- wait for it -- synchronises everything: including you messing up some file and not realising it. Including you deleting some folder and not realising it. So you &lt;strong&gt;MUST&lt;/strong&gt; also have backups.&lt;/p&gt;
&lt;p&gt;Nobody said this was simple. Alright, backups. When you think of backups, think of the &lt;em&gt;event&lt;/em&gt; that causes you to be glad that you had it. They get progressively worse. Let&amp;#39;s simplify and say you&amp;#39;re always at home, and not about to be globe-trotting like we are.&lt;/p&gt;
&lt;h2 id=&quot;1-your-laptop-falls-in-the-bath&quot;&gt;1: Your laptop falls in the bath&lt;/h2&gt;
&lt;p&gt;Bath, ocean. Laptop wet, laptop no good. In this scenario, you&amp;#39;re in your house, you have a new laptop, and you need to get working quickly. You want a &lt;strong&gt;local&lt;/strong&gt; backup that you can restore from.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-local&quot; id=&quot;user-content-fnref-local&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;(In my situation, I&amp;#39;d try the re-synchronising first; but let&amp;#39;s say you don&amp;#39;t have that option.)&lt;/p&gt;
&lt;p&gt;Your operating system has software built-in: &lt;a href=&quot;https://support.apple.com/en-au/104984&quot;&gt;Time Machine&lt;/a&gt; for Mac, &lt;a href=&quot;https://support.microsoft.com/en-us/windows/back-up-and-restore-with-windows-backup-87a81f8a-78fa-456e-b521-ac0560e32338&quot;&gt;Windows Backup&lt;/a&gt; for the other one, and you Linux nerds can figure it out yourself.&lt;/p&gt;
&lt;p&gt;You should probably just use this. Personally I also use &lt;a href=&quot;https://www.arqbackup.com&quot;&gt;Arq&lt;/a&gt; but we don&amp;#39;t need to go there. Different software, same result.&lt;/p&gt;
&lt;h2 id=&quot;2-your-backup-didnt-work&quot;&gt;2: Your backup didn&amp;#39;t work&lt;/h2&gt;
&lt;p&gt;It is not your day. You got your backup drive, tried to restore to the new, dry laptop -- and it failed.&lt;/p&gt;
&lt;p&gt;Disk error. Can&amp;#39;t read. Backup error code FKU390093-B. Cosmic rays. Whatever: &lt;strong&gt;backups also fail&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Lucky you have a second backup on a different disk&lt;/strong&gt;. This is why I use Arq: it makes it really easy to connect to another machine and to create a backup there. So I have one backup on this little external SSD, one on the server, and another on an old Synology. &lt;strong&gt;Multiple backups on multiple storage devices&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;But we&amp;#39;re not finished.&lt;/p&gt;
&lt;h2 id=&quot;3-the-house-is-destroyed-by-a-cyclone&quot;&gt;3: The house is destroyed by a cyclone&lt;/h2&gt;
&lt;p&gt;So now everything&amp;#39;s gone. Laptops, servers, hard drives, the lot. &lt;em&gt;Really really unlikely&lt;/em&gt;, but it happens.&lt;/p&gt;
&lt;p&gt;This is what the cloud is for. Ironic, as it just wiped us out. Ha ha. I pay for a cloud backup service that I never hope to use. Literally, if I go my entire life and never ever have to restore from the service that costs me about a hundred bucks a year, I&amp;#39;d be happy.&lt;/p&gt;
&lt;p&gt;But the day you do, you&amp;#39;ll be glad for it. So: use &lt;a href=&quot;https://www.backblaze.com&quot;&gt;Backblaze&lt;/a&gt;. Just do. Now, go and sign up now.&lt;/p&gt;
&lt;h2 id=&quot;3-2-1-backup-strategy&quot;&gt;3-2-1 backup strategy&lt;/h2&gt;
&lt;p&gt;This is the &lt;a href=&quot;https://www.backblaze.com/blog/the-3-2-1-backup-strategy/&quot;&gt;industry-standard&lt;/a&gt; way to do things:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Three&lt;/strong&gt; copies of your data.&lt;/li&gt;
&lt;li&gt;On &lt;strong&gt;two&lt;/strong&gt; different media.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One&lt;/strong&gt; copy off-site, i.e. cloud.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;backblaze-and-nas-vs-das&quot;&gt;Backblaze, and NAS vs. DAS&lt;/h2&gt;
&lt;p&gt;We talked about NAS vs. DAS above for a reason. Backblaze is amazing: unlimited storage for ~$100/year. With a catch: &lt;strong&gt;it only includes DAS&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Backblaze will not back up your Synology for $100/year. It&amp;#39;s a miracle that they &lt;em&gt;will&lt;/em&gt; back up your LaCie 16TB for that. So this is definitely a factor when deciding what to buy.&lt;/p&gt;
&lt;h2 id=&quot;oh-yeah-that-synology&quot;&gt;Oh yeah, that Synology&lt;/h2&gt;
&lt;p&gt;Because I already had a Synology -- an old &lt;a href=&quot;https://www.smallnetbuilder.com/nas/nas-reviews/synology-ds118-single-bay-diskstation-reviewed/&quot;&gt;DS118&lt;/a&gt; single-drive unit -- I&amp;#39;m using it purely as a backup target. Both laptops and the server back up to it, using Arq.&lt;/p&gt;
&lt;p&gt;This is probably overkill. If I didn&amp;#39;t already have this, I wouldn&amp;#39;t buy one for this role.&lt;/p&gt;
&lt;h1 id=&quot;review&quot;&gt;Review&lt;/h1&gt;
&lt;p&gt;Let&amp;#39;s review with a little diagram. I have no computer drawing skillz so here&amp;#39;s one I did on paper.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0101A-Drawing--0_original-light-cx-1280x960.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0101A-Drawing--0_original-dark-cx-1280x960.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0101A-Drawing--0_original-light-cx-1280x960.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0101A-Drawing--0_original-dark-cx-1280x960.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A diagram trying to explain what I&apos;ve talked about. Boxes with arrows.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0101A-Drawing--0_original-light-cx-1280x960.jpeg&quot; width=&quot;1280&quot; height=&quot;960&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Now, yours won&amp;#39;t look anything like this. Don&amp;#39;t just copy me. But make sure that you have this mental model of your data. What blobs are there? Where are they? Which copies are complete vs. partial? Local vs. cloud? Synchronisation vs. backup?&lt;/p&gt;
&lt;p&gt;And if you need any help, ask on the &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0101-my-data-storage-backup-strategy/2161&quot;&gt;forum&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;tailscale&quot;&gt;Tailscale&lt;/h1&gt;
&lt;p&gt;There&amp;#39;s a secret sauce here which I&amp;#39;ll mention briefly.&lt;/p&gt;
&lt;p&gt;The server was in the cupboard in the kitchen, but since deciding to &lt;a href=&quot;https://jdcm.al/22.00.0098&quot;&gt;go on the move&lt;/a&gt;, it needed a new home. So it&amp;#39;s now at my mate Alex&amp;#39;s house in Melbourne. Thalex!&lt;/p&gt;
&lt;p&gt;Ordinarily this would have broken all sorts of stuff and required complicated network reconfiguration. But I have &lt;a href=&quot;https://tailscale.com&quot;&gt;Tailscale&lt;/a&gt; permanently turned on, on every device, so I had to do: exactly nothing.&lt;/p&gt;
&lt;p&gt;I turned the server off, gave it to Alex, he took it and the LaCie and the Synology home with him, he turned them on, and everything just works like it did. Albeit a touch slower, as they&amp;#39;re now about 700kms away. Only about 40ms of network latency though, which is impressive.&lt;/p&gt;
&lt;p&gt;I couldn&amp;#39;t recommend it more. Again, too much detail for this post, but &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0101-my-data-storage-backup-strategy/2161&quot;&gt;let me know if you need help&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;in-this-series&quot;&gt;In this series&lt;/h3&gt;
&lt;p&gt;I expanded on this article with what became a mini-series on storage, data, &amp;amp; backups.&lt;/p&gt;
&lt;ol start=&quot;0&quot;&gt;
&lt;li&gt;22.00.0101 My data storage &amp;amp; backup strategy&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0115/&quot;&gt;22.00.0115 Storage, data, &amp;amp; backups [SBS.14.20]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0116/&quot;&gt;22.00.0116 Data [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0119/&quot;&gt;22.00.0119 Synchronisation [SBS.14.22]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0120/&quot;&gt;22.00.0120 Backups [SBS.14.23]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0180/&quot;&gt;22.00.0180 Backups aren&amp;#39;t enough: create &amp;#39;restore points&amp;#39;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-conflict&quot;&gt;
&lt;p&gt;Most sync services will rename one of the conflicted files, giving it a timestamp and putting the word &amp;#39;conflict&amp;#39; in the filename. Then it&amp;#39;s up to you to merge your conflicting versions. You&amp;#39;ll never actually &lt;em&gt;lose&lt;/em&gt; data. &lt;a href=&quot;#user-content-fnref-conflict&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-syncthing&quot;&gt;
&lt;p&gt;You should financially support &amp;#39;free&amp;#39; software that you depend on. Because nothing&amp;#39;s really free. As soon as we can afford to, I&amp;#39;ll be sponsoring Syncthing. &lt;a href=&quot;#user-content-fnref-syncthing&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-local&quot;&gt;
&lt;p&gt;Computer terms. &amp;#39;Local&amp;#39; = on this network; in this building. &amp;#39;Remote&amp;#39; = not. &lt;a href=&quot;#user-content-fnref-local&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0100 Blog questions challenge 2025</title><link>https://johnnydecimal.com/22.00.0100/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0100/</guid><description>Responding to Ava&apos;s blog challenge.</description><pubDate>Sun, 02 Feb 2025 05:51:13 GMT</pubDate><content:encoded>&lt;h1 id=&quot;blog-questions-challenge-2025&quot;&gt;Blog questions challenge 2025&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://lazybear.social/@hyde/113811556326863557&quot;&gt;Hyde&lt;/a&gt;, who had seen a post from &lt;a href=&quot;https://www.adamsdesk.com/posts/blog-questions-challenge-2025/&quot;&gt;Adam&lt;/a&gt;, who had been reading &lt;a href=&quot;https://kevquirk.com/blog/blog-questions-challenge&quot;&gt;Kev&amp;#39;s&lt;/a&gt; blog, who had seen a post from &lt;a href=&quot;https://brandons-journal.com/bear-blog-questions-challenge/&quot;&gt;Brandon&lt;/a&gt;, who had been tagged by &lt;a href=&quot;https://notes.jeddacp.com/bear-blog-questions-challenge/&quot;&gt;Jedda&lt;/a&gt;, who had been tagged by &lt;a href=&quot;https://blog.avas.space/bear-blog-challenge/&quot;&gt;Ava&lt;/a&gt;, who came up with a blog post challenge … wait, where was I?&lt;/p&gt;
&lt;h3 id=&quot;why-did-you-start-blogging-in-the-first-place&quot;&gt;Why did you start blogging in the first place?&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ve never really seen myself as a blogger, if I&amp;#39;m honest. Which might explain why I&amp;#39;m so bad at it! I&amp;#39;m hardly what you&amp;#39;d call prolific. Johnny.Decimal as an idea is now 15 years old and here we are at post #100.&lt;/p&gt;
&lt;p&gt;Which is funny, because I love writing. But I&amp;#39;m also really conscious of people&amp;#39;s attention. I dislike how my own is constantly being bartered for, and so I feel that unless I have something useful to say, I&amp;#39;m not going to spew words out to fill the void. There is no void. There&amp;#39;s the opposite of a void.&lt;/p&gt;
&lt;p&gt;Also I was on Twitter since 2009 -- when you sent it an SMS to post -- and so I think I&amp;#39;ve got that &lt;em&gt;tell everyone what you&amp;#39;re doing all the time&lt;/em&gt; thing out of my system. I&amp;#39;ve realised that nobody cares what I do. Thank god.&lt;/p&gt;
&lt;p&gt;So I feel like my blog is more of a communication channel and less of a blog in the traditional sense.&lt;/p&gt;
&lt;h3 id=&quot;what-platform-do-you-use&quot;&gt;What platform do you use?&lt;/h3&gt;
&lt;p&gt;This website was hand-coded by me in &lt;a href=&quot;https://astro.build&quot;&gt;Astro&lt;/a&gt;. Astro is amazing. My hand-coding is not, so much. But I&amp;#39;m getting better!&lt;/p&gt;
&lt;h3 id=&quot;have-you-blogged-on-other-platforms-before&quot;&gt;Have you blogged on other platforms before?&lt;/h3&gt;
&lt;p&gt;I have a few posts still lingering on a Wordpress site but they&amp;#39;re old (2008/9) and embarrassing so I won&amp;#39;t link them. And I mean literally, a few posts. Perhaps five.&lt;/p&gt;
&lt;h3 id=&quot;how-do-you-write-your-posts&quot;&gt;How do you write your posts?&lt;/h3&gt;
&lt;p&gt;Usually directly in to Visual Studio Code, in Markdown, with vim keybindings. This whole site is one git repository.&lt;/p&gt;
&lt;p&gt;Occasionally I&amp;#39;ll draft something in my beloved &lt;a href=&quot;https://bear.app&quot;&gt;Bear&lt;/a&gt;, but usually not.&lt;/p&gt;
&lt;h3 id=&quot;when-do-you-feel-most-inspired-to-write&quot;&gt;When do you feel most inspired to write?&lt;/h3&gt;
&lt;p&gt;When I have something to say. See above. But not at any particular time of day.&lt;/p&gt;
&lt;p&gt;Walking is the ultimate life-hack for writers. I don&amp;#39;t know if I&amp;#39;ve ever had an original thought while sitting on my arse looking at a screen. But go for a walk round the block and let it tumble around up there. That&amp;#39;s where the good stuff is.&lt;/p&gt;
&lt;h3 id=&quot;do-you-publish-immediately-or-later&quot;&gt;Do you publish immediately, or later?&lt;/h3&gt;
&lt;p&gt;Usually pretty quickly. If I do the draft-then-come-back-later thing I tend to find that the moment feels like it&amp;#39;s passed.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m definitely one of those people who can&amp;#39;t really &amp;#39;see&amp;#39; a post until I literally see it, on the published site. Not on my dev site, where it looks identical. It needs to be the live version. Then you read it and go &lt;em&gt;ooh that&amp;#39;s not what I meant&lt;/em&gt; and make a few quick edits.&lt;/p&gt;
&lt;h3 id=&quot;whats-your-favourite-post&quot;&gt;What&amp;#39;s your favourite post?&lt;/h3&gt;
&lt;p&gt;I don&amp;#39;t have a favourite.&lt;/p&gt;
&lt;h3 id=&quot;any-future-plans&quot;&gt;Any future plans?&lt;/h3&gt;
&lt;p&gt;I feel that my comms are bit disjointed. I even published a &lt;a href=&quot;https://johnnydecimal.com/21.04/&quot;&gt;comms plan&lt;/a&gt; to try to solve the problem. But I&amp;#39;m not happy with it.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;d still like to streamline &lt;em&gt;official Johnny.Decimal communications&lt;/em&gt;, somehow. But I don&amp;#39;t know what that looks like yet.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0099 Goodbye, sweet ladies</title><link>https://johnnydecimal.com/22.00.0099/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0099/</guid><description>Honouring the three best chickens that ever were.</description><pubDate>Mon, 27 Jan 2025 04:51:23 GMT</pubDate><content:encoded>&lt;h1 id=&quot;goodbye-sweet-ladies&quot;&gt;Goodbye, sweet ladies&lt;/h1&gt;
&lt;p&gt;Aah, this is hard. We loved them so much.&lt;/p&gt;
&lt;h2 id=&quot;wendy&quot;&gt;Wendy&lt;/h2&gt;
&lt;p&gt;Their leader from the start, she was benevolent and fair. She never ruled by force: she never had to. The other two just understood that she was in charge.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;AKA &lt;em&gt;Flapsy-Toot&lt;/em&gt; or &lt;em&gt;Flapsy&lt;/em&gt; on account of her enthusiastic flap -- cut short by a mysterious wing injury -- and her keen toot.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Wendy was the only one brave enough to honour us with &amp;quot;a sittin&amp;#39;&amp;quot;. Usually later in the day, us sipping on a glass of wine in the back garden, she&amp;#39;d come and jump on your leg. She fell asleep on Lucy a bunch of times.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think I&amp;#39;ve ever been as content as I have with Wendy on my leg. She was a beautiful animal; truly a unique character. I&amp;#39;ll miss her more than I can say.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099A-Wendy--0_original-light-cx-956x830.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099A-Wendy--0_original-dark-cx-956x830.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099A-Wendy--0_original-light-cx-956x830.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099A-Wendy--0_original-dark-cx-956x830.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of Wendy sitting on Johnny&apos;s leg.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0099A-Wendy--0_original-light-cx-956x830.jpeg&quot; width=&quot;1280&quot; height=&quot;960&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Wendy, asleep on Lucy&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;marie&quot;&gt;Marie&lt;/h2&gt;
&lt;p&gt;Little Marie, bottom of the pecking order but the most adventurous of the lot. A smart bird, she learned to recognise when we were calling her (&lt;em&gt;hey, Coolie!&lt;/em&gt; in a whisper), usually because we&amp;#39;d found some sort of bug and wanted to make sure she got it.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;AKA &lt;em&gt;Coolie&lt;/em&gt;, &lt;em&gt;Coolie-pie&lt;/em&gt;, &lt;em&gt;Cool-bean&lt;/em&gt;, based on the feathers on her legs, which made it look like she was wearing culottes.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;She&amp;#39;d often go to bed early, to get a bit of time to herself. But then when the other two went in, she&amp;#39;d come back out and Lucy would get the fork to do some digging with her. Marie &lt;em&gt;loved&lt;/em&gt; finding grubs in the ground with her mamma.&lt;/p&gt;
&lt;p&gt;A gorgeous, gentle bird. She would have gone anywhere and done anything for you.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099B-Marie--0_original-light-cx-1020x1020.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099B-Marie--0_original-dark-cx-1020x1020.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099B-Marie--0_original-light-cx-1020x1020.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099B-Marie--0_original-dark-cx-1020x1020.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of Marie.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0099B-Marie--0_original-light-cx-1020x1020.jpeg&quot; width=&quot;1020&quot; height=&quot;1020&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Marie, curious about something&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;belinda&quot;&gt;Belinda&lt;/h2&gt;
&lt;p&gt;Every flock has a bully, and Belinda was it. But we loved her, because they&amp;#39;re your chickens, and what do you do?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;AKA &lt;em&gt;The Bruiser&lt;/em&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If Belinda had been a human she&amp;#39;d have been the matron of a girls&amp;#39; school. We always wanted to get her a pair of half-moon glasses.&lt;/p&gt;
&lt;p&gt;But she was always the first to come and sit next to us of an evening. We&amp;#39;d set up the outdoor chairs in our &amp;#39;business class&amp;#39; configuration, and she&amp;#39;d be straight out. She&amp;#39;d sit on the ground and pancake out … it looked really relaxing. With us sitting above them, they knew they were safe.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099C-Belinda--0_original-light-cx-1132x1280.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099C-Belinda--0_original-dark-cx-1132x1280.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099C-Belinda--0_original-light-cx-1132x1280.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099C-Belinda--0_original-dark-cx-1132x1280.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of Belinda.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0099C-Belinda--0_original-light-cx-1132x1280.jpeg&quot; width=&quot;1132&quot; height=&quot;1280&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Belinda, giving it her all&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;toot-toot-toot&quot;&gt;Toot-toot-toot&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;AKA collectively &lt;em&gt;the tooters&lt;/em&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Goodbye, sweet ladies. We loved you so much. You gave us such happiness. We will miss your little faces and your inquisitive toots. The garden is so empty without you.&lt;/p&gt;
&lt;p&gt;Toot-toot-toot. One two three.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099D-One-two-three--0_original-light-cx-936x697.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0099D-One-two-three--0_original-dark-cx-936x697.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099D-One-two-three--0_original-light-cx-936x697.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0099D-One-two-three--0_original-dark-cx-936x697.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of the three ladies.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0099D-One-two-three--0_original-light-cx-936x697.jpeg&quot; width=&quot;936&quot; height=&quot;697&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;One two three&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;what-chickens-taught-me&quot;&gt;What chickens taught me&lt;/h1&gt;
&lt;p&gt;Looking after these girls taught me that all I need to be truly happy is Lucy, a quiet back yard, and a handful of chickens.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t need things. I don&amp;#39;t need money above the basics for a simple life. This realisation has been profound.&lt;/p&gt;

&lt;p style=&quot;margin: 25px 0; text-align: center;&quot; role=&quot;separator&quot; aria-label=&quot;Section divider&quot;&gt;≡&lt;/p&gt;
&lt;p&gt;There&amp;#39;s this idea in meditation practice that this might be the last time you do something. It might be the last time you see your kid. It might be the last time you have dinner with your partner, or visit your best friend. You just never know.&lt;/p&gt;
&lt;p&gt;This is a useful reminder to &lt;em&gt;pay attention&lt;/em&gt;. Don&amp;#39;t sit there in the garden with your chickens and scroll your phone. Be with your chickens. Absorb the moment. Because, eventually, it&amp;#39;ll be the last.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve had our last moment with these girls. We&amp;#39;re crushed with grief. But I enjoyed &lt;em&gt;every&lt;/em&gt; moment. I&amp;#39;ll never forget them.&lt;/p&gt;
&lt;h1 id=&quot;on-chicken-care&quot;&gt;On chicken care&lt;/h1&gt;
&lt;p&gt;I write this hoping that it&amp;#39;ll be absorbed in to the internet and help future chicken owners.&lt;/p&gt;
&lt;p&gt;You&amp;#39;re probably thinking, why did he get rid of these chickens he loved so much? It&amp;#39;s because they couldn&amp;#39;t have moved with us, and we couldn&amp;#39;t have given them to anyone else, and this is because of their breed, and its problems.&lt;/p&gt;
&lt;p&gt;(Obviously I have learned all of this &lt;em&gt;since&lt;/em&gt; getting the girls. My god, the stuff I&amp;#39;ve learned about chickens...)&lt;/p&gt;
&lt;h2 id=&quot;isa-brown&quot;&gt;ISA Brown&lt;/h2&gt;
&lt;p&gt;Chickens bred for laying are &lt;a href=&quot;https://en.wikipedia.org/wiki/ISA_Brown&quot;&gt;ISA Browns&lt;/a&gt;. So they&amp;#39;re a very common back-yard chook, because for the first year or so you get an egg a day. Amazing, right?&lt;/p&gt;
&lt;p&gt;The problem is this aggressive laying schedule, a result of selective breeding, wrecks their little bodies. Commercially, they lay for a season and that&amp;#39;s it. But when you get one as a pet, it&amp;#39;s a problem.&lt;/p&gt;
&lt;p&gt;When they reach about 1.5 years old, they start laying &lt;a href=&quot;https://www.bhwt.org.uk/hen-health/health-problems/lash-eggs-salpingitis/&quot;&gt;lash eggs&lt;/a&gt; (image warning).&lt;/p&gt;
&lt;p&gt;Untreated, this will kill them. They get an infected reproductive tract and either die from the infection or associated tumours. I can only imagine it&amp;#39;s a painful, slow death.&lt;/p&gt;
&lt;p&gt;The treatment is hormones: an IUD, the same they give to dogs. And most vets won&amp;#39;t give this to a chicken. We&amp;#39;re forever indebted to the magnificent, kind staff at the &lt;a href=&quot;https://www.unusualpetvets.com.au&quot;&gt;Unusual Pet Vets&lt;/a&gt; in Fyshwick, without whom we couldn&amp;#39;t have done any of this.&lt;/p&gt;
&lt;p&gt;The hormone is effective, and permanently stops them laying. But you can tell that it messes with their moods. They become very subdued; they sleep a lot.&lt;/p&gt;
&lt;p&gt;And it costs about $1,000/year/chicken. It&amp;#39;s a commitment.&lt;/p&gt;
&lt;p&gt;So if you are considering keeping chickens, please don&amp;#39;t get ISA Browns. They&amp;#39;re beautiful birds, but they&amp;#39;re doomed to this life of disease. The eggs aren&amp;#39;t worth it. Just buy free-range eggs from the store.&lt;/p&gt;
&lt;p&gt;Other breeds of chicken -- in which I have no expertise -- do lay eggs. But you&amp;#39;re not going to get one a day.&lt;/p&gt;
&lt;h2 id=&quot;my-consolation&quot;&gt;My consolation&lt;/h2&gt;
&lt;p&gt;Many back-yard chooks die either in terror, eaten by a fox/dog/snake, or painfully, with an unnoticed disease.&lt;/p&gt;
&lt;p&gt;We kept ours safe for over three years. Nothing bad &lt;em&gt;ever&lt;/em&gt; happened to them. I&amp;#39;m sure they lived a near-perfect chicken existence. Lucy kept their place immaculately clean. They got treats and love. They were free to roam our whole back yard, every day. What a life.&lt;/p&gt;
&lt;p&gt;And when they went, they went together, peacefully.&lt;/p&gt;
&lt;p&gt;🐓&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0098 JDHQ is on the move</title><link>https://johnnydecimal.com/22.00.0098/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0098/</guid><description>A new chapter of our lives begins.</description><pubDate>Mon, 27 Jan 2025 04:51:18 GMT</pubDate><content:encoded>&lt;h1 id=&quot;jdhq-is-on-the-move&quot;&gt;JDHQ is on the move&lt;/h1&gt;
&lt;p&gt;Big news: we&amp;#39;re moving. Away from Canberra. Away from anywhere! We&amp;#39;re going to try being location-independent for a while.&lt;/p&gt;
&lt;p&gt;We don&amp;#39;t love it here any more. And when you don&amp;#39;t love where you live, it&amp;#39;s time to go. This is especially important when your house is also your office.&lt;/p&gt;
&lt;p&gt;Because how we feel in this home affects the work that we produce. Our work is the most important thing to us. We both gave up our careers to do this.&lt;/p&gt;
&lt;p&gt;The Small Business System (SBS)&lt;sup&gt;&lt;a href=&quot;#user-content-fn-sbs&quot; id=&quot;user-content-fnref-sbs&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; feels like the thing that will make us long-term sustainable. So it has to be the best that it can possibly be. For that to be the case, something needed to change.&lt;/p&gt;

&lt;p style=&quot;margin: 25px 0; text-align: center;&quot; role=&quot;separator&quot; aria-label=&quot;Section divider&quot;&gt;≡&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve both lived and worked all over the world. Now, in our late 40s, we&amp;#39;re not quite ready to say goodbye to that lifestyle. Because we do, soon, want to settle down. But not in this inner-city rental; this could never have been our forever place.&lt;/p&gt;
&lt;p&gt;We need our own place, in the country. Undisturbed by neighbours. Full of chickens.&lt;/p&gt;
&lt;p&gt;So, decision made just a week ago, we&amp;#39;ve already taken decisive action. Notice has been given. Many items have been sold or disposed. There&amp;#39;s more to go: we don&amp;#39;t plan on keeping much.&lt;/p&gt;
&lt;p&gt;Where are we going? First stop is Lucy&amp;#39;s parents&amp;#39; place, where we&amp;#39;ll briefly re-group and plan the next move. It might be Japan, the USA, Germany … or anywhere else. It might depend on a cheap flight! We really don&amp;#39;t know.&lt;/p&gt;

&lt;p style=&quot;margin: 25px 0; text-align: center;&quot; role=&quot;separator&quot; aria-label=&quot;Section divider&quot;&gt;≡&lt;/p&gt;
&lt;p&gt;To be clear, the production of the SBS is our absolute priority. Some of you have trusted us with a &lt;em&gt;lot&lt;/em&gt; of your money. We appreciate that, and after a rough week -- see below -- we&amp;#39;re now in total-focus mode.&lt;/p&gt;
&lt;p&gt;Since starting development of the SBS we&amp;#39;ve been talking about visiting some of the businesses we&amp;#39;re hoping to help. You can&amp;#39;t truly know what people&amp;#39;s problems are until you see them with your own eyes. So this will give us an opportunity to come and see some of you.&lt;/p&gt;
&lt;p&gt;If this interests you, &lt;a href=&quot;https://link.jdcm.al/form/world-tour&quot;&gt;fill in this form&lt;/a&gt;.&lt;/p&gt;

&lt;p style=&quot;margin: 25px 0; text-align: center;&quot; role=&quot;separator&quot; aria-label=&quot;Section divider&quot;&gt;≡&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;⚠️😔🐓 Sadness warning. Skip if you love chickens.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This decision came with a terrible cost. Our beloved chickens couldn&amp;#39;t have come with us. They couldn&amp;#39;t really have come &lt;em&gt;anywhere&lt;/em&gt;: they were all on medication to keep them alive, and without a chicken vet close by their implants would have worn off and they would have died painful deaths. Most vets won&amp;#39;t see a chicken.&lt;/p&gt;
&lt;p&gt;And so we had to say goodbye. We took them to the vet and they went, peacefully, together. Obviously we&amp;#39;re crushed beyond words. It&amp;#39;s the hardest thing we&amp;#39;ve ever done.&lt;/p&gt;
&lt;p&gt;I want to honour them with their own page. So: &lt;a href=&quot;https://johnnydecimal.com/22.00.0099/&quot;&gt;goodbye, sweet ladies&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-sbs&quot;&gt;
&lt;p&gt;I&amp;#39;m going to standardise the naming here, it&amp;#39;s been a bit all over the place. We have &amp;#39;life admin&amp;#39; and the upcoming &amp;#39;small business&amp;#39; systems. So their formal names are the Life Admin System (LAS) and Small Business System (SBS).&lt;/p&gt;
&lt;p&gt;Our style guide says that you should capitalise if it feels appropriate, but if you&amp;#39;re in the flow of a sentence and it would feel a bit over-the-top, there&amp;#39;s no requirement. Or, now, I can just use the initialisms. &lt;a href=&quot;#user-content-fnref-sbs&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0097 TGIF</title><link>https://johnnydecimal.com/22.00.0097/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0097/</guid><description>A new Johnny.Decimal initiative: thank god I filed it! (on Friday).</description><pubDate>Thu, 16 Jan 2025 22:16:25 GMT</pubDate><content:encoded>&lt;h1 id=&quot;tgif&quot;&gt;TGIF&lt;/h1&gt;
&lt;p&gt;Announcing a new Johnny.Decimal initiative: Thank God I Filed it! (on Friday).&lt;sup&gt;&lt;a href=&quot;#user-content-fn-atheist&quot; id=&quot;user-content-fnref-atheist&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Okay, this one&amp;#39;s a little tongue-in-cheek. But I think there&amp;#39;s something to be had here.&lt;/p&gt;
&lt;h3 id=&quot;filing-is-boring&quot;&gt;Filing is boring&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m constantly aware that I run this website for a thing which most people find really boring. Let&amp;#39;s not fool ourselves: even if you&amp;#39;re in to this sort of thing, filing things isn&amp;#39;t &amp;#39;fun&amp;#39;.&lt;/p&gt;
&lt;p&gt;The result is that we don&amp;#39;t do it. We know we should. We might even have a really neat place to file things. (You&amp;#39;re welcome.) And &lt;em&gt;still&lt;/em&gt; we don&amp;#39;t!&lt;/p&gt;
&lt;p&gt;So TGIF is a little prompt. Here&amp;#39;s the challenge:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This Friday, make an effort to file at least one thing. Make it the thing that caused you the most problems this week.&lt;/strong&gt;&lt;/p&gt;
&lt;h3 id=&quot;invest-an-hour&quot;&gt;Invest an hour&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s say you set aside an hour to do this. This is why we picked Friday: it&amp;#39;s a perfect 3pm-on-a-Friday sort of job. You&amp;#39;re almost finished, your brain is fried, so why don&amp;#39;t you do something menial that helps future you?&lt;/p&gt;
&lt;p&gt;In an hour, aim to file &lt;strong&gt;four (4) things&lt;/strong&gt;. Just four. No stress.&lt;/p&gt;
&lt;p&gt;If you do this every week for a year, in a year you&amp;#39;ve filed 200 things. And I bet you don&amp;#39;t routinely &lt;em&gt;use&lt;/em&gt; 200 things! We&amp;#39;re talking your logo, your pricing chart, your list of suppliers.&lt;/p&gt;
&lt;p&gt;So in a year, you might not have much left to do. That&amp;#39;d be nice.&lt;/p&gt;
&lt;h3 id=&quot;share-your-success&quot;&gt;Share your success&lt;/h3&gt;
&lt;p&gt;Let us know &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0097-tgif/2050&quot;&gt;on the forum&lt;/a&gt; if this helps!&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-atheist&quot;&gt;
&lt;p&gt;Noting that I am an atheist and do not believe in any of the gods, but for purposes of the initialism it would have been punitive to lower-case this instance. &lt;a href=&quot;#user-content-fnref-atheist&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0096 21c/Q2 – new habits for a new quarter-century</title><link>https://johnnydecimal.com/22.00.0096/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0096/</guid><description>Quarter-centuries don&apos;t roll round very often. Let&apos;s use it to shake things up.</description><pubDate>Wed, 01 Jan 2025 05:30:04 GMT</pubDate><content:encoded>&lt;h1 id=&quot;21cq2--new-habits-for-a-new-quarter-century&quot;&gt;21c/Q2 – new habits for a new quarter-century&lt;/h1&gt;
&lt;p&gt;Happy new &lt;del&gt;year&lt;/del&gt; quarter century.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-pedant&quot; id=&quot;user-content-fnref-pedant&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; This doesn&amp;#39;t happen often. I&amp;#39;m going to use it to re-shape some of my behaviours. As I was born in 1976, this roughly coincides with Q3 of my life. Let&amp;#39;s shake it up a little.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Would you like to join me?&lt;/strong&gt; Habits are better formed with friends.&lt;/p&gt;
&lt;h1 id=&quot;vision-statement&quot;&gt;Vision statement&lt;/h1&gt;
&lt;p&gt;Behaviours are driven by goals, so let&amp;#39;s define &lt;em&gt;what&lt;/em&gt; I&amp;#39;m hoping to achieve. This is the immutable part. And then we&amp;#39;ll talk about &lt;em&gt;how&lt;/em&gt; I&amp;#39;m going to do it, which might evolve over time. There&amp;#39;s more than one way to skin a cat.&lt;/p&gt;
&lt;h2 id=&quot;1-check-stuff-less-often&quot;&gt;1: Check stuff less often&lt;/h2&gt;
&lt;p&gt;As in, check my mail less often. The price of that stock I own. That tech website I browse when I&amp;#39;m bored. Reddit. Or something related to what I&amp;#39;m doing: I&amp;#39;m reading a book and the character is on Bleeker St, NYC, and I think &lt;em&gt;I wonder where that is&lt;/em&gt; and 35 minutes later I&amp;#39;m on YouTube via maps and a pizza shop and a recipe and … you know how this goes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This is a habit that wasn&amp;#39;t possible at the start of 21c/Q1 and is now endemic&lt;/strong&gt;. In 2000 I had a computer in the house but its default state was powered off: when I wanted to do a thing, I turned it on and loaded that thing.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-cs&quot; id=&quot;user-content-fnref-cs&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; The internet, such as it was, was dial-up; the connection took a full minute to establish. You didn&amp;#39;t just &lt;em&gt;check stuff&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Now, the device I&amp;#39;m writing this on has instant access to all of the information that humanity has ever generated. Let me try it now. I&amp;#39;m going to time how long it takes me to find some interesting fact about that pizza shop.&lt;/p&gt;
&lt;p&gt;15 seconds. &lt;a href=&quot;https://johnsofbleecker.com/&quot;&gt;John&amp;#39;s of Bleeker St&lt;/a&gt; is open today 11:30 through 22:00. So we&amp;#39;ve conditioned ourselves to think that 15 seconds is the distraction: and then, what&amp;#39;s the harm? Of course this isn&amp;#39;t how it works.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The solution, I believe, is to completely break this habit&lt;/strong&gt;. It has to be: otherwise Q3 rolls around and I&amp;#39;m a 75-year-old dude glued to his phone? That sounds pathetic. I intend to be a 75-year-old dude glued to Schubert on vinyl.&lt;/p&gt;
&lt;p&gt;So am I becoming a meme and &lt;a href=&quot;https://duckduckgo.com/?q=giving+up+the+internet&amp;t=osx&amp;ia=web&quot;&gt;quitting the internet&lt;/a&gt;? No: my job is on the internet. You can&amp;#39;t quit the internet. But you can spend a &lt;em&gt;lot&lt;/em&gt; less time there. And you can make sure that the time you spend is deliberate, and that it is serving you well. That&amp;#39;s the vision.&lt;/p&gt;
&lt;h2 id=&quot;2-live-more-deliberately&quot;&gt;2: Live more deliberately&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve alluded to this already in my stalled YouTube series &lt;a href=&quot;https://www.youtube.com/playlist?list=PLtBN5zRaar6oCKPQ3MdILOsinh6W4JV_x&quot;&gt;Focus and Productivity&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-omega&quot; id=&quot;user-content-fnref-omega&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; &lt;strong&gt;I want to move through life more deliberately: to do one thing at a time, and to be aware of what it is&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The first corporate training course I ever took was on &amp;#39;time management&amp;#39;. I was on a graduate program at Rank Xerox in 1996. The advice was so inane as to be absurd: &lt;em&gt;if you&amp;#39;re waiting for a large job to print&lt;/em&gt;, said the instructor. &lt;em&gt;Don&amp;#39;t just sit and look at your computer screen. Do something else! This is called multi-tasking&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Sounded like a great idea. Something an instructor told you to do. 29 (!) years later, I&amp;#39;m not so sure.&lt;/p&gt;
&lt;p&gt;Again, technology is the enabler. In 1996 there was a hard limit on the number of things I could have done while I waited for my print job. Now the list of things is functionally infinite. Great, so I&amp;#39;m more productive! Well, no. Because an infinite subset of the infinite possibilities isn&amp;#39;t productive work. It&amp;#39;s Reddit.&lt;/p&gt;
&lt;p&gt;I think that we need to learn to do less in order to do more. Not a new idea: in &lt;em&gt;Deep Work&lt;/em&gt;, Cal Newport sets out four rules.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-deep&quot; id=&quot;user-content-fnref-deep&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt; The second: &lt;strong&gt;embrace boredom&lt;/strong&gt;. Give your brain time to think, to drift, to wander in to idle spaces.&lt;/p&gt;
&lt;p&gt;This ties in with Johnny.Decimal. I want to work by engaging with my system. Something like this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Choose what to do. Identify the appropriate Johnny.Decimal ID.&lt;/li&gt;
&lt;li&gt;Open that ID in my JDex and my task management system. Check in with myself. What&amp;#39;s to do? What did I do previously? Is there a context to load? A thing to not forget?&lt;/li&gt;
&lt;li&gt;Do the thing. And &lt;em&gt;only&lt;/em&gt; the thing. If there is a pause, just pause.&lt;/li&gt;
&lt;li&gt;Finish the thing. Close it down, mentally. Put it away.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This applies to life as much as it does to work. Example: yesterday, I had to drop a parcel off and shop for dinner. About to depart, I put in one of my AirPods as I was half way through a video a friend had sent me.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-podcast&quot; id=&quot;user-content-fnref-podcast&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt; Fortunately Lucy was there, otherwise I&amp;#39;d have cycled 3kms without the parcel, which I&amp;#39;d left on the table: a victim of distraction. (It would not have been the first time that this had happened.)&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think the solution to this is technology; it&amp;#39;s not yet another to-do app. And I don&amp;#39;t &lt;em&gt;want&lt;/em&gt; my life driven by a reminder app. I want to drive it myself. &lt;strong&gt;The solution is to be more considered in what you do&lt;/strong&gt;. To engage with life and not let &lt;em&gt;it&lt;/em&gt; be the background to some YouTube video.&lt;/p&gt;
&lt;h2 id=&quot;new-years-resolutions-dont-work&quot;&gt;New Year&amp;#39;s resolutions don&amp;#39;t work…&lt;/h2&gt;
&lt;p&gt;Yeah, &lt;a href=&quot;https://duckduckgo.com/?q=do+new+year%27s+resolutions+work+science&amp;t=osx&amp;ia=web&quot;&gt;so they say&lt;/a&gt;. But I have a data point.&lt;/p&gt;
&lt;p&gt;Exactly four years ago, after doom-scrolling Covid for all of 2020, I decided -- mostly in the moment, if memory serves -- to stop reading the news. And I did. Since then I haven&amp;#39;t once visited the home page of a traditional news organisation, or watched any significant portion of a TV news broadcast. (I still keep up with &amp;#39;tech news&amp;#39; because I&amp;#39;m a nerd and it&amp;#39;s not really news.)&lt;/p&gt;
&lt;p&gt;It wasn&amp;#39;t the resolution that helped, it was having a date to anchor it to. By the end of January if you still haven&amp;#39;t done &lt;em&gt;the thing&lt;/em&gt;, well you&amp;#39;re not going to start doing it in February. And four years later here we are. It worked for me. Science.&lt;/p&gt;
&lt;h1 id=&quot;lets-leave-the-how-for-tomorrow&quot;&gt;Let&amp;#39;s leave the &lt;em&gt;how&lt;/em&gt; for tomorrow&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Would you like to join me? Let&amp;#39;s do this together&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Your goals should be &lt;em&gt;similar&lt;/em&gt; to mine but if they&amp;#39;re not exactly the same that&amp;#39;s okay. And you might not want to go as hard as I plan on doing. But I&amp;#39;m Johnny.Decimal: this is content. So that&amp;#39;s also okay.&lt;/p&gt;
&lt;p&gt;I think if we do this together, we can keep each other honest. I&amp;#39;ve created dedicated threads on &lt;a href=&quot;https://discord.com/channels/822215537589354566/1323892020510457957&quot;&gt;Discord&lt;/a&gt; and the &lt;a href=&quot;https://forum.johnnydecimal.com/t/21c-q2-new-habits-for-a-new-quarter-century/2024&quot;&gt;forum&lt;/a&gt;. Throw your hat in the ring!&lt;/p&gt;
&lt;p&gt;And if you don&amp;#39;t keep it up, &lt;em&gt;that&amp;#39;s&lt;/em&gt; okay. There&amp;#39;s a good chance that I&amp;#39;ll fail. This feels like it&amp;#39;s going to be difficult.&lt;/p&gt;
&lt;p&gt;But let&amp;#39;s give it a crack. Think how nice it&amp;#39;ll be in 2035: someone says, &lt;em&gt;hey, you are like a &lt;strong&gt;really chill&lt;/strong&gt; person&lt;/em&gt;, and you can say, &lt;em&gt;yeah, I haven&amp;#39;t been distracted by the internet since the start of this quarter-century&lt;/em&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-pedant&quot;&gt;
&lt;p&gt;Don&amp;#39;t pedant me here. I don&amp;#39;t care if the millennium started in 2001 and therefore it should be &amp;#39;26 not &amp;#39;25. 100/4 = 25. End of story. &lt;a href=&quot;#user-content-fnref-pedant&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-cs&quot;&gt;
&lt;p&gt;This thing invariably being &lt;em&gt;Counter-Strike&lt;/em&gt;. &lt;a href=&quot;#user-content-fnref-cs&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-omega&quot;&gt;
&lt;p&gt;Another perfect example of distraction just occurred. I opened YouTube to grab the link to that playlist. One of the suggested videos was a repair of a vintage Omega watch, just like mine! I&amp;#39;ve been trying to find its exact model specification for &lt;em&gt;ages&lt;/em&gt;. So I can&amp;#39;t just ignore that link: I might never see it again. And I didn&amp;#39;t. But now it&amp;#39;s open in a tab, un-watched, and I&amp;#39;ll figure out how to queue it for later viewing. &lt;a href=&quot;#user-content-fnref-omega&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-deep&quot;&gt;
&lt;p&gt;If you haven&amp;#39;t read &lt;em&gt;Deep Work&lt;/em&gt;, please do. &lt;a href=&quot;#user-content-fnref-deep&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-podcast&quot;&gt;
&lt;p&gt;Having become aware of this earlier this year, I have drastically reduced the number of podcasts that I listen to. And essentially never while outdoors. &lt;a href=&quot;#user-content-fnref-podcast&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0095 Back from holiday; minimising the office; Decimal.Business update</title><link>https://johnnydecimal.com/22.00.0095/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0095/</guid><description>An end-of-2025 update: I&apos;m back from holiday. Small business is full-steam-ahead. And I threw away half the office.</description><pubDate>Fri, 20 Dec 2024 00:40:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;back-from-holiday-minimising-the-office-decimalbusiness-update&quot;&gt;Back from holiday; minimising the office; Decimal.Business update&lt;/h1&gt;
&lt;p&gt;Hey all. I thought I&amp;#39;d mentioned this here but evidently not: I just got back from a 3-week holiday. My whole family visited from the UK. Mam, dad, sister, brother-in-law, and two nieces.&lt;/p&gt;
&lt;p&gt;Ages ranged from 9 to 78. We visited Sydney, Canberra, and the Gold Coast. It was amazing, but you know that old cliché that &lt;em&gt;I need a holiday to recover from my holiday&lt;/em&gt;? Well yeah, that&amp;#39;s definitely true.&lt;/p&gt;
&lt;h2 id=&quot;i-threw-away-half-the-office&quot;&gt;I threw away half the office&lt;/h2&gt;
&lt;p&gt;I got back, took the few personal items out of my bag, and put them on my desk. Pencil case with a few pencils and charging cables. Notebook. Glasses case. Battery pack. Wallet.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-wallet&quot; id=&quot;user-content-fnref-wallet&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Not much. I travel light. But still, I saw them there and was immediately filled with a tiny dread: that of putting them away in a messy drawer.&lt;/p&gt;
&lt;p&gt;So what option was there other than to pull everything out of every drawer and throw half of it away? ¯\_(ツ)_/¯&lt;/p&gt;
&lt;p&gt;The time felt right. End of the year: might as well start 2025 with a clean slate. I took a bunch of photos but it&amp;#39;d take too long to embed them here. &lt;a href=&quot;https://www.icloud.com/sharedalbum/#B2K52plgjaYTml&quot;&gt;Here&amp;#39;s an iCloud shared library of the &amp;#39;before&lt;/a&gt;&amp;#39; if you&amp;#39;re interested. That&amp;#39;s each drawer&amp;#39;s contents laid out on my desk.&lt;/p&gt;
&lt;h3 id=&quot;if-you-dont-throw-it-away&quot;&gt;If &lt;em&gt;you&lt;/em&gt; don&amp;#39;t throw it away...&lt;/h3&gt;
&lt;p&gt;Lucy started to do the same, and while neither of us are hoarders -- those photos don&amp;#39;t show &lt;em&gt;that much&lt;/em&gt; stuff -- we had a startling realisation.&lt;/p&gt;
&lt;p&gt;Which is that if &lt;em&gt;you&lt;/em&gt; don&amp;#39;t throw this thing away, somebody else has to. Maybe not for a while. Depends when you die. But, eventually.&lt;/p&gt;
&lt;p&gt;So those &lt;a href=&quot;https://www.icloud.com/sharedalbum/#B2K52plgjaYTml;86466F57-5E7E-438C-8E94-56FCEE89B9DE&quot;&gt;16 cards&lt;/a&gt; I was &amp;#39;saving&amp;#39; in a little box along with my still-current bank cards. Why? My old UK drivers licence. PADI diver cards from 2003. Expired Qantas frequent flyer cards. To what end?&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not like I considered them mementos. I didn&amp;#39;t get them out and spread them lovingly on the table. They were just there, waiting to be thrown away. So I did, along with anything else that I don&amp;#39;t &lt;strong&gt;actively use&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;tending-towards-minimalism&quot;&gt;Tending towards minimalism&lt;/h3&gt;
&lt;p&gt;On a scale of minimalist (1) to hoarder (10) I&amp;#39;d put us at a 4. In counting what I put back in the drawers -- not counting, say, individual pencils -- I have 112 items.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-inventory&quot; id=&quot;user-content-fnref-inventory&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; &lt;code&gt;@Skjolnir&lt;/code&gt; over on the Discord has 700 items in his life, &lt;em&gt;total&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;But I&amp;#39;m comfortable that everything in those drawers has a use. I questioned every item: do I actively use it? Would I pay to put it in storage?&lt;/p&gt;
&lt;p&gt;The result feels amazing. My (physical) &lt;a href=&quot;https://www.icloud.com/sharedalbum/#B2K5NI45MLCtxx;42A5B840-E364-4E43-9554-A6453178BA1B&quot;&gt;desktop&lt;/a&gt; now contains a laptop, a trackpad, a keyboard, and a mouse. &lt;a href=&quot;https://www.icloud.com/sharedalbum/#B2K5NI45MLCtxx&quot;&gt;Every drawer&lt;/a&gt; is neat and only contains what&amp;#39;s necessary. As disposable items age out, I won&amp;#39;t replace them. And I&amp;#39;ve got an entire drawer empty.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I definitely recommend this&lt;/strong&gt;. There is an undeniable mental clarity that comes from having less stuff around you. Less stuff means less decisions.&lt;/p&gt;
&lt;h2 id=&quot;decimalbusiness&quot;&gt;Decimal.Business&lt;/h2&gt;
&lt;p&gt;And so, back to work with a clear mind. We&amp;#39;re both 100% focused on the upcoming &lt;a href=&quot;https://business.johnnydecimal.com&quot;&gt;Decimal.Business&lt;/a&gt; system. Christmas means nothing to either of us so, other than allowing ourselves a watching of &lt;em&gt;Die Hard with a Vengeance&lt;/em&gt; and a bottle of something bubbly on the 25th, we&amp;#39;ll be working hard to get it out as soon as possible.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-die-hard&quot; id=&quot;user-content-fnref-die-hard&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;For those of you who&amp;#39;ve pre-purchased, you have our deepest gratitude. We&amp;#39;ll have it with you as soon as humanly possible.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-wallet&quot;&gt;
&lt;p&gt;In daily life, I don&amp;#39;t carry a separate wallet. Apple Wallet (the software) handles my bank cards, and Apple Wallet (the &lt;a href=&quot;https://www.apple.com/au/shop/product/MA7A4FE/A/iphone-finewoven-wallet-with-magsafe-blackberry&quot;&gt;magnetic one&lt;/a&gt; that sticks to the back of your phone) holds my drivers licence&lt;sup&gt;&lt;a href=&quot;#user-content-fn-licence&quot; id=&quot;user-content-fnref-licence&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt; and a couple of business cards. But when travelling I take a couple of extra cards -- health insurance, medicare, credit card -- so these go in my tiny Bellroy wallet which typically stays in my bag. &lt;a href=&quot;#user-content-fnref-wallet&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-inventory&quot;&gt;
&lt;p&gt;Now tracked in a spreadsheet at &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;&lt;code&gt;12.14 Inventory&lt;/code&gt;&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-inventory&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-die-hard&quot;&gt;
&lt;p&gt;We feel like we&amp;#39;ve seen the first two movies recently enough. &lt;a href=&quot;#user-content-fnref-die-hard&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-licence&quot;&gt;
&lt;p&gt;Which I hate having to carry around -- I don&amp;#39;t drive, on a typical day -- but I&amp;#39;ve been burned one too many times by not having ID on me. As soon as the ACT introduces digital licences, I&amp;#39;ll stop carrying the magnetic wallet. &lt;a href=&quot;#user-content-fnref-licence&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0094 Don&apos;t type the date by hand</title><link>https://johnnydecimal.com/22.00.0094/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0094/</guid><description>I use the yyyy-mm-dd date _all the time_, but I never actually type it out. Here&apos;s how to have your computer generate it for you, and some other simple how-to-be-better-at-computering tips.</description><pubDate>Wed, 20 Nov 2024 23:47:28 GMT</pubDate><content:encoded>&lt;h1 id=&quot;dont-type-the-date-by-hand&quot;&gt;Don&amp;#39;t type the date by hand&lt;/h1&gt;
&lt;p&gt;On Discord, &lt;a href=&quot;https://discord.com/channels/822215537589354566/1304673537486884887/1308718684486766683&quot;&gt;Jade asked&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Theres gotta be a better way of naming Amex (and other credit card statements) than this surely? I always struggle to remember the dates, but this just feels overwhelming, I usually just go with the statement date for naming credit card statements. Amex Ending 12345 - 2024 10 10 to 2024 11 09 - Statement 2024 11 09 - Due 2024 12 05&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There are many situations where I recommend starting a filename (or folder) with the date. It works really well for almost any time-based document. Amex statements fall squarely in to that bucket.&lt;/p&gt;
&lt;h2 id=&quot;which-date&quot;&gt;Which date?&lt;/h2&gt;
&lt;p&gt;For the record, this is the &lt;a href=&quot;https://en.wikipedia.org/wiki/ISO_8601&quot;&gt;ISO 8601&lt;/a&gt; date standard. Once you get in to date formatting&lt;sup&gt;&lt;a href=&quot;#user-content-fn-you-will&quot; id=&quot;user-content-fnref-you-will&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; you&amp;#39;ll see that around, so it&amp;#39;s good to know what it is.&lt;/p&gt;
&lt;p&gt;That standard defines a bunch of formats, but the one we&amp;#39;re interested in is the simple &lt;code&gt;yyyy-mm-dd&lt;/code&gt;, i.e. &lt;code&gt;2024-11-21&lt;/code&gt;. It&amp;#39;s the only sensible format for your computer dates as it sorts chronologically. Use whatever other &lt;a href=&quot;https://duckduckgo.com/?q=american+date+format+is+dumb&amp;t=osx&amp;ia=web&quot;&gt;weird crap&lt;/a&gt; you want in your personal life.&lt;/p&gt;
&lt;p&gt;The problem with this date is that it&amp;#39;s a real pain to type out by hand. And first you have to remember the date! &lt;em&gt;Bo-ring&lt;/em&gt;. Fortunately computers are good at a) knowing the date and b) generating text.&lt;/p&gt;
&lt;h2 id=&quot;introducing-raycast&quot;&gt;Introducing Raycast&lt;/h2&gt;
&lt;p&gt;You&amp;#39;re gonna need an app. There are many that do this. The venerable &lt;a href=&quot;https://textexpander.com&quot;&gt;TextExpander&lt;/a&gt; might have been the first, but we&amp;#39;re going to use a reasonably new app: &lt;a href=&quot;https://www.raycast.com&quot;&gt;Raycast&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Raycast is a beast. It does &lt;em&gt;so much&lt;/em&gt;. But don&amp;#39;t let that put you off -- we can start to use it for the stuff we need, and over time you can explore the rest of its features.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s free. There&amp;#39;s a pro plan, but you don&amp;#39;t need it. It&amp;#39;s currently Mac only, but they&amp;#39;re working on a Windows version.&lt;/p&gt;
&lt;p&gt;So, install it. You can test it&amp;#39;s working by pressing &lt;code&gt;Option-Space&lt;/code&gt;. A little window should appear in the middle of your screen.&lt;/p&gt;
&lt;p&gt;I won&amp;#39;t go over any other Raycast features just now. The &lt;a href=&quot;https://manual.raycast.com&quot;&gt;manual is here&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;snippets&quot;&gt;Snippets&lt;/h1&gt;
&lt;p&gt;We&amp;#39;re going to create a &amp;#39;&lt;a href=&quot;https://dictionary.cambridge.org/dictionary/english/snippet&quot;&gt;snippet&lt;/a&gt;&amp;#39;. How this works is that you type some sort of shortcut, and Raycast converts it to something else.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s just like the feature on your iPhone that detects if you typed &lt;code&gt;teh&lt;/code&gt; and corrects it to &lt;code&gt;the&lt;/code&gt;. Or the one that corrects &lt;code&gt;█uck&lt;/code&gt; to &lt;code&gt;duck&lt;/code&gt;. You know.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a trick here, and it&amp;#39;s in naming your snippets. You want to guarantee that whatever you type will &lt;strong&gt;never ever&lt;/strong&gt; occur in normal daily typing. Because if your snippet trigger was &lt;code&gt;al&lt;/code&gt;, every time you type that out Raycast will replace it for you.&lt;/p&gt;
&lt;p&gt;So now instead of &lt;code&gt;Johnny.Decimal&lt;/code&gt; you&amp;#39;ll get &lt;code&gt;Johnny.Decim2024-11-21&lt;/code&gt;. Not ideal.&lt;/p&gt;
&lt;h2 id=&quot;i-recommend&quot;&gt;I recommend &lt;code&gt;;;&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;I think this came from Merlin Mann &lt;em&gt;waaaay&lt;/em&gt; back in the &lt;a href=&quot;https://www.43folders.com/2005/09/17/textpander-an-end-at-last-to-email-from-melrin&quot;&gt;43 folders&lt;/a&gt; days (2005!).&lt;sup&gt;&lt;a href=&quot;#user-content-fn-archive&quot; id=&quot;user-content-fnref-archive&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; If you start each of your snippets with two semicolons, you guarantee that you&amp;#39;ll never trigger them by accident.&lt;/p&gt;
&lt;p&gt;If you touch-type&lt;sup&gt;&lt;a href=&quot;#user-content-fn-learn&quot; id=&quot;user-content-fnref-learn&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; they&amp;#39;re under your right pinkie. So you mash &lt;code&gt;;;&lt;/code&gt; and then the name of your snippet and &lt;em&gt;boom&lt;/em&gt; Raycast steps in and replaces it with something else.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s drop a little video here in case you&amp;#39;re wondering what I&amp;#39;m on about.&lt;/p&gt;
&lt;video class=&quot;video-light&quot; autoplay=&quot;&quot; loop=&quot;&quot; muted=&quot;&quot; playsinline=&quot;&quot;&gt;&lt;source src=&quot;/img/v6/22.00.0094-Raycast_TextEdit--0_original-light-1748x482.mp4&quot; type=&quot;video/mp4&quot;&gt;&lt;p&gt;Your browser does not support the video tag.&lt;/p&gt;&lt;/video&gt;
&lt;video class=&quot;video-dark&quot; autoplay=&quot;&quot; loop=&quot;&quot; muted=&quot;&quot; playsinline=&quot;&quot;&gt;&lt;source src=&quot;/img/v6/22.00.0094-Raycast_TextEdit--0_original-dark-1748x482.mp4&quot; type=&quot;video/mp4&quot;&gt;&lt;p&gt;Your browser does not support the video tag.&lt;/p&gt;&lt;/video&gt;
&lt;h2 id=&quot;raycast-create-snippet&quot;&gt;Raycast: Create Snippet&lt;/h2&gt;
&lt;p&gt;Cool eh! Let&amp;#39;s set it up.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Activate Raycast with &lt;code&gt;⌥ Space&lt;/code&gt;. Type &lt;code&gt;create snippet&lt;/code&gt; to find that command. Press &lt;code&gt;return&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;Name&lt;/code&gt; helps you identify it in the future.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-search-snippets&quot; id=&quot;user-content-fnref-search-snippets&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt; Call it &lt;code&gt;YYYY-MM-DD&lt;/code&gt; or whatever else you like.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;Snippet&lt;/code&gt; is what will appear when this is activated. Paste this in: &lt;code&gt;{date format=&amp;quot;yyyy-MM-dd&amp;quot;}&lt;/code&gt;. This is a little bit of code that Raycast understands. Include the curly brackets.&lt;/li&gt;
&lt;li&gt;Scroll the window to reveal &lt;code&gt;Keyword&lt;/code&gt;. This is what &lt;em&gt;you&lt;/em&gt; type to activate this snippet. I&amp;#39;d recommend &lt;code&gt;;;date&lt;/code&gt; for this one.&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;⌘ return&lt;/code&gt; to save it.&lt;/li&gt;
&lt;li&gt;Try it out!&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;problem-its-todays-date&quot;&gt;Problem: it&amp;#39;s today&amp;#39;s date&lt;/h2&gt;
&lt;p&gt;As Jade is renaming lots of old files, this isn&amp;#39;t &lt;em&gt;perfect&lt;/em&gt;. But honestly I find even having the skeleton of a date format that I can then edit is more useful than starting from nothing.&lt;/p&gt;
&lt;h3 id=&quot;tip-use-option-arrows-to-move-around&quot;&gt;Tip: use &lt;code&gt;option-arrows&lt;/code&gt; to move around&lt;/h3&gt;
&lt;p&gt;Another small computer power-user tip: hold &lt;code&gt;option&lt;/code&gt; (&lt;code&gt;alt&lt;/code&gt; on Windows) and use the left/right arrows. This jumps your cursor a word at a time, and it stops at the breaks between the numbers in the date.&lt;/p&gt;
&lt;p&gt;This will speed up your editing.&lt;/p&gt;
&lt;h2 id=&quot;why-stop-there&quot;&gt;Why stop there?&lt;/h2&gt;
&lt;p&gt;In Jade&amp;#39;s specific case, where she wants &lt;code&gt;yyyy-mm-mm Amex 12345&lt;/code&gt;, there&amp;#39;s nothing stopping you creating another custom snippet for that whole piece of text.&lt;/p&gt;
&lt;p&gt;Repeat the process but now the &lt;code&gt;Snippet&lt;/code&gt; should read &lt;code&gt;{date format=&amp;quot;yyyy-MM-dd&amp;quot;} Amex 12345&lt;/code&gt;. Maybe give that one the keyword &lt;code&gt;;;ax1&lt;/code&gt;? Whatever makes sense to you.&lt;/p&gt;
&lt;p&gt;We can do so much more with Raycast, but that&amp;#39;s a good start. Let us know how that works for you, Jade!&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-you-will&quot;&gt;
&lt;p&gt;You will. Just wait. &lt;a href=&quot;#user-content-fnref-you-will&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-archive&quot;&gt;
&lt;p&gt;&lt;a href=&quot;https://web.archive.org/web/20051227100557/http://www.43folders.com/2005/09/17/textpander-an-end-at-last-to-email-from-melrin/&quot;&gt;Archive link&lt;/a&gt; in case that&amp;#39;s down. &lt;a href=&quot;#user-content-fnref-archive&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-learn&quot;&gt;
&lt;p&gt;And if you don&amp;#39;t, &lt;a href=&quot;https://keybr.com&quot;&gt;&lt;em&gt;learn&lt;/em&gt;&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-learn&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-search-snippets&quot;&gt;
&lt;p&gt;Raycast command &lt;code&gt;search snippets&lt;/code&gt; will list them. &lt;a href=&quot;#user-content-fnref-search-snippets&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0093 Is &apos;private community&apos; an oxymoron?</title><link>https://johnnydecimal.com/22.00.0093/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0093/</guid><description>I don&apos;t like the idea of a &apos;private community&apos; and I&apos;m disabling it.</description><pubDate>Thu, 14 Nov 2024 21:29:11 GMT</pubDate><content:encoded>&lt;h1 id=&quot;is-private-community-an-oxymoron&quot;&gt;Is &amp;#39;private community&amp;#39; an oxymoron?&lt;/h1&gt;
&lt;p&gt;In figuring out what the &lt;a href=&quot;https://decimal.business&quot;&gt;Decimal.Business&lt;/a&gt; membership should look like, one of the &amp;#39;obvious&amp;#39; features was the &lt;em&gt;private community&lt;/em&gt;. After all, &lt;a href=&quot;https://www.google.com/search?q=%22access+to+the+private+community%22&quot;&gt;everyone does it&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But it never sat right with me. It just feels wrong. It&amp;#39;s not what Johnny.Decimal is; fundamentally not who &lt;em&gt;I&lt;/em&gt; am. A week later and now I think it&amp;#39;s really dumb. &lt;strong&gt;I made a bad decision, so I&amp;#39;m correcting it&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;when-you-cant-connect-two-people-you-dont-have-community&quot;&gt;When you can&amp;#39;t connect two people, you don&amp;#39;t have &amp;#39;community&amp;#39;&lt;/h3&gt;
&lt;p&gt;Earlier today I was chatting to someone over in private-business-world. And I wanted to connect them to someone in not-private-business world, because I thought they had a thing in common and they&amp;#39;d like to chat.&lt;/p&gt;
&lt;p&gt;But when one of those people is behind a closed door, you can&amp;#39;t do that. Discord even lets you know, by discouraging you from &lt;code&gt;@mention&lt;/code&gt;ing someone who doesn&amp;#39;t have access to the channel you&amp;#39;re in. I thought this was a bug, until I realised what was going on.&lt;/p&gt;
&lt;p&gt;At that instant I knew it had to end.&lt;/p&gt;
&lt;h2 id=&quot;the-intent&quot;&gt;The intent&lt;/h2&gt;
&lt;p&gt;There was some logic in the original intent: which is that if you&amp;#39;re not in business, you probably don&amp;#39;t care about those conversations.&lt;/p&gt;
&lt;p&gt;But this can be achieved in myriad other ways. Simplest of which is to mute those channels. So if that&amp;#39;s you, here&amp;#39;s how you do it.&lt;/p&gt;
&lt;h3 id=&quot;discord&quot;&gt;Discord&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Right-click the &lt;code&gt;DECIMAL.BUSINESS&lt;/code&gt; folder in the left pane.&lt;/li&gt;
&lt;li&gt;Select &lt;code&gt;Mute Category&lt;/code&gt; &amp;gt; &lt;code&gt;Until I turn it back on&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;forum&quot;&gt;Forum&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Select a category from the left pane.&lt;/li&gt;
&lt;li&gt;At the top right of the right pane, click the bell.&lt;/li&gt;
&lt;li&gt;Select &lt;code&gt;Muted&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&quot;business-is-still-business&quot;&gt;Business is still business&lt;/h2&gt;
&lt;p&gt;The other intent was to keep business stuff separate, so that it&amp;#39;s easier to refer back to later. The channels don&amp;#39;t need to be private to achieve this objective.&lt;/p&gt;
&lt;h3 id=&quot;if-its-not-business-ill-steer-it-away&quot;&gt;If it&amp;#39;s not business, I&amp;#39;ll steer it away&lt;/h3&gt;
&lt;p&gt;This is less relevant in Discord, where the chat nature of the platform really does see conversations just flowing by. I think worrying too much about which channel they&amp;#39;re in is probably futile.&lt;/p&gt;
&lt;p&gt;On the forum, which is more persistent, this is more important. Fortunately it&amp;#39;s trivial to move an existing thread to another category, so if something starts in business but shouldn&amp;#39;t really live there long-term, I&amp;#39;ll just move it out.&lt;/p&gt;
&lt;h2 id=&quot;feeling-robbed&quot;&gt;Feeling robbed?&lt;/h2&gt;
&lt;p&gt;If &amp;#39;the private community&amp;#39; was the primary reason you signed up, please accept my apologies and &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hit me up&lt;/a&gt; for a refund.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve updated the website to reflect this change.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0092 A brilliant use for ChatGPT</title><link>https://johnnydecimal.com/22.00.0092/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0092/</guid><description>In writing ops manuals for Decimal.Business, I might have come up with a genius use for ChatGPT.</description><pubDate>Thu, 14 Nov 2024 06:02:08 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-brilliant-use-for-chatgpt&quot;&gt;A brilliant use for ChatGPT&lt;/h1&gt;
&lt;p&gt;...if I do say so myself.&lt;/p&gt;
&lt;p&gt;Since &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/22.00.0041/&quot;&gt;how I feel about AI&lt;/a&gt;&amp;#39;, I&amp;#39;ve been using ChatGPT a whole bunch. I&amp;#39;m on the paid plan at US$20/month.&lt;/p&gt;
&lt;p&gt;A few quick observations. I might say more in a later post.&lt;/p&gt;
&lt;h2 id=&quot;ive-mostly-stopped-searching-the-web&quot;&gt;I&amp;#39;ve (mostly) stopped searching the web&lt;/h2&gt;
&lt;p&gt;Unless I know exactly what I want and just need a link to it, my default search is now ChatGPT. (Which needs a better name please. The Claude people got that right. I&amp;#39;m gonna call it Chris.)&lt;/p&gt;
&lt;p&gt;I&amp;#39;d guess 80% of what was search, is now not. This is where what I&amp;#39;m looking for isn&amp;#39;t &lt;em&gt;a particular page&lt;/em&gt;, it&amp;#39;s &lt;em&gt;an answer to a question&lt;/em&gt; or &lt;em&gt;having something explained&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;What I want in these situations is some prose that explains, like a person would if they were talking to me, the knowledge that I was seeking. This is exactly what you get from Chris.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Note: I know GPTs &amp;#39;hallucinate&amp;#39; and tell you stuff that isn&amp;#39;t true. I find that exceedingly rare and if you&amp;#39;re using it as an excuse not to like these things you&amp;#39;re doing yourself a disservice.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Another benefit -- and, as someone with a visually distinct website I realise the hypocrisy here -- is that &lt;strong&gt;every result looks the same&lt;/strong&gt;. So not only have I eliminated the gamble that is clicking a link from a search engine, I&amp;#39;ve eliminated the mental overhead of visually parsing the page that opens.&lt;/p&gt;
&lt;p&gt;Every page that Chris serves looks the same: black text on a white background. Simple numbered or bullet lists. And no images! God help me if I see another pointless Unsplash image above the fold.&lt;/p&gt;
&lt;p&gt;So the moment the words appear, they&amp;#39;re in my brain. This alone is transformational. (I should probably try enabling &amp;#39;reader mode&amp;#39; on every site I visit. I know that&amp;#39;s a thing you can do.)&lt;/p&gt;
&lt;h2 id=&quot;on-to-my-brilliant-idea&quot;&gt;On to my brilliant idea&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m writing the first operations manual for &lt;a href=&quot;https://decimal.business&quot;&gt;Decimal.Business&lt;/a&gt;. It&amp;#39;s the process by which you receive, store, and finally reconcile receipts for purchases.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s an extract. The block is part of a larger process diagram.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0092-ops_manual--0_original-light-cx-1258x810.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0092-ops_manual--0_original-dark-cx-1258x810.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0092-ops_manual--0_original-light-cx-1258x810.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0092-ops_manual--0_original-dark-cx-1258x810.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;There&apos;s an orange square (copied from a process flow diagram) labelled &apos;you receive an invoice&apos;, then the text: In relation to E1, you might receive an invoice to pay. Assuming you do not later receive confirmation of payment from the supplier, the invoice serves as the receipt for the remainder of this process. This is accepted practice: a tax invoice plus proof of payment, e.g. your bank statement, serves in place of a receipt. Note that for something to be considered a tax invoice it usually needs to contain certain information, such as the registered number and address of the entity that issued it. Check your local regulations. You may also receive remittance advice, or the invoice may be stamped &apos;paid&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0092-ops_manual--0_original-light-cx-1258x810.png&quot; width=&quot;629&quot; height=&quot;405&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;The trick is that link there: &lt;em&gt;check your local regulations&lt;/em&gt;. How can I make that nice and easy for you, wherever you are?&lt;/p&gt;
&lt;p&gt;Well, why don&amp;#39;t you &lt;a href=&quot;https://chatgpt.com/share/67359124-06d8-800b-8f7d-a034d187ffbb&quot;&gt;check your local regulations&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;B-)&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0091 &apos;Small business&apos; pre-launch open</title><link>https://johnnydecimal.com/22.00.0091/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0091/</guid><description>The Johnny.Decimal Small Business System is available for pre-launch sale.</description><pubDate>Mon, 11 Nov 2024 02:09:36 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-pre-launch-open&quot;&gt;&amp;#39;Small business&amp;#39; pre-launch open&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ve sent a bunch of emails &amp;amp; updates the last 18 hours, so rather than writing another, I&amp;#39;ll just paste the latest &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;Quarterly&lt;/a&gt; here.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Hi everyone. This episode of The Quarterly is a touch early, for a couple of reasons.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s get the exciting news out of the way first: we just opened up the new Johnny.Decimal Small Business System for pre-launch.&lt;/p&gt;
&lt;p&gt;In a nutshell, it&amp;#39;s the &amp;#39;life admin&amp;#39; pack, but for small business. But so much more: where life admin is a static pack -- apart from the odd update here and there -- the business system will be a living thing.&lt;/p&gt;
&lt;p&gt;This has been something that I&amp;#39;ve wanted to do for a decade. Literally: I found the first note that I made, &lt;code&gt;25.15 Business in a box&lt;/code&gt;, dated 9th December 2014. It will be so much more than just the Johnny.Decimal structure and JDex: it&amp;#39;ll be your operations manuals, your community, and whatever else you need it to be.&lt;/p&gt;
&lt;p&gt;Me and Lucy are planning on working on this full-time for the next couple of years. I&amp;#39;ve built a mini-site for it with all the details. Check it out at &lt;a href=&quot;https://business.johnnydecimal.com&quot;&gt;https://business.johnnydecimal.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You&amp;#39;ve no idea how much we appreciate those of you who put your trust in us by giving us money before a thing even exists. It &lt;em&gt;really&lt;/em&gt; helps our small business, and puts a bit of a rocket up us to get it finished, and make it as good as it can be.&lt;/p&gt;
&lt;p&gt;So, as always, thank you from the bottom of our hearts for your support.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;It&amp;#39;s interesting, looking back on the last 18 months since I quit my job. You think, this small business idea: it&amp;#39;s &lt;em&gt;so obvious&lt;/em&gt;, why didn&amp;#39;t we do it at the start?&lt;/p&gt;
&lt;p&gt;I really believe that these things need to be allowed the time to evolve. And I&amp;#39;m so glad we did &amp;#39;life admin&amp;#39; first, because that taught us so much.&lt;/p&gt;
&lt;p&gt;For example: the business pack won&amp;#39;t be a static set of folders and files. &lt;a href=&quot;https://forum.johnnydecimal.com/t/quick-start-life-admin-support-topic/1660/104&quot;&gt;Turns out&lt;/a&gt; that updating a bunch of folders and files is a complex nightmare!&lt;/p&gt;
&lt;p&gt;So this pack will be &lt;em&gt;generated&lt;/em&gt; by a little helper app. That way you can choose your options on-the-fly. Want emoji? Tick a box. Want Bear-style JDex files or Obsidian-style? Choose that option.&lt;/p&gt;
&lt;p&gt;For the nerds here, I&amp;#39;m learning Rust to do this properly. I dipped my toe in the waters of Electron and &lt;em&gt;hoo boy&lt;/em&gt; did I not enjoy that. (Although for speed I may do a quick version using Deno, as I already know JS/TS.)&lt;/p&gt;
&lt;p&gt;So this is step 1 towards a Johnny.Decimal app to help you manage your system. Rust + Tauri, completely cross-platform.&lt;/p&gt;
&lt;p&gt;And this is why the business pack is taking longer: it&amp;#39;ll just be a much bigger thing. It&amp;#39;ll be worth it.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Reason #2 for an early newsletter: on 1st December I&amp;#39;ll be in Sydney with my entire family, who are flying over from the UK for 3 weeks. Six of them, ranging from 9- to 78-years-old.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m meeting them in Sydney and we&amp;#39;re spending a week there. Then we get the train to Canberra, where I&amp;#39;m really looking forward to showing my mam the beautiful gardens. Then as a peace offering to the 9- and 16-year-olds, for whom Canberra will be &lt;em&gt;bo-ring&lt;/em&gt;, we&amp;#39;re heading to the Gold Coast for a week.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s been over a year since I&amp;#39;ve seen them. I can&amp;#39;t wait.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll still be online, but probably just for an hour or so in the morning to keep on top of stuff.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Small apology for not really keeping up with the YouTube channel: there just isn&amp;#39;t time. A typical video takes about 2 days of my time and then about the same for Lucy. Planning, shooting, editing, uploading. We just have to make priority calls and for now, the small business system is it.&lt;/p&gt;
&lt;p&gt;Okay, wish me luck ferrying 6 British people around Australia! It&amp;#39;s going to be one of those holidays where I need a holiday at the end.&lt;/p&gt;
&lt;p&gt;Love from Canberra,&lt;br&gt;
x johnny, lucy, &amp;amp; the chickens&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0090 &apos;Small business&apos; update 04</title><link>https://johnnydecimal.com/22.00.0090/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0090/</guid><description>Designing a structure for your back- and front-office operations.</description><pubDate>Sun, 03 Nov 2024 00:10:06 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-update-04&quot;&gt;&amp;#39;Small business&amp;#39; update 04&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This was originally sent &lt;a href=&quot;https://johnnydecimal.com/qssb/coming-soon/#register-now&quot;&gt;as an email&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This week we&amp;#39;ve been spending a lot of time thinking about some of the patterns inside category &lt;code&gt;12 Where I trade &amp;amp; how I get around&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&amp;#39;Where I trade…&amp;#39; includes all of the things at those premises, and the management of these things. We&amp;#39;ve split them in to &amp;#39;back office&amp;#39; (or &amp;#39;back of house&amp;#39; if you like) and &amp;#39;front office&amp;#39;. In considering all of the types of things that you might have there, here&amp;#39;s the structure we&amp;#39;ve got so far.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;12.20 ■ Back office equipment &amp;amp; operations ⛔️
12.21 Keep the basics running
12.22 Keep us safe
12.23 Keep it nice for us
12.24 Keep the back office well equipped
12.25 Keep us fed and watered
12.26 Keep us sending &amp;amp; receiving
12.30 ■ Front office equipment &amp;amp; operations 🛎️
12.31 Keep the basics running
12.32 Keep our customers safe
12.33 Keep it nice for our customers
12.34 Keep the front office well equipped
12.35 Keep our customers fed and watered
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;By now you shouldn&amp;#39;t be surprised to see patterns emerging. Patterns help your brain, and patterns are surprisingly useful when you&amp;#39;re designing a system because they reveal potential gaps.&lt;/p&gt;
&lt;p&gt;And you&amp;#39;ll notice that we haven&amp;#39;t used boring words. We &lt;em&gt;started&lt;/em&gt; with boring words: &amp;#39;office equipment&amp;#39; and so on. Turns out, making them less boring has a number of benefits.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;They&amp;#39;re less boring! (adj. &lt;em&gt;not interesting; tedious&lt;/em&gt;.)&lt;/li&gt;
&lt;li&gt;They&amp;#39;re more memorable.&lt;/li&gt;
&lt;li&gt;They encompass more when you express them as &lt;em&gt;intent&lt;/em&gt; vs. &lt;em&gt;content&lt;/em&gt;. We can&amp;#39;t possibly know what all of you might put in here; but if we can figure out how each of you go about your day, we can hopefully provide a place for (almost) everything.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Let&amp;#39;s put a quick example in each of these things. At JDHQ we&amp;#39;re using a hairdressing salon as our working example because it seems to provide a nice spread of services, and conveniently Lucy had a cut &amp;amp; colour earlier this week so she had a good look around and asked a bunch of questions.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;12.20 ■ Back office equipment &amp;amp; operations ⛔️
      - (This is a header.)
12.21 Keep the basics running
      - Electricity supply to the premises.
12.22 Keep us safe
      - The office security system.
      - This has an operations manual: how do you open up at the start of the day and lock up at the end?
12.23 Keep it nice for us
      - Buying a comfy chair for the staff area.
12.24 Keep the back office well equipped
      - From staplers to photocopiers.
12.25 Keep us fed and watered
      - Getting a fruit box delivered.
12.26 Keep us sending &amp;amp; receiving
      - Parcels and post.
12.30 ■ Front office equipment &amp;amp; operations 🛎️
      - (This is a header.)
12.31 Keep the basics running
      - You might have utility-like services that are front-of-house only. e.g. gas bottles for portable heaters at the front of a cafe.
12.32 Keep our customers safe
      - Security guards.
12.33 Keep it nice for our customers
      - Cleaning the toilets.
12.34 Keep the front office well equipped
      - Hairdryers and straighteners.
12.35 Keep our customers fed and watered
      - Buying a Nespresso machine &amp;amp; pods so you can give your customers a coffee while their colour sets.
      - This has an operations manual: how do you refill it? How often? Who does it? Where do you keep the pods? What happens when they run out?
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Each of these IDs is really broad and, again, this is by design. This system will theoretically include a place for everything: a design goal is that &lt;em&gt;we don&amp;#39;t want you to have to create your own IDs&lt;/em&gt;. As soon as you create your own thing you&amp;#39;re off the standard track; that standard gives us all a common language.&lt;/p&gt;
&lt;p&gt;So, within each of these IDs there&amp;#39;ll be a well-defined set of subfolders. All the same: as usual, consistency rules. Here they are. (*Noting that this is all a work-in-progress.)&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;10 Invoices, receipts, &amp;amp; warranties (buying it, or supplies for it)
20 Product manuals &amp;amp; training (how the vendor says to use it)
30 Operations manuals (how we use it)
40 Maintenance, repair, &amp;amp; service (keep it in working order)
50 Vendor &amp;amp; supplier details (who to contact)
60 Sale, cancellation, &amp;amp; disposal (it went away or ended)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The (words in parens) here might or might not make it to the finished product, but they&amp;#39;re certainly helping me with the design. See previous email re: telling a story.&lt;/p&gt;
&lt;p&gt;So now we have a place, for, say, explaining how to reset the office power breaker:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;10-19 Company administration
   12 Where I trade &amp;amp; how I get around
      12.20 ■ Back office equipment &amp;amp; operations ⛔️
      12.21 Keep the basics running
            30 Operations manuals
               Electricity - how to reset the mains power.txt
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And that little text file tells your staff where the breaker is and how to safely turn it back on, etc.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Designing a system that will theoretically be usable by any small business is, obviously, a challenge. I guess that&amp;#39;s why nobody&amp;#39;s ever done it. So I&amp;#39;d love to know what you think: do you read this and think, &amp;#39;yeah, I could use that&amp;#39;...&lt;/p&gt;
&lt;p&gt;...or do you think something different? Tell us! Now or never... ;-)&lt;/p&gt;
&lt;p&gt;j.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0089 First Principles podcast appearance</title><link>https://johnnydecimal.com/22.00.0089/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0089/</guid><description>Saagar Singh Sachdev was kind enough to have me as a guest on his &apos;First Principles&apos; podcast.</description><pubDate>Tue, 29 Oct 2024 04:38:43 GMT</pubDate><content:encoded>&lt;h1 id=&quot;first-principles-podcast-appearance&quot;&gt;First Principles podcast appearance&lt;/h1&gt;
&lt;p&gt;Saagar Singh Sachdev was kind enough to have me as a guest on his &amp;#39;First Principles&amp;#39; podcast. Here it is.&lt;/p&gt;
  </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0088 I don&apos;t do Black Friday</title><link>https://johnnydecimal.com/22.00.0088/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0088/</guid><description>You shouldn&apos;t expect any small business to support Black Friday. It&apos;s terrifying.</description><pubDate>Mon, 28 Oct 2024 04:39:28 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-dont-do-black-friday&quot;&gt;I don&amp;#39;t do Black Friday&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Black_Friday_(shopping)&quot;&gt;Black Friday&lt;/a&gt; &lt;span style=&quot;white-space: nowrap;&quot;&gt;--&lt;/span&gt; the American mega-discount shopping day &lt;span style=&quot;white-space: nowrap;&quot;&gt;--&lt;/span&gt; is terrible for small, independent businesses. You shouldn&amp;#39;t expect them to engage with it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I don&amp;#39;t. No discounts, no specials. No Black Friday&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;would-you-do-it&quot;&gt;Would you do it?&lt;/h3&gt;
&lt;p&gt;I know a successful creator of technology training videos who makes &lt;em&gt;half his annual income&lt;/em&gt; on Black Friday.&lt;/p&gt;
&lt;p&gt;Can you imagine turning up to work every day and not really knowing what your salary was?&lt;/p&gt;
&lt;p&gt;Then on one specific day at the end of November your boss judges your performance over 8 hours and that&amp;#39;s it: &lt;strong&gt;that&amp;#39;s 50% of your annual income?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Would you do it? I didn&amp;#39;t think so.&lt;/p&gt;
&lt;h3 id=&quot;people-dont-shop-the-month-before&quot;&gt;People don&amp;#39;t shop the month before&lt;/h3&gt;
&lt;p&gt;Why would you buy anything the month before you knew of a Black Friday deal? So that&amp;#39;s November, at least, gone.&lt;/p&gt;
&lt;p&gt;This small business can&amp;#39;t survive like that. Neither can any of the others. &lt;strong&gt;Don&amp;#39;t expect them to&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;honestly-my-stuff-is-pretty-cheap&quot;&gt;Honestly my stuff is pretty cheap&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s worth what it&amp;#39;s worth, and the price is great.&lt;/p&gt;
&lt;h3 id=&quot;im-not-even-american&quot;&gt;I&amp;#39;m not even American&lt;/h3&gt;
&lt;p&gt;So there&amp;#39;s that.&lt;/p&gt;
&lt;h3 id=&quot;dont-wait&quot;&gt;Don&amp;#39;t wait&lt;/h3&gt;
&lt;p&gt;If you want something from my store, just get it. You&amp;#39;re not losing out on a discount.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0087 &apos;Small business&apos; update 03</title><link>https://johnnydecimal.com/22.00.0087/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0087/</guid><description>So we&apos;ve covered the common stuff: now what about your product?</description><pubDate>Tue, 22 Oct 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-update-03&quot;&gt;&amp;#39;Small business&amp;#39; update 03&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This was originally sent &lt;a href=&quot;https://johnnydecimal.com/qssb/coming-soon/#register-now&quot;&gt;as an email&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In the previous messages [0], I spoke about area &lt;code&gt;10-19 Office administration&lt;/code&gt;. This is the common area that contains the stuff that most of us deal with: company, staff, premises, money, tech, and so on.&lt;/p&gt;
&lt;p&gt;[0]: &lt;a href=&quot;https://jdcm.al/qssb/01&quot;&gt;https://jdcm.al/qssb/01&lt;/a&gt; &amp;amp; &lt;a href=&quot;https://jdcm.al/qssb/02&quot;&gt;https://jdcm.al/qssb/02&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;But what about &lt;em&gt;your product&lt;/em&gt;? The thing that&amp;#39;s unique to you, that only you create?&lt;/p&gt;
&lt;p&gt;That&amp;#39;s going to be &lt;code&gt;20-29 Your product&lt;/code&gt;, and it should be obvious that there&amp;#39;s only so much guidance that we can give you here. Because neither me or Lucy are hairdressers or landscapers or forklift rental companies or...&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s the plan. For product, we&amp;#39;re going to guide you with patterns. A lot of Johnny.Decimal is basically patterns and behaviours. If you&amp;#39;ve been on the forum or Discord for any amount of time you&amp;#39;ll have seen people ask a question that stretches the edges of the system, and my answer is always:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make this thing your own, because&lt;/li&gt;
&lt;li&gt;I provide guidance, techniques, patterns, and behaviour: not hard rules.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Absolutism is one of my least favourite human traits. As soon as you start a sentence with the word &amp;#39;all&amp;#39;, you&amp;#39;ve lost me. (Unless you&amp;#39;re a mathematician.) Because we&amp;#39;re different: our brains, our lives, our situations, all different.&lt;/p&gt;
&lt;p&gt;But we can make life easier -- for ourselves and everyone else -- through common patterns. Here&amp;#39;s one: when you have one version of a document, and you want to update it, what do you do? There&amp;#39;s a bunch of ways to handle this.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Just update the document in-place. You&amp;#39;ve got backups&lt;sup&gt;*&lt;/sup&gt;; if you need to recall an older version, you can restore it.&lt;/li&gt;
&lt;li&gt;Copy it, leaving the existing version and the seven other older versions where they are, calling the new version &lt;code&gt;Document NEW COPY version (008) Jim&amp;#39;s copy.doc&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Copy it, appending the current date to the filename in the format &lt;code&gt;yyyy-mm-dd&lt;/code&gt;.
&lt;ul&gt;
&lt;li&gt;Move this copy to a subfolder called &lt;code&gt;archive&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Ensure that only one version remains in the master folder.&lt;/li&gt;
&lt;li&gt;Work on this version.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;(&lt;sup&gt;*&lt;/sup&gt;You have backups, right? Small business will make sure that you do -- it&amp;#39;ll be one of the core operations manuals, and we&amp;#39;ll hold you to account.)&lt;/p&gt;
&lt;p&gt;The first method is what we should probably do. But humans seem to like to have a readily-available copy rather than relying on version control and backups. So we need to be pragmatic.&lt;/p&gt;
&lt;p&gt;The second will be painfully familiar to many of you. Let&amp;#39;s call this the &amp;#39;I work in a large company&amp;#39; model.&lt;/p&gt;
&lt;p&gt;The third is simple, effective, and takes no time. It&amp;#39;s just a behaviour: a simple set of rules that, if followed, make life easier and less stressful. So why don&amp;#39;t we ever do it?!&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Just because we don&amp;#39;t know the product patterns for hairdressers and landscapers &lt;em&gt;now&lt;/em&gt; doesn&amp;#39;t mean that we&amp;#39;ll never know them. Because, over time, I hope this community will work together to create them.&lt;/p&gt;
&lt;p&gt;I truly believe that community will be what makes this successful. Two people work at JDHQ and we&amp;#39;ve already established that one of them is no hairdresser. (I do cut my own hair but I&amp;#39;m not sure that counts.)&lt;/p&gt;
&lt;p&gt;But once we&amp;#39;ve got a few hairdressers, our job becomes to discover and codify knowledge. And so by the time the 10th joins, we &lt;em&gt;do&lt;/em&gt; have an idea of how that product area should look. And now we&amp;#39;ve got 10 hairdressers who can all connect and ask each other for help, based on a common language.&lt;/p&gt;
&lt;p&gt;Imagine that we&amp;#39;ve also filled out the company admin area, being specific with examples that relate to hairdressing. So when you&amp;#39;re setting up your system, you can choose the hairdressing template and it&amp;#39;ll be even more helpful from the start.&lt;/p&gt;
&lt;p&gt;(Nerd side-note: I realised that this might be a cool use for that &lt;code&gt;decimal.business&lt;/code&gt; domain I bought. What if &lt;code&gt;salon.decimal.business&lt;/code&gt; took you straight to the customised version...)&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;All of which is to say that we&amp;#39;re full steam ahead here, and it&amp;#39;s progressing very nicely. &lt;strong&gt;However&lt;/strong&gt;: we&amp;#39;ve realised that we&amp;#39;re not going to have this out by our initial end-November deadline. As a reminder, that&amp;#39;s when my family lands from the UK. I&amp;#39;ll be working minimal hours for 3 weeks.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not our style to release something half-baked. I mean, &lt;em&gt;I&amp;#39;d&lt;/em&gt; take your money, but Lucy wouldn&amp;#39;t be able to sleep at night. ;-) But seriously, while there&amp;#39;ll always be more to improve, we want this pack to be a solid v1.0 when it&amp;#39;s released. I&amp;#39;ll keep you informed.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Tell us what you do! We&amp;#39;ve got a bunch of example businesses that we&amp;#39;re designing for, but it helps us enormously when you mail us. Screenshots of your existing folder structure are pure gold -- it really lets us see inside your business brain. Lucy pores over them and they directly influence what we&amp;#39;re building.&lt;/p&gt;
&lt;p&gt;j.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0085 &apos;Small business&apos; update 02</title><link>https://johnnydecimal.com/22.00.0085/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0085/</guid><description>How we&apos;re trying to design a business system that feels human.</description><pubDate>Wed, 16 Oct 2024 05:24:42 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-update-02&quot;&gt;&amp;#39;Small business&amp;#39; update 02&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This was originally sent as an email.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This week Lucy has been putting some proper shape to the first &amp;#39;small business&amp;#39; category, &lt;code&gt;11 The business &amp;amp; its people&lt;/code&gt;. And I&amp;#39;ve made a good start on the helper app that will create your system for you.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Before we started working on this pack, we talked about using the &amp;#39;life admin&amp;#39; pack as inspiration. You can draw a line from your personal life to a business that mostly makes sense.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;11 Me &amp;amp; other living things → The business &amp;amp; its people&lt;/li&gt;
&lt;li&gt;12 Where I live &amp;amp; how I get around → Where you trade &amp;amp; how you get around&lt;/li&gt;
&lt;li&gt;13 Money → no change&lt;/li&gt;
&lt;li&gt;14 Technology → no change&lt;/li&gt;
&lt;li&gt;15 Travel, events, &amp;amp; fun → perhaps becomes marketing &amp;amp; PR? TBC&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We really tried to humanise &amp;#39;life admin&amp;#39;. Organising your files is already a boring chore -- I don&amp;#39;t need to make it more tedious. And we found that by telling ourselves a story, and explaining that story in the pack, things became more obvious in our minds.&lt;/p&gt;
&lt;p&gt;And unless you&amp;#39;ve really rationalised it, chewed it over in your mind, changed your mind a few times, thought you were crazy, realised you weren&amp;#39;t, yes, no ... it takes a while for this story to find its feet. For the narrative to emerge.&lt;/p&gt;
&lt;p&gt;When it does, the story coalesces, and the structure really starts to make sense. It&amp;#39;s like it becomes tangible.&lt;/p&gt;
&lt;p&gt;Earlier today we had a discussion on the nuance of your &lt;code&gt;11.12 Licences &amp;amp; permits&lt;/code&gt;. In the context of a business, what licences does &lt;em&gt;it&lt;/em&gt; hold, which are held by its employees, and what&amp;#39;s the difference (if any)?&lt;/p&gt;
&lt;p&gt;This pack is a challenge to produce because everywhere you look, &amp;#39;it depends&amp;#39;. You can very often find a counter-example.&lt;/p&gt;
&lt;p&gt;Say you&amp;#39;re a freelance forklift driver. In order to be that, you MUST have a forklift licence: therefore it lives in &lt;code&gt;11.12&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;But a few years on and you&amp;#39;ve hired people to work for you. Now you win business and manage accounts. And so &lt;em&gt;the staff&lt;/em&gt; hold forklift licences, and those licences live somewhere alongside the staff members. They&amp;#39;re no longer core to the business: because if one of those people loses their licence, your business doesn&amp;#39;t stop trading. You just employ someone else.&lt;/p&gt;
&lt;p&gt;Now, though, you rent a warehouse, and to run forklifts from there it MUST comply with city ordnance §23.6.(b).iv. So now &lt;em&gt;that&amp;#39;s&lt;/em&gt; the thing that needs to be in &lt;code&gt;11.12&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;We think the best way to explain how we feel about this ID is this: there&amp;#39;s a knock on the door. It&amp;#39;s the city&amp;#39;s inspector. The first thing they want to see is the licences &amp;amp; permits that your business requires to trade. After that, they&amp;#39;ll continue their inspection: but until they&amp;#39;ve checked the basics, there&amp;#39;s no point going on.&lt;/p&gt;
&lt;p&gt;This visit is no stress for you: you just give them everything from &lt;code&gt;11.12&lt;/code&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Meanwhile I&amp;#39;ve got the skeleton of the JD-system-builder app up and running. You give it &amp;#39;a system&amp;#39; of data, and it creates your index files and file system folders.&lt;/p&gt;
&lt;p&gt;Given the variety of apps that people use to keep their notes, that&amp;#39;s not a world I want to play in. I&amp;#39;m going to produce Markdown and plain-text files for you, and you can import them in to whatever app you already use.&lt;/p&gt;
&lt;p&gt;But we thought that this app might serve a broader function, as your system manual. For &amp;#39;life admin&amp;#39; we produced a PDF, and we won&amp;#39;t be doing that again: it&amp;#39;s a nightmare to keep up to date.&lt;/p&gt;
&lt;p&gt;Instead of that, what if my app was your manual? Searchable, constantly updated, all the latest information, interesting links as we find them, new versions of ops manuals as they&amp;#39;re written, translations -- whatever you can think of.&lt;/p&gt;
&lt;p&gt;This means that we can keep the long wordy stuff out of your JDex. It stays simple: just the ID&amp;#39;s header and brief description. Then the rest of the space is yours to keep your own notes. And if you want more background, there&amp;#39;s a link there that&amp;#39;ll open up the manual page in the app.&lt;/p&gt;
&lt;p&gt;(If you do want a PDF, I just got that working earlier today: just hit a button, and it&amp;#39;s generated on the fly.)&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;This is surprisingly hard work, but I sit writing this underneath a crabapple tree in full flower, so life&amp;#39;s okay. Onwards and upwards.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0085A-CrabApple--0_original-light-cx-1714x1285.jpg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0085A-CrabApple--0_original-dark-cx-1714x1285.jpg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0085A-CrabApple--0_original-light-cx-1714x1285.jpg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0085A-CrabApple--0_original-dark-cx-1714x1285.jpg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the tree. It&apos;s covered in pink flowers in full blossom.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0085A-CrabApple--0_original-light-cx-1714x1285.jpg&quot; width=&quot;1714&quot; height=&quot;1285&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0085A. The crabapple tree.&lt;/figcaption&gt; &lt;/picture&gt; </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0086 &apos;Small business&apos; update 01</title><link>https://johnnydecimal.com/22.00.0086/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0086/</guid><description>Category 11 is taking shape; as is the helper app that will create your system.</description><pubDate>Wed, 09 Oct 2024 05:24:42 GMT</pubDate><content:encoded>&lt;h1 id=&quot;small-business-update-01&quot;&gt;&amp;#39;Small business&amp;#39; update 01&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This was the &lt;em&gt;first&lt;/em&gt; update, and was originally sent as an email. I&amp;#39;m posting it here so that I can link to it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Lucy and I have been working on the upcoming &amp;#39;small business&amp;#39; system for a week. It&amp;#39;s starting to take shape: we have the outlines of the categories, and Lucy&amp;#39;s sitting next to me now putting shape and structure to some of the first IDs.&lt;/p&gt;
&lt;p&gt;We&amp;#39;re using the &amp;#39;life admin&amp;#39; system as our inspiration, but it&amp;#39;s interesting just how much more there is to business. As soon as you start to pull something apart, it all unravels.&lt;/p&gt;
&lt;p&gt;And we&amp;#39;re realising that there are parts of this system that some of you will fill up, and parts that you might never touch. As we&amp;#39;re building it we&amp;#39;re testing it with a list of types of business:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Personal trainer/yoga or pilates teacher&lt;/li&gt;
&lt;li&gt;Freelance/contract designer, writer, editor&lt;/li&gt;
&lt;li&gt;Wedding celebrant&lt;/li&gt;
&lt;li&gt;Any other type of house-related service - e.g. cleaning or fixing or installing or maintaining a thing&lt;/li&gt;
&lt;li&gt;Gardener/landscaper&lt;/li&gt;
&lt;li&gt;Pet groomer/trainer/accommodation&lt;/li&gt;
&lt;li&gt;Farming/agribusiness&lt;/li&gt;
&lt;li&gt;Market stallholders or suppliers of things - things you make (edible, non-edible) or grow (plants, eggs, meat)&lt;/li&gt;
&lt;li&gt;Hospitality - cafe, restaurant, food truck, catering&lt;/li&gt;
&lt;li&gt;Teaching, training, tutoring&lt;/li&gt;
&lt;li&gt;Architecture &amp;amp; interior design&lt;/li&gt;
&lt;li&gt;Accountant&lt;/li&gt;
&lt;li&gt;Healthcare - smaller or home-based physiotherapist, dentist, GP&lt;/li&gt;
&lt;li&gt;You have a retail shop or warehouse people come to&lt;/li&gt;
&lt;li&gt;Guiding/outdoor adventure/fishing&lt;/li&gt;
&lt;li&gt;Driving - wedding cars and limousines, private cars like George, deliveries and couriering, truck driver with your own truck&lt;/li&gt;
&lt;li&gt;Personal services/consulting in any industry&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;-- and so you can imagine that the food truck is going to make great use of our &amp;#39;transport&amp;#39; section, but that&amp;#39;s not something that Johnny.Decimal Inc. has any interest in whatsoever. We don&amp;#39;t even own a car.&lt;/p&gt;
&lt;p&gt;For this reason, we&amp;#39;re keeping to the life admin theme of &lt;strong&gt;fairly broad IDs&lt;/strong&gt;. As we&amp;#39;re developing this using my beloved MindNode, our map of All The Things looks like this. (This is a super early work-in-progress: don&amp;#39;t worry, the finished system will be a &lt;em&gt;lot&lt;/em&gt; neater!)&lt;/p&gt;
&lt;article class=&quot;link-preview astro-ogavuj4r&quot;&gt;&lt;div class=&quot;link-preview__content astro-ogavuj4r&quot;&gt;&lt;header class=&quot;astro-ogavuj4r&quot;&gt;&lt;a class=&quot;link-preview__title astro-ogavuj4r&quot; href=&quot;https://share.cleanshot.com/zMqYg0p9&quot;&gt;z-CleanShot 2024-10-09 08-11-44&lt;/a&gt; &lt;small class=&quot;link-preview__domain astro-ogavuj4r&quot;&gt;share.cleanshot.com&lt;/small&gt;&lt;/header&gt;&lt;small class=&quot;link-preview__description astro-ogavuj4r&quot;&gt;Screenshot uploaded to CleanShot Cloud&lt;/small&gt;&lt;/div&gt;&lt;img src=&quot;https://brief.cleanshot.cloud/media/59275/UWyYxNhBR4dtIxDQnyU1NX9BDOEZ2nw2Ei3wDxKb.jpeg?min_width=150&amp;min_height=150&amp;anchor=top&quot; alt=&quot;&quot; width=&quot;1200&quot; height=&quot;630&quot; class=&quot;astro-ogavuj4r&quot;&gt;&lt;/article&gt;
&lt;p&gt;MindNode has this lovely feature where you can focus in on a node. And that&amp;#39;s how I like to imagine a system like this: yeah, there&amp;#39;s a lot going on. But my job is to get you to the single ID that contains the thing you need, at which point your view becomes this:&lt;/p&gt;
&lt;article class=&quot;link-preview astro-ogavuj4r&quot;&gt;&lt;div class=&quot;link-preview__content astro-ogavuj4r&quot;&gt;&lt;header class=&quot;astro-ogavuj4r&quot;&gt;&lt;a class=&quot;link-preview__title astro-ogavuj4r&quot; href=&quot;https://share.cleanshot.com/5rgdhhM5&quot;&gt;z-CleanShot 2024-10-09 08-14-51&lt;/a&gt; &lt;small class=&quot;link-preview__domain astro-ogavuj4r&quot;&gt;share.cleanshot.com&lt;/small&gt;&lt;/header&gt;&lt;small class=&quot;link-preview__description astro-ogavuj4r&quot;&gt;Screenshot uploaded to CleanShot Cloud&lt;/small&gt;&lt;/div&gt;&lt;img src=&quot;https://brief.cleanshot.cloud/media/59275/0WKJCpjXkhpF12bftmXYfL21pYhG0LPOdUivmOul.jpeg?min_width=150&amp;min_height=150&amp;anchor=center&quot; alt=&quot;&quot; width=&quot;1200&quot; height=&quot;630&quot; class=&quot;astro-ogavuj4r&quot;&gt;&lt;/article&gt;
&lt;p&gt;...and, aah, that feels better.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;A small example from real life. Just an hour ago I wanted to update my mailing list. It&amp;#39;s called &amp;#39;The Quarterly&amp;#39; and that&amp;#39;s how I refer to it internally. So here&amp;#39;s what I did:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Launched Obsidian (with Raycast), hit Cmd-O, typed &amp;#39;quart&amp;#39;, saw the JDex entry appear, noted its number (23.13). Total elapsed time: &amp;lt;10s.&lt;/li&gt;
&lt;li&gt;Clicked the Finder window that is always open on the JD business system (remind me to tell you more about this one day), used the arrow keys ~10 times to get from where I was to 23.13. Total elapsed time: &amp;lt;10s.&lt;/li&gt;
&lt;li&gt;Opened the spreadsheet. And now I&amp;#39;m where I need to be. Total elapsed time: genuinely less than 30 seconds.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;More importantly, this process was stress-free. I knew with certainty that the spreadsheet I was after was going to be in that folder.&lt;/p&gt;
&lt;p&gt;This is what I want to bring to your business: I want you to be able to deal with the boring admin quickly, and with no stress. Leaving you more time to get on actually making the thing that you make; helping the people you help.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;I&amp;#39;d love to hear more about you. Who are you? What do you do? What are your problems? Just reply, or we&amp;#39;ve got a Discord thread going here.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://discord.gg/q2uKdazR29&quot;&gt;https://discord.gg/q2uKdazR29&lt;/a&gt; &amp;gt; takes you to channel #the-lounge, then look for the &amp;#39;who are you?&amp;#39; thread.&lt;/p&gt;
&lt;p&gt;On the topic of Discord: who is already on there? If it&amp;#39;s new to you, or you&amp;#39;ve used it and didn&amp;#39;t like it -- I didn&amp;#39;t, initially -- here&amp;#39;s one little tip. By default it&amp;#39;s in &amp;#39;dark mode&amp;#39;. But I tend to work during the day! So change it to &amp;#39;light mode&amp;#39;. It totally changed my relationship with the platform.&lt;/p&gt;
&lt;p&gt;User settings (gear icon near your name) &amp;gt; app settings &amp;gt; appearance &amp;gt; choose &amp;#39;light&amp;#39; theme.&lt;/p&gt;
&lt;p&gt;j.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0084 Half an hour a day</title><link>https://johnnydecimal.com/22.00.0084/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0084/</guid><description>An experiment in getting the non-urgent stuff done.</description><pubDate>Thu, 03 Oct 2024 04:30:15 GMT</pubDate><content:encoded>&lt;h1 id=&quot;half-an-hour-a-day&quot;&gt;Half an hour a day&lt;/h1&gt;
&lt;p&gt;In my &lt;a href=&quot;https://johnnydecimal.com/22.00.0034/&quot;&gt;continuing&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/22.00.0066/&quot;&gt;effort&lt;/a&gt; to figure out a better way to manage &amp;#39;to-do&amp;#39;-like tasks,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-todo&quot; id=&quot;user-content-fnref-todo&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I&amp;#39;ve started an experiment.&lt;/p&gt;
&lt;p&gt;At the end of every day, I commit to spending 30 minutes &amp;#39;managing&amp;#39; my to-do system. If there&amp;#39;s stuff to-do, I do it. In order of importance and date.&lt;/p&gt;
&lt;p&gt;If there isn&amp;#39;t, I go through old items and tidy them up. Or I look at what remains and make sure it&amp;#39;s good and neat and in the right bucket and has the right dates etc.&lt;/p&gt;
&lt;p&gt;Obviously this is an end of the day task, not a start of the day. Use your fresh brain for real work. Use your tired brain for this.&lt;/p&gt;
&lt;p&gt;My realisation was that I tend to knock off at, say, 17:00. During the day, this stuff never gets a look-in. I&amp;#39;m busy! With real work! And then you work right up to your knock-off time because you&amp;#39;re sure the thing you&amp;#39;re doing is urgent or that you&amp;#39;ll get it finished.&lt;/p&gt;
&lt;p&gt;Well it isn&amp;#39;t, and you won&amp;#39;t. So just take half an hour, &amp;#39;finish&amp;#39; early, and pay attention to this stuff. Because your overall quality of life will improve. You&amp;#39;ll be less stressed because you didn&amp;#39;t do any of that stuff that you never get to.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it. That&amp;#39;s the tip: spend half an hour doing a thing that you don&amp;#39;t want to do. I&amp;#39;m about a week in and I tell you what, it&amp;#39;s life changing.&lt;/p&gt;
&lt;h3 id=&quot;but-how-are-you-managing-those-tasks&quot;&gt;But how are you managing those tasks?&lt;/h3&gt;
&lt;p&gt;Right now, using the venerable &lt;a href=&quot;https://culturedcode.com/things/&quot;&gt;Things&lt;/a&gt;. It&amp;#39;s so &lt;em&gt;nice&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not in a position to share the details yet, but I&amp;#39;m working on it.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-todo&quot;&gt;
&lt;p&gt;Which I don&amp;#39;t call &amp;#39;to-dos&amp;#39; as I&amp;#39;m sure that many of the things that we record in our to-do list aren&amp;#39;t things &lt;em&gt;to do&lt;/em&gt;: they&amp;#39;re just things we might like to do, or ideas for things, or thoughts, or dreams, or ideas that we had that really didn&amp;#39;t need to be written down, we just didn&amp;#39;t know that at the time. &lt;a href=&quot;#user-content-fnref-todo&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0083 Using the new &apos;+&apos;</title><link>https://johnnydecimal.com/22.00.0083/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0083/</guid><description>How I&apos;m using the new &apos;+&apos; notation to represent a sub-ID.</description><pubDate>Wed, 02 Oct 2024 06:48:56 GMT</pubDate><content:encoded>&lt;h1 id=&quot;using-the-new&quot;&gt;Using the new &amp;#39;+&amp;#39;&lt;/h1&gt;
&lt;p&gt;Just a quick example of using the new &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extend the end&lt;/a&gt; notation, where you append &lt;code&gt;+&lt;/code&gt; to the &lt;em&gt;end&lt;/em&gt; of an ID.&lt;/p&gt;
&lt;h3 id=&quot;family-trip&quot;&gt;Family trip&lt;/h3&gt;
&lt;p&gt;The family are coming to see me at the end of November. Super exciting: mam, dad, sister, husband, kids. 🥳 Can&amp;#39;t wait.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m tracking their trip at &lt;code&gt;15.52 Family trip to Australia, Nov 2024&lt;/code&gt;. (This is all &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;life admin&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;That ID has a templated sub-structure already:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-text&quot;&gt;10 Planning &amp;amp; ideas
20 Travel documents &amp;amp; visas
30 Getting there
40 Somewhere to stay
50 Moving around the place
60 Fun things to do
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;My Bear note was already a little busy, so I&amp;#39;ve split out the fun things to do. Now that note is &lt;code&gt;15.52+ Fun things to do&lt;/code&gt;, and I&amp;#39;ve wiki-linked it from the main note.&lt;/p&gt;
&lt;p&gt;I like how this denotes &amp;#39;a child note&amp;#39;. The &lt;code&gt;+&lt;/code&gt; feels obvious. Note how there&amp;#39;s no need to duplicate the parent note&amp;#39;s title. If you need to know what it is, just go look at it.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0082 Coming soon: &apos;small business&apos;</title><link>https://johnnydecimal.com/22.00.0082/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0082/</guid><description>Formally announcing the upcoming &apos;small business&apos; system.</description><pubDate>Wed, 02 Oct 2024 01:13:45 GMT</pubDate><content:encoded>&lt;h1 id=&quot;coming-soon&quot;&gt;Coming soon&lt;/h1&gt;
&lt;p&gt;The small business system is in production. Version 1 will be released before the end of November 2024.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;mailto:smallbusiness@johnnydecimal.com?subject=SUBSCRIBE&amp;#38;body=%E2%96%B6%20Just%20press%20%E2%80%98send%E2%80%99%20to%20join%20the%20list.%0A%0A%E2%96%B6%20This%20is%20a%20%E2%80%98pop-up%E2%80%99%20list.%20When%20the%20small%20business%20system%20is%20released%2C%20the%20list%20will%20end%20and%20we%20will%20delete%20your%20address.%0A%0A%E2%96%B6%20I%20do%20read%20these%20messages%20personally%2C%20but%20if%20you%20want%20to%20contact%20me%2C%20please%20email%20hello%40johnnydecimal.com.&quot;&gt;Register now&lt;/a&gt; for exclusive early-bird benefits.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;We&amp;#39;re calling it &amp;#39;small business&amp;#39;, but designing it to suit any sort of small-to-medium enterprise. Think your local beer brewing club, or the kids&amp;#39; kindergarten that you got roped in to being the President of.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-sounded&quot; id=&quot;user-content-fnref-sounded&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;And, of course, small businesses of all shapes and sizes. From 1 to about 50 employees, whatever you do: you might own a food truck, be an accountant, have a shop, be a masseuse, an architect, a landscaper...&lt;/p&gt;
&lt;h3 id=&quot;more-than-a-folder-structure&quot;&gt;More than a folder structure&lt;/h3&gt;
&lt;p&gt;The &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;life admin&lt;/a&gt;&amp;#39; pack is a folder structure and a set of files to create your &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;. That works to manage your day-to-day life, but in business you need more.&lt;/p&gt;
&lt;p&gt;We know: Lucy and I have both been small business people forever.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-johnny&quot; id=&quot;user-content-fnref-johnny&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; We&amp;#39;ve been contractors, freelancers, and registered business owners. We learned this the hard way.&lt;/p&gt;
&lt;p&gt;So &amp;#39;small business&amp;#39; will be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;The &lt;strong&gt;folder structure&lt;/strong&gt;, hand-crafted by us.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;JDex files&lt;/strong&gt;, full of usage tips and guidance.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your &lt;strong&gt;business operations manual&lt;/strong&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We all do the same basic stuff, and we keep re-inventing it. You don&amp;#39;t have time for that.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-ops-manual&quot; id=&quot;user-content-fnref-ops-manual&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A &lt;strong&gt;private community of your peers&lt;/strong&gt;. With a common system, we can all help each other.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Channels will be structured around the system. Ask targeted questions and get answers from experts.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;As this knowledge builds over time, we will extract it and present it as part of the system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So you&amp;#39;re never searching for past knowledge: it&amp;#39;s neatly indexed and presented for you.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;register-now&quot;&gt;Register now&lt;/h1&gt;
&lt;p&gt;Email &lt;a href=&quot;mailto:smallbusiness@johnnydecimal.com?subject=SUBSCRIBE&amp;#38;body=%E2%96%B6%20Just%20press%20%E2%80%98send%E2%80%99%20to%20join%20the%20list.%0A%0A%E2%96%B6%20This%20is%20a%20%E2%80%98pop-up%E2%80%99%20list.%20When%20the%20small%20business%20system%20is%20released%2C%20the%20list%20will%20end%20and%20we%20will%20delete%20your%20address.%0A%0A%E2%96%B6%20I%20do%20read%20these%20messages%20personally%2C%20but%20if%20you%20want%20to%20contact%20me%2C%20please%20email%20hello%40johnnydecimal.com.&quot;&gt;smallbusiness&lt;wbr&gt;@johnnydecimal.com&lt;/a&gt; with the subject SUBSCRIBE. (Just click that and hit send.)&lt;/p&gt;
&lt;p&gt;This is a &amp;#39;pop-up&amp;#39; email list, and communication will be frequent. When the system is released, the list ends and we will delete your address.&lt;/p&gt;
&lt;p&gt;You will not be added to &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;the regular list&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;help-us-shape-the-product&quot;&gt;Help us shape the product&lt;/h3&gt;
&lt;p&gt;Expect us to ask you what you need. &lt;em&gt;Tell us&lt;/em&gt; what you need! &lt;strong&gt;We build this for you.&lt;/strong&gt;&lt;/p&gt;
&lt;h3 id=&quot;early-bird-benefits&quot;&gt;Early-bird benefits&lt;/h3&gt;
&lt;p&gt;If you&amp;#39;re on this list, you&amp;#39;ll get the best deal and special privileges. I guarantee it.&lt;/p&gt;
&lt;h3 id=&quot;follow-us-on-threads&quot;&gt;Follow us on Threads&lt;/h3&gt;
&lt;p&gt;For even more behind-the-scenes, follow &lt;a href=&quot;https://www.threads.net/@johnny.decimal&quot;&gt;@johnny.decimal&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;be-like-dmitriy&quot;&gt;Be like Dmitriy&lt;/h3&gt;
&lt;p&gt;He knows what works. ;-)&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.12-SmallBusiness_Dmitriy--0_original-light-1028x810@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.12-SmallBusiness_Dmitriy--0_original-dark-1028x810@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.12-SmallBusiness_Dmitriy--0_original-light-1028x810@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.12-SmallBusiness_Dmitriy--0_original-dark-1028x810@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of an email from Dmitry. It reads: Good time of the day Johny and Lucy! I would like to thank you, once again, for creating “Life admin” pack. Very, VERY helpful. On this note, I would like to ask if you are planning on creating something similar for work/business? I think people would love it, and it should definitely cost more than 15 bucks (but please don’t make it too expensive :). Looking forward to your reply, Dmitriy&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/14.12-SmallBusiness_Dmitriy--0_original-light-1028x810@2x.png&quot; width=&quot;514&quot; height=&quot;405&quot;&gt;  &lt;/picture&gt; 
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-sounded&quot;&gt;
&lt;p&gt;&lt;em&gt;President&lt;/em&gt; sounding fancy until you realised how much work it is. &lt;a href=&quot;#user-content-fnref-sounded&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-johnny&quot;&gt;
&lt;p&gt;In his 28-year &lt;a href=&quot;https://www.linkedin.com/in/johnny-noble/&quot;&gt;career&lt;/a&gt;, Johnny has had &lt;em&gt;one&lt;/em&gt; full-time salaried job. It lasted 18 months and it wasn&amp;#39;t for him. Lucy was a freelancer for half of her working life. &lt;a href=&quot;#user-content-fnref-johnny&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-ops-manual&quot;&gt;
&lt;p&gt;The ops manuals will be built over time, with input from the community. &lt;a href=&quot;#user-content-fnref-ops-manual&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0081 What&apos;s wrong with this data structure?</title><link>https://johnnydecimal.com/22.00.0081/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0081/</guid><description>Seeking feedback on a provisional data structure.</description><pubDate>Mon, 30 Sep 2024 05:50:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;whats-wrong-with-this-data-structure&quot;&gt;What&amp;#39;s wrong with this data structure?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Note: this is behind-the-scenes stuff. If you&amp;#39;re not a data nerd, you probably won&amp;#39;t care.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;context&quot;&gt;Context&lt;/h3&gt;
&lt;p&gt;The current &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;life admin&lt;/a&gt;&amp;#39; pack is, essentially, a .zip file full of files in folders: completely static files-on-disk. It&amp;#39;s &lt;a href=&quot;https://forum.johnnydecimal.com/t/quick-start-life-admin-support-topic/1660/104&quot;&gt;a real pain in the ass&lt;/a&gt; to keep updated.&lt;/p&gt;
&lt;p&gt;The upcoming &lt;em&gt;Quick Start: &amp;#39;Small business&amp;#39;&lt;/em&gt; pack&lt;sup&gt;&lt;a href=&quot;#user-content-fn-working-title&quot; id=&quot;user-content-fnref-working-title&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; will not be a static thing. It will be something that is built, from data. So when you want to create your file system &lt;em&gt;over there&lt;/em&gt;, you&amp;#39;ll tell my utility app to do that.&lt;/p&gt;
&lt;p&gt;This way, it can look however you want without me having to manage dozens of permutations. Want Markdown files without tags in folders? Just generate that. Want an empty folder structure? Do that. Plain text files? Whatever. Push a button, it&amp;#39;ll be generated.&lt;/p&gt;
&lt;h3 id=&quot;i-am-a-liar&quot;&gt;I am a liar&lt;/h3&gt;
&lt;p&gt;I previously said that &lt;a href=&quot;https://johnnydecimal.com/22.00.0063/&quot;&gt;my software would be Apple-only&lt;/a&gt;. Well, I&amp;#39;m building this in Electron. Because I don&amp;#39;t consider this &lt;em&gt;the Johnny.Decimal software&lt;/em&gt;. At this stage, it&amp;#39;s just a utility app.&lt;/p&gt;
&lt;p&gt;So just FYI. I am not to be trusted.&lt;/p&gt;
&lt;p&gt;(And yeah I know Electron is a waste and JavaScript and &lt;em&gt;I know&lt;/em&gt;. I need to get something up fast, and I already know JS. Don&amp;#39;t tell me to learn Rust.)&lt;/p&gt;
&lt;h1 id=&quot;break-my-data-structure-please&quot;&gt;Break my data structure (please)&lt;/h1&gt;
&lt;p&gt;So I&amp;#39;ve been thinking about a JSON data structure, and I&amp;#39;d like your wisdom. Because I don&amp;#39;t live in this. Some of you do. What terrible mistakes am I making? What obvious pitfalls am I overlooking?&lt;/p&gt;
&lt;h3 id=&quot;what-does-it-need-to-do&quot;&gt;What does it need to do?&lt;/h3&gt;
&lt;p&gt;Ideally, I&amp;#39;d like to design something really future-proof. If I&amp;#39;m going to design a JSON/TypeScript schema, it might as well be right for the long-term.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t have a list of requirements, but if you know JD you can imagine. It should be able to serve as the data store for any system/JDex. Text/Markdown only; it doesn&amp;#39;t need to store data. That&amp;#39;s what your file system is for.&lt;/p&gt;
&lt;h3 id=&quot;itll-be-public&quot;&gt;It&amp;#39;ll be public&lt;/h3&gt;
&lt;p&gt;This will be the officially endorsed schema so that any compatible app can communicate.&lt;/p&gt;
&lt;h3 id=&quot;hmm-also&quot;&gt;Hmm also&lt;/h3&gt;
&lt;p&gt;I do want the &amp;#39;small business&amp;#39; pack to come with more than just JDex entries. I have in mind that it will serve as your &lt;a href=&quot;https://en.wikipedia.org/wiki/Operations_manual&quot;&gt;ops manual&lt;/a&gt;; so that&amp;#39;s extra documentation linked to each ID. Think multi-page PDFs.&lt;/p&gt;
&lt;p&gt;Perhaps that should just be a separate thing. Keep this core idea simple/pure? Probably.&lt;/p&gt;
&lt;h2 id=&quot;feedback-how&quot;&gt;Feedback how?&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ll be &lt;del&gt;hacking around&lt;/del&gt; working away on this for the next few days. Any feedback would be very welcome.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;GitHub: there&amp;#39;s a file &lt;a href=&quot;https://github.com/johnnydecimal/index-spec/blob/main/schema.ts&quot;&gt;here&lt;/a&gt; and a discussion &lt;a href=&quot;https://github.com/johnnydecimal/index-spec/issues/4&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Preferred.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Forum: there&amp;#39;s a post &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0081-what-s-wrong-with-this-data-structure/1855&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Discord: there&amp;#39;s a thread &lt;a href=&quot;https://discord.com/channels/822215537589354566/1290198529989414944&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;🙏 Thank you!&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-working-title&quot;&gt;
&lt;p&gt;Working title. We have a better name up our sleeves... &lt;a href=&quot;#user-content-fnref-working-title&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.32 Guidelines</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.32-guidelines/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.32-guidelines/</guid><description>Guidelines for assigning identifiers to the end of an ID in a Johnny.Decimal system.</description><pubDate>Sun, 29 Sep 2024 13:32:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;usage-considerations&quot;&gt;Usage considerations&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;This page relates to &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extend the end&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Extending the end is for when you have a category that requires more than 100 IDs, or an ID that needs to be repeated in some way.&lt;br&gt;&lt;br&gt;For example, I need more than 100 IDs in my blog post category. Or you need to neatly store similar details in an ID for each of your kids.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Of the three system expansion strategies, creating a sub-ID to &lt;em&gt;extend the end&lt;/em&gt; is the simplest and therefore most preferred.&lt;/p&gt;
&lt;p&gt;As well as extending an ID -- as we saw &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;on the previous page&lt;/a&gt; -- it can be used to link JDex sub-notes back to a main note.&lt;/p&gt;
&lt;h1 id=&quot;your-jdex&quot;&gt;Your JDex&lt;/h1&gt;
&lt;h3 id=&quot;recording-sub-ids&quot;&gt;Recording sub-IDs&lt;/h3&gt;
&lt;p&gt;If you have a full sub-ID to record, use it in the title of your note. For example &lt;code&gt;11.24+JEM Jemima&amp;#39;s eyes, ears, &amp;amp; teeth&lt;/code&gt;. This allows you to search for all of Jemima&amp;#39;s sub-IDs using &lt;code&gt;+JEM&lt;/code&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32A-Bear_1124+JEM--0_original-light-cx-680x288.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32A-Bear_1124+JEM--0_original-dark-cx-680x288.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32A-Bear_1124+JEM--0_original-light-cx-680x288.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32A-Bear_1124+JEM--0_original-dark-cx-680x288.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Bear, showing two note titles: &apos;11.24 Eyes, ears, &amp;#38; teeth&apos; and &apos;11.24+JEM Jemima&apos;s eyes, ears, &amp;#38; teeth&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.32A-Bear_1124+JEM--0_original-light-cx-680x288.png&quot; width=&quot;340&quot; height=&quot;144&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.32A. Two Bear notes. 11.24 is the main ID. 11.24+JEM is a sub-ID that sorts below it.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;recording-sub-notes&quot;&gt;Recording sub-notes&lt;/h3&gt;
&lt;p&gt;Traditionally, each of your IDs has a single JDex entry: it is this entry that defines the ID.&lt;/p&gt;
&lt;p&gt;But one note can get long and become difficult to manage. If you want to create sub-notes, just use the &lt;code&gt;+&lt;/code&gt; after the ID in the note title.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32B-Bear_Ozito--0_original-light-680x290@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32B-Bear_Ozito--0_original-dark-680x290@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32B-Bear_Ozito--0_original-light-680x290@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32B-Bear_Ozito--0_original-dark-680x290@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Bear, showing the two notes as described below.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.32B-Bear_Ozito--0_original-light-680x290@2x.png&quot; width=&quot;340&quot; height=&quot;145&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.32B. Two Bear notes with the same ID. 13.41 is the main note. 13.41+ is a sub-note that sorts below it.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;For example, I needed to record a long transaction history for a lawnmower warranty return. &lt;code&gt;13.41 Purchase receipts&lt;/code&gt; is the home for this, but I didn&amp;#39;t want to clutter the main note.&lt;/p&gt;
&lt;p&gt;I created a sub-note, &lt;code&gt;13.41+ Ozito mower&lt;/code&gt;. This note is an instance of &lt;code&gt;13.41&lt;/code&gt;, and the &lt;code&gt;+&lt;/code&gt; makes it sort below the main note.&lt;/p&gt;
&lt;p&gt;In this case, I didn&amp;#39;t need to create a full sub-ID with a code. Adding the &lt;code&gt;+&lt;/code&gt; suffices.&lt;/p&gt;
&lt;h1 id=&quot;your-file-system&quot;&gt;Your file system&lt;/h1&gt;
&lt;p&gt;The sub-ID can be thought of as a file system subfolder.&lt;/p&gt;
&lt;p&gt;As the system owner, you might choose to keep your items in the ID folder and create subfolders for each sub-ID. See below, where the names represent our &lt;del&gt;chickens&lt;/del&gt; children.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32C-Finder_1124--1_padding-light-cx-652x342@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.32C-Finder_1124--1_padding-dark-cx-652x342@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32C-Finder_1124--1_padding-light-cx-652x342@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.32C-Finder_1124--1_padding-dark-cx-652x342@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of macOS&apos; Finder. It shows the parent folder &apos;11.24 Eyes, ears, &amp;#38; teeth&apos;. In the folder are two PDFs which are my eye prescriptions. Then we have subfolders each for &apos;Belinda (BEL)&apos;, &apos;Jemima (JEM)&apos;, &apos;Marie (MAR)&apos;, and &apos;Wendy (WEN)&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.32C-Finder_1124--1_padding-light-cx-652x342@2x.png&quot; width=&quot;326&quot; height=&quot;171&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.32C. Your eye prescriptions are stored in the 11.24 folder. Your childrens&amp;#39; files are stored in coded subfolders.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Or you might find it neater to keep &lt;em&gt;everything&lt;/em&gt; in subfolders. If so, invent a short code for yourself as well and store your records there.&lt;/p&gt;
&lt;h1 id=&quot;naming-considerations&quot;&gt;Naming considerations&lt;/h1&gt;
&lt;p&gt;Pick a short code for your sub-IDs that works for you, and use it consistently.&lt;/p&gt;
&lt;p&gt;These examples use abbreviations for simplicity. I generally prefer initials. So Jemima Matilda Decimal would be &lt;code&gt;+JMD&lt;/code&gt;. They tend to be more memorable.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.12 Guidelines</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.12-guidelines/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.12-guidelines/</guid><description>Guidelines for assigning identifiers to multiple Johnny.Decimal systems.</description><pubDate>Sun, 29 Sep 2024 13:12:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;usage-considerations&quot;&gt;Usage considerations&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;This page relates to &lt;a href=&quot;https://johnnydecimal.com/13.11/&quot;&gt;multiple systems&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Multiple systems are for when you have two distinct systems that do not overlap. For example, a personal system and a work system.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Do not use this if you think you have &amp;#39;filled up&amp;#39; an existing system and need more room. Correct your design instead.&lt;/p&gt;
&lt;p&gt;Imagine having two personal systems. Doubling the number of IDs you manage would add complexity and reduce clarity. I&amp;#39;ve never encountered a scenario where this would be required.&lt;/p&gt;
&lt;h3 id=&quot;try-to-extend-the-end-first&quot;&gt;Try to &lt;em&gt;extend the end&lt;/em&gt; first&lt;/h3&gt;
&lt;p&gt;Before creating a new system, consider if the simpler &lt;em&gt;&lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extending the end&lt;/a&gt;&lt;/em&gt; would solve your problem.&lt;/p&gt;
&lt;p&gt;Because adding a new system doubles the number of possible IDs under management from 10,000 to 20,000. Each of those IDs is the more complex &lt;code&gt;SYS.AC.ID&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Extending the end&lt;/em&gt; of a single ID raises the number of IDs from 10,000 to 10,001. The only ID that changes, becoming &lt;code&gt;AC.ID+SUB&lt;/code&gt;, is the one you extended.&lt;/p&gt;
&lt;h3 id=&quot;truly-separate-domains-dont-require-multiple-systems&quot;&gt;Truly separate domains don&amp;#39;t require multiple systems&lt;/h3&gt;
&lt;p&gt;Consider the problem we are solving: conflicting IDs. If you have two instances of &lt;code&gt;11.11&lt;/code&gt; within a shared domain, you must disambiguate with a &lt;code&gt;SYS&lt;/code&gt; identifier.&lt;/p&gt;
&lt;p&gt;But if these systems exist in isolated domains, there is no conflict. For example, you have a personal system at home and a work system at work, and you don&amp;#39;t use shared tools.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.12A-Separate_domains--0_original-light-cx-1062x440.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.12A-Separate_domains--0_original-dark-cx-1062x440.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.12A-Separate_domains--0_original-light-cx-1062x440.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.12A-Separate_domains--0_original-dark-cx-1062x440.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line drawing showing two heavily-bordered domains, &apos;work&apos; and &apos;home&apos;. They don&apos;t overlap in any way.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.12A-Separate_domains--0_original-light-cx-1062x440.png&quot; width=&quot;531&quot; height=&quot;220&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.12A. Two isolated domains. There is no conflict between these systems. SYS.AC.ID is not required.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;In this case, there is no need to disambiguate. At work, &lt;code&gt;11.11&lt;/code&gt; can only refer to one thing. Don&amp;#39;t burden yourself (and your colleagues) with &lt;code&gt;SYS.AC.ID&lt;/code&gt; if it&amp;#39;s not necessary.&lt;/p&gt;
&lt;h1 id=&quot;your-jdex&quot;&gt;Your JDex&lt;/h1&gt;
&lt;p&gt;If the JDex for each system is in the same tool, every ID should become the full &lt;code&gt;SYS.AC.ID&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;If you use separate tools -- for example, my personal JDex is in Bear and my work JDex is in Obsidian -- this might not be necessary.&lt;/p&gt;
&lt;p&gt;Always prefer simplicity as long as it does not compromise clarity.&lt;/p&gt;
&lt;h1 id=&quot;your-file-system&quot;&gt;Your file system&lt;/h1&gt;
&lt;p&gt;Each system lives in a folder labelled with its identifier and name. For example &lt;code&gt;D85 Johnny.Decimal&lt;/code&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.12B-Finder_D85--1_effect-light-660x390@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.12B-Finder_D85--1_effect-dark-660x390@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.12B-Finder_D85--1_effect-light-660x390@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.12B-Finder_D85--1_effect-dark-660x390@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of my file system showing a containing folder, D85 Johnny.Decimal, with area folders contained.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.12B-Finder_D85--1_effect-light-660x390@2x.png&quot; width=&quot;330&quot; height=&quot;195&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.12B. The system folder for the Johnny.Decimal business contains an otherwise standard system.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Within here, it is usually not necessary to use the system identifier when naming folders. For example, area &lt;code&gt;10-19 Company administration&lt;/code&gt; is not named &lt;code&gt;D85.10-19 …&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;If you use folder shortcuts, you might like to add the full system identifier. For example, when &amp;#39;pinning&amp;#39; to the left navigation pane.&lt;/p&gt;
&lt;h1 id=&quot;naming-considerations&quot;&gt;Naming considerations&lt;/h1&gt;
&lt;p&gt;It can be helpful to name some files with the full &lt;code&gt;SYS.AC.ID&lt;/code&gt;. I find this useful when browsing the &lt;strong&gt;File &amp;gt; Recent&lt;/strong&gt; menu. Here, &lt;code&gt;SYS&lt;/code&gt; provides guidance.&lt;/p&gt;
&lt;p&gt;You should also prefer the full identifier for files that are externally distributed. Encode the full identifier in the name of the file. This will help you when the file is returned.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0080 Headers</title><link>https://johnnydecimal.com/22.00.0080/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0080/</guid><description>My thoughts on &apos;headers&apos;, which we used to organise the categories in the life admin pack.</description><pubDate>Sat, 21 Sep 2024 00:30:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;headers&quot;&gt;Headers&lt;/h1&gt;
&lt;p&gt;In the &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;life admin pack&lt;/a&gt;, we used &amp;#39;headers&amp;#39; to break up the categories.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Life admin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;11&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Me &amp; other living things 🙋&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.10&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;■ Personal records 🗂️&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;    ...&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.16&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Legal documents &amp; certificates&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.17&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Academic records &amp; qualifications&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.20&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;■ Physical health &amp; wellbeing 🫀&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.21&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Health insurance &amp; claims&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.22&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Health records &amp; registrations&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;    ...&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;They all occupy a &lt;code&gt;AC.I&lt;u&gt;0&lt;/u&gt;&lt;/code&gt; ID, and in the main version we gave them a bit of visual distinction with the black square and an emoji. They group IDs in to blocks of 10s, e.g. &lt;code&gt;11.20 … 11.29&lt;/code&gt;. You can see we skipped some IDs to &amp;#39;jump&amp;#39; to the next header.&lt;/p&gt;
&lt;h1 id=&quot;so-do-i-recommend-headers&quot;&gt;So do I recommend headers?&lt;/h1&gt;
&lt;p&gt;No.&lt;/p&gt;
&lt;h3 id=&quot;that-was-a-short-blog-post&quot;&gt;That was a short blog post&lt;/h3&gt;
&lt;p&gt;Okay, it&amp;#39;s not that simple. We used headers in this situation because the pack, specifically category &lt;code&gt;11 Me &amp;amp; other living things&lt;/code&gt;, is fairly busy. There are 49 IDs in that category: half-full.&lt;/p&gt;
&lt;p&gt;But more importantly we used them because this system was &lt;em&gt;designed not to change&lt;/em&gt;. In the manual we say that you should try really hard not to create any more IDs. It&amp;#39;s about as static an area as you&amp;#39;ll ever have.&lt;/p&gt;
&lt;p&gt;Because the problem with headers is that it&amp;#39;s easy to design yourself in to a corner. You might not think that you&amp;#39;ll ever run up against that header, but give it a few years. Remember how long these systems might last.&lt;/p&gt;
&lt;h3 id=&quot;so-when-is-it-okay-to-use-headers&quot;&gt;So when is it okay to use headers?&lt;/h3&gt;
&lt;p&gt;In the following situations, I grant you my cautious blessing to use headers.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Highly-designed, mostly-static systems. Like &amp;#39;life admin&amp;#39;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Systems with very broad IDs. Like &amp;#39;life admin&amp;#39;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I don&amp;#39;t think &amp;#39;headers&amp;#39; will ever be a page on the main site. A page there represents a fully-endorsed part of the system that most people are encouraged to use. Bear that in mind before you use them.&lt;/p&gt;
&lt;p&gt;If in doubt, give me a shout on the &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://discord.gg/cUYNAaAR&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.31 Extend the end</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.31-extend-the-end/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.31-extend-the-end/</guid><description>To manage more than 100 Johnny.Decimal IDs in a category, or an ID that &apos;repeats&apos; in some way, assign an identifier to the end. We refer to this as AC.ID+SUB.</description><pubDate>Wed, 18 Sep 2024 13:31:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;There are situations where almost everything fits in a standard Johnny.Decimal system. But a few items either break the &amp;#39;no more than 100 IDs&amp;#39; rule, or need to be repeated in some way.&lt;/p&gt;
&lt;p&gt;These are minor extensions to your system that don&amp;#39;t require the more complex &lt;em&gt;expand an area&lt;/em&gt; solution.&lt;/p&gt;

&lt;blockquote class=&quot;hardcoded&quot;&gt;&lt;p&gt;&lt;strong&gt;Examples&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;Your kids:&lt;/strong&gt; you&amp;#39;re using the standard &lt;a href=&quot;https://jdcm.al/15.03/&quot;&gt;life admin&lt;/a&gt; pack and you have four kids. The ID &lt;code&gt;11.24 Eyes, ears, &amp;amp; teeth&lt;/code&gt; -- which covers things like eye checks, glasses, dental checks, braces, and hearing tests -- is quite busy. You want a way to track each child&amp;#39;s visits and documents.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;A repeated task within a larger project:&lt;/strong&gt; we had to install cabling in 13 data centres. But there was already a complete ID allocated to cabling: &lt;code&gt;72.02&lt;/code&gt;. I &lt;em&gt;could&lt;/em&gt; have used a new ID for each data centre. But this didn&amp;#39;t match the system&amp;#39;s overall pattern and it wouldn&amp;#39;t have been memorable. Plus I wanted a unique reference for each data centre&amp;#39;s cabling for things like our project schedule.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;My blog:&lt;/strong&gt; this site&amp;#39;s blog posts will number more than 100. But I want each to have a unique ID.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h1 id=&quot;the-solution&quot;&gt;The solution&lt;/h1&gt;
&lt;p&gt;Add a final identifier after the ID, and separate them with a &lt;code&gt;+&lt;/code&gt;. Ideally a simple sequence or code that represents the thing being extended. We call this the sub-ID, and refer to it as &lt;code&gt;AC.ID+SUB&lt;/code&gt;.&lt;/p&gt;

&lt;blockquote class=&quot;hardcoded&quot;&gt;&lt;p&gt;&lt;strong&gt;Examples&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;Your kids:&lt;/strong&gt; in our JDex, we add initials or a short code to represent each child. So &lt;code&gt;11.24+JEM&lt;/code&gt; is a note for anything to do with Jemima&amp;#39;s visits to the optician or dentist. Similarly, we have &lt;code&gt;11.24+BEL&lt;/code&gt;, &lt;code&gt;11.24+MAR&lt;/code&gt;, and &lt;code&gt;11.24+WEN&lt;/code&gt; for Belinda, Marie, and Wendy.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;A repeated task within a larger project:&lt;/strong&gt; to create IDs for each of the 13 data centres, I used an existing code for that location. The final IDs looked like &lt;code&gt;72.02+X01&lt;/code&gt;, where &lt;code&gt;X01&lt;/code&gt; was a particular data centre.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;My blog:&lt;/strong&gt; for each post, I begin with the category ID: &lt;code&gt;22.00&lt;/code&gt;. Then append a sequential four-digit post ID. This creates the range &lt;code&gt;22.00+0000 … 22.00+9999&lt;/code&gt;.&lt;sup&gt;*&lt;/sup&gt; Four digits allows for 10,000 posts. Three digits would not have been enough.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;em&gt;&lt;sup&gt;*&lt;/sup&gt;The blog currently uses a decimal as the final separator, not a plus. I am in the process of updating it.&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&quot;what-am-i-extendinggaining&quot;&gt;What am I extending/gaining?&lt;/h2&gt;
&lt;p&gt;This scheme extends specific IDs or categories by an arbitrary number of sub-IDs.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-ids&quot;&gt;How does this affect my IDs?&lt;/h2&gt;
&lt;p&gt;Your IDs are extended at the end.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-jdex&quot;&gt;How does this affect my JDex?&lt;/h2&gt;
&lt;p&gt;You may choose to record these sub-IDs in your JDex. But it might not be necessary. See &lt;a href=&quot;https://johnnydecimal.com/13.32/&quot;&gt;the guidelines&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-multiple-systems&quot;&gt;Can I use this with &lt;em&gt;multiple systems&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;Yes. You may extend the end of a &lt;code&gt;SYS.AC.ID&lt;/code&gt; system.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-expand-an-area&quot;&gt;Can I use this with &lt;em&gt;expand an area&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;No. For an expanded area, &lt;em&gt;extending the end&lt;/em&gt; no longer makes sense because you&amp;#39;re not using standard &lt;code&gt;AC.ID&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;when-should-i-usenot-use-this&quot;&gt;When should I use/not use this?&lt;/h2&gt;
&lt;p&gt;You should use this in limited situations, in specific categories or IDs.&lt;/p&gt;
&lt;p&gt;If you find yourself &lt;em&gt;extending the end&lt;/em&gt; too frequently within a system, question its design. You might need to split it into &lt;em&gt;multiple systems&lt;/em&gt;. Or you might need to &lt;em&gt;expand an area&lt;/em&gt; of the system.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.21 Expand an area</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.21-expand-an-area/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.21-expand-an-area/</guid><description>Some things don&apos;t fit in a standard Johnny.Decimal structure. But fear not. By expanding an area, more depth can be created where we need it.</description><pubDate>Wed, 18 Sep 2024 13:21:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;A design principle of Johnny.Decimal is that we can have no more than 10 categories in each of 10 areas. And each category has no more than 100 IDs. This enforces a shallow structure: areas contain categories contain IDs. That&amp;#39;s it: three levels.&lt;/p&gt;
&lt;p&gt;However some things don&amp;#39;t fit in this structure. Trying to make them fit is unnatural and doesn&amp;#39;t result in a neat system.&lt;/p&gt;
&lt;p&gt;The goal of &lt;em&gt;expand an area&lt;/em&gt; is to allow you to use a standard Johnny.Decimal system. But with one area expanded to accommodate the &amp;#39;more than 10 things&amp;#39; or &amp;#39;more than three levels&amp;#39; requirement.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Examples&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;A student or teacher:&lt;/strong&gt; you have more than 10 classes or topics, across more than 10 semesters of study, across multiple years.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;strong&gt;A freelance designer:&lt;/strong&gt; you manage multiple clients with multiple products that generate multiple jobs. You might have more than 10 of any of these things. These jobs then require their own level of organisation: the brief, copy, art, reviews, and finals. So we require more depth &lt;em&gt;and&lt;/em&gt; more than 10.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h1 id=&quot;the-solution&quot;&gt;The solution&lt;/h1&gt;
&lt;p&gt;We take an area from a standard system and expand it. Exactly how you do this depends on the situation. I will document patterns for academics, &lt;a href=&quot;https://johnnydecimal.com/15.02/&quot;&gt;creatives&lt;/a&gt;, and freelancers.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-keep-an-eye-out&quot; id=&quot;user-content-fnref-keep-an-eye-out&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Here are the guidelines for any other scenario. Treat them like a menu of options, mixing and matching to suit your requirements.&lt;/p&gt;
&lt;h2 id=&quot;a-common-objection&quot;&gt;A common objection&lt;/h2&gt;
&lt;p&gt;People see this and say, &amp;quot;well what&amp;#39;s the point of Johnny.Decimal if I can just make up my own thing?&amp;quot;. To which I say: there are no absolutes in life.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m trying to be pragmatic and honest. My default system is great for many things, not &lt;em&gt;every&lt;/em&gt; thing. We can still use the principles of Johnny.Decimal to stay organised -- these are outlined below.&lt;/p&gt;
&lt;span class=&quot;invisible&quot; id=&quot;rules-and-principles&quot;&gt;&lt;/span&gt;
&lt;h2 id=&quot;overarching-principle-consistency-is-critical&quot;&gt;Overarching principle: consistency is critical&lt;/h2&gt;
&lt;p&gt;You can build almost any &amp;#39;shape&amp;#39; of system and be organised. The key is to &lt;em&gt;be consistent&lt;/em&gt; in your structure and file naming. This sounds obvious, but if it&amp;#39;s front of mind you won&amp;#39;t go far wrong.&lt;/p&gt;
&lt;p&gt;Help your future self by documenting your scheme and design decisions in your JDex. The standard zero &lt;code&gt;00.00 Index&lt;/code&gt; would be a good place.&lt;/p&gt;
&lt;h2 id=&quot;rule-only-expand-the-part-that-needs-to-be-expanded&quot;&gt;Rule: only expand the part that needs to be expanded&lt;/h2&gt;
&lt;p&gt;Aim to expand &lt;em&gt;a single area&lt;/em&gt; of your system. Most of what you do should still fit in the standard Johnny.Decimal structure. If you&amp;#39;re a freelance designer, manage the rest of your business with standard areas and categories.&lt;/p&gt;
&lt;h2 id=&quot;rule-all-ids-start-with-the-area-number&quot;&gt;Rule: all IDs start with the area number&lt;/h2&gt;
&lt;p&gt;Standard Johnny.Decimal IDs start with the number of the area they&amp;#39;re in: &lt;code&gt;83.66&lt;/code&gt; belongs to area &lt;code&gt;80-89&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;You must retain this pattern. You&amp;#39;re going to expand one area. Choose that area, and then ensure that every number that it contains starts with the area number.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;In the creative pattern, area &lt;code&gt;90-99 Portfolio of creative outputs&lt;/code&gt; is expanded and uses a five-digit non-standard numbering scheme: &lt;code&gt;A0000 … A9999&lt;/code&gt;. &lt;code&gt;A&lt;/code&gt; indicates the area that has been expanded.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;In this example, the usable numbers are &lt;code&gt;90000 … 99999&lt;/code&gt;. Expanding &lt;code&gt;70-79&lt;/code&gt; the range would be &lt;code&gt;70000 … 79999&lt;/code&gt;.&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&quot;principle-use-the-alphabet&quot;&gt;Principle: use the alphabet&lt;/h2&gt;
&lt;p&gt;In a standard Johnny.Decimal system, numbers replace the alphabet as the primary sort. This is because most things do not benefit from being sorted alphabetically.&lt;/p&gt;
&lt;p&gt;But some things do. For example, if you have a long list of organisations, ordering them alphabetically makes sense. It makes no sense to allocate the organisations a number and sort numerically. See figure 13.21A below.&lt;/p&gt;
&lt;h2 id=&quot;principle-use-the-date&quot;&gt;Principle: use the date&lt;/h2&gt;
&lt;p&gt;Many things benefit from being ordered chronologically: jobs for a client; semesters at university. And we tend to remember where these kind of things happened &amp;#39;in time&amp;#39;. So the date can help us find things later.&lt;/p&gt;
&lt;p&gt;Look for opportunities to use the date. This must always be specified as year-month-day in the format &lt;code&gt;yyyy-mm-dd&lt;/code&gt;, e.g. &lt;code&gt;2024-08-30&lt;/code&gt;. This will sort chronologically in your file system.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-iso8601&quot; id=&quot;user-content-fnref-iso8601&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; See figure 13.21A below.&lt;/p&gt;
&lt;h2 id=&quot;principle-stop-using-numbers&quot;&gt;Principle: stop using numbers&lt;/h2&gt;
&lt;p&gt;In a standard Johnny.Decimal system, every item has a number: the ID. However in many &lt;em&gt;expand an area&lt;/em&gt; scenarios, numbers might only make sense at the higher levels.&lt;/p&gt;
&lt;p&gt;Use numbers to guide you to the place you need to be. Or where there isn&amp;#39;t an alphabet or date alternative. But when they become a burden, or when the alphabet or date is better, stop using them. See figure 13.21A below.&lt;/p&gt;
&lt;h2 id=&quot;principle-use-natural-hierarchies&quot;&gt;Principle: use natural hierarchies&lt;/h2&gt;
&lt;p&gt;If natural hierarchies exist, use them. Why invent another scheme for something that already has one?&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;As a freelancer, the jobs you manage are organised by client, product, then job.&lt;sup&gt;*&lt;/sup&gt; Use this hierarchy in your system. Don&amp;#39;t worry that it breaks the area → category → ID structure. See figure 13.21A below.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;em&gt;&lt;sup&gt;*&lt;/sup&gt;For the purposes of this example. Adapt this to your own situation.&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&quot;principle-look-for-patterns&quot;&gt;Principle: look for patterns&lt;/h2&gt;
&lt;p&gt;A sub-principle of &amp;#39;be consistent&amp;#39;: always look for patterns. If you do something over and over it should be a template. This saves time and helps your brain.&lt;/p&gt;
&lt;p&gt;Templates usually benefit from having numbers to keep them in order. Numbering in tens (10, 20, 30) makes sense here. It leaves room between items (05, 15, 25) for one-offs or items you forgot.&lt;/p&gt;

&lt;blockquote class=&quot;hardcoded&quot;&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;A freelance designer creates promotional material for the footwear industry. They have two clients, Joe&amp;#39;s Shoes and Tammy&amp;#39;s Trainers. Joe makes three products: Big Boots, Cool Kicks, and Sick Sneakers.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;The jobs follow a similar pattern. The client provides a brief, copy, images, and video. The designer produces working files for review and a final delivered product.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;This is an opportunity to make a reusable template. And to use numbers again. Not as a unique identifier, but to control the order of file system folders.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;Here&amp;#39;s how their system might look. Area &lt;code&gt;10-19&lt;/code&gt; is a standard Johnny.&lt;wbr&gt;Decimal area, and they&amp;#39;ve expanded &lt;code&gt;20-29&lt;/code&gt; to handle their clients and jobs.&lt;/p&gt;&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21A-Freelancer--0_original-light-cx-738x950.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21A-Freelancer--0_original-dark-cx-738x950.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21A-Freelancer--0_original-light-cx-738x950.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21A-Freelancer--0_original-dark-cx-738x950.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line drawing showing a Johnny.Decimal system. Area &apos;20-29 Clients and jobs&apos; contains two subfolders for our clients, &apos;Joe&apos;s Shoes&apos; and &apos;Tammy&apos;s Trainers&apos;. Joe&apos;s Shoes then contains subfolders for their products, as noted in the text above. And then each product contains subfolders, numbered in tens starting with 10, for the brief, copy, images and so on.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.21A-Freelancer--0_original-light-cx-738x950.png&quot; width=&quot;369&quot; height=&quot;475&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.21A. A freelance designer&amp;#39;s templated system. This example uses the following principles: Use the alphabet, Use the date, Stop using numbers, Use natural hierarchies, Look for patterns.&lt;/figcaption&gt; &lt;/picture&gt; &lt;/blockquote&gt;
&lt;h2 id=&quot;principle-invent-your-own-scheme&quot;&gt;Principle: invent your own scheme&lt;/h2&gt;
&lt;p&gt;There&amp;#39;s a reason people love their Johnny.Decimal IDs. They&amp;#39;re a useful shortcut in many situations. So if you need an ID for something, feel free to make one up. Just remember: be consistent.&lt;/p&gt;

&lt;blockquote class=&quot;hardcoded&quot;&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;I like to give each of my invoices a unique ID that relates to the job.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;In the example above, we might invent a scheme like &lt;code&gt;20.JOE.BB.20240708&lt;/code&gt;. We&amp;#39;re not going to use this code every day. But it serves as an unambiguous reference to that job when we need one.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;And I shouldn&amp;#39;t have to explain this scheme: it&amp;#39;s obvious to which job I&amp;#39;m referring. Annotate your file system and JDex to make the scheme self-documenting.&lt;/p&gt;&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21B-Freelancer--0_original-light-cx-656x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21B-Freelancer--0_original-dark-cx-656x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21B-Freelancer--0_original-light-cx-656x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21B-Freelancer--0_original-dark-cx-656x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A truncated version of the line drawing from above. After &apos;Joe&apos;s Shoes&apos; we now have &apos;(JOE)&apos;, and after &apos;Tammy&apos;s Trainers&apos; we have &apos;(TTR)&apos;. After &apos;Big Boots&apos;, we have &apos;(BB)&apos;, and similar abbreviations for the remaining products.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.21B-Freelancer--0_original-light-cx-656x510.png&quot; width=&quot;328&quot; height=&quot;255&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.21B. The designer&amp;#39;s system annotated with codes for later use. Note the consistency: every client code is three letters; every product code is two.&lt;/figcaption&gt; &lt;/picture&gt; &lt;/blockquote&gt;
&lt;h2 id=&quot;principle-use-existing-codes&quot;&gt;Principle: Use existing codes&lt;/h2&gt;
&lt;p&gt;Much of life already uses the concept of a short code. University courses have them. Creative agencies use them. Almost every professional job management system will allocate a &amp;#39;job number&amp;#39; of some kind. So where a code exists, don&amp;#39;t invent another.&lt;/p&gt;

&lt;blockquote class=&quot;hardcoded&quot;&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;Our student attends university in the Northern Hemisphere. They have the standard &lt;a href=&quot;https://jdcm.al/14.11/&quot;&gt;life admin&lt;/a&gt; pack at &lt;code&gt;10-19&lt;/code&gt;. And a similar structure at &lt;code&gt;20-29&lt;/code&gt; to handle the administration of being a student: finances, accommodation, and extra-curricular clubs. These are standard Johnny.Decimal areas.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;Their courses require an &lt;em&gt;expand an area&lt;/em&gt; solution. They naturally group by year then semester, and each has a code assigned by the university. Within each course, we use the same template, numbered from &lt;code&gt;10 … 60&lt;/code&gt;.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;It&amp;#39;s convenient that the first semester, Autumn, sorts before Spring. If this wasn&amp;#39;t the case, we could add numbers to the front to force a sort. Perhaps the month?&lt;/p&gt;&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21C-Student--0_original-light-cx-778x1350.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.21C-Student--0_original-dark-cx-778x1350.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21C-Student--0_original-light-cx-778x1350.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.21C-Student--0_original-dark-cx-778x1350.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line drawing showing our student&apos;s system as described above. We have areas, which contain years, which contain semesters, which contain classes, each of which has a template numbered in tens with &apos;course requirements&apos;, &apos;course curriculum&apos;, and so on.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.21C-Student--0_original-light-cx-778x1350.png&quot; width=&quot;389&quot; height=&quot;675&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.21C. A student&amp;#39;s system with an expanded area for course work. Note the consistency: every year has two semesters; every semester has course codes; every course is templated.&lt;/figcaption&gt; &lt;/picture&gt; &lt;/blockquote&gt;
&lt;h2 id=&quot;what-am-i-extendinggaining&quot;&gt;What am I extending/gaining?&lt;/h2&gt;
&lt;p&gt;One of your standard areas is being expanded. It can grow to an essentially infinite size: we have abandoned the constraints of Johnny.Decimal. So &lt;em&gt;be careful&lt;/em&gt;. Remember the chaos of the past. Don&amp;#39;t go back there.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-ids&quot;&gt;How does this affect my IDs?&lt;/h2&gt;
&lt;p&gt;The items in this area might not have numerical IDs. They might not have IDs at all.&lt;/p&gt;
&lt;p&gt;The point of IDs is to help you navigate to an item, and to give you a unique reference. In this setup, you might not need an ID for either of those things. Alternatively, you might design your own scheme as documented above.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-jdex&quot;&gt;How does this affect my JDex?&lt;/h2&gt;
&lt;p&gt;It depends. Remember the point of your JDex: to help you find things, quickly, with no stress. Because most of life isn&amp;#39;t discoverable.&lt;/p&gt;
&lt;p&gt;If you design an area that has this discoverability built-in -- because it&amp;#39;s a simple hierarchy of clients, products, and jobs -- then you might not need to refer to your JDex as often.&lt;/p&gt;
&lt;p&gt;If you want to keep notes in your JDex, you should assign an ID to an item and use that ID in your JDex as usual.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-multiple-systems&quot;&gt;Can I use this with &lt;em&gt;multiple systems&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;Yes. You may expand an area of a &lt;code&gt;SYS.AC.ID&lt;/code&gt; system.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-extend-the-end&quot;&gt;Can I use this with &lt;em&gt;extend the end&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;No. It makes no sense to &lt;em&gt;extend the end&lt;/em&gt; of an area that you have expanded.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-keep-an-eye-out&quot;&gt;
&lt;p&gt;Keep an eye on the &lt;a href=&quot;https://johnnydecimal.com/22.02/&quot;&gt;blog&lt;/a&gt; for updates. &lt;a href=&quot;#user-content-fnref-keep-an-eye-out&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-iso8601&quot;&gt;
&lt;p&gt;This is &lt;a href=&quot;https://en.wikipedia.org/wiki/ISO_8601&quot;&gt;ISO8601&lt;/a&gt; for the date nerds. &lt;a href=&quot;#user-content-fnref-iso8601&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.11 Multiple systems</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.11-multiple-systems/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.11-multiple-systems/</guid><description>To manage multiple Johnny.Decimal systems, assign an identifier to the front of each one. We refer to this as SYS.AC.ID.</description><pubDate>Wed, 18 Sep 2024 13:11:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;If you manage two or more Johnny.Decimal systems, you need a way to identify them. For example, you have a system at home and at work.&lt;/p&gt;
&lt;p&gt;The two systems have nothing in common. But they both contain the ID &lt;code&gt;11.11&lt;/code&gt;. When you use this ID, to which system are you referring? It is now ambiguous.&lt;/p&gt;
&lt;h1 id=&quot;the-solution&quot;&gt;The solution&lt;/h1&gt;
&lt;p&gt;We recognise that these two (or more) systems are distinct and separate, and assign each of them a &amp;#39;system identifier&amp;#39; before &lt;code&gt;AC.ID&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Use three characters of the form &lt;code&gt;[A-Z][0-9][0-9]&lt;/code&gt;, i.e. &lt;code&gt;A00 … Z99&lt;/code&gt;. We refer to this as &lt;code&gt;SYS.AC.ID&lt;/code&gt;.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;We assign our home system the identifier &lt;code&gt;H01&lt;/code&gt; and our work system &lt;code&gt;W01&lt;/code&gt;.&lt;sup&gt;*&lt;/sup&gt; The full ID for &lt;code&gt;11.11&lt;/code&gt; in each of these systems is now &lt;code&gt;H01.11.11&lt;/code&gt; and &lt;code&gt;W01.11.11&lt;/code&gt;, respectively.&lt;/p&gt;&lt;p class=&quot;no-arrow&quot;&gt;&lt;em&gt;&lt;sup&gt;*&lt;/sup&gt;I encourage you to be more creative. Interesting letter/number combinations will help your brain.&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h2 id=&quot;what-am-i-extendinggaining&quot;&gt;What am I extending/gaining?&lt;/h2&gt;
&lt;p&gt;This scheme extends the number of available systems from one (1) -- the classic &lt;code&gt;AC.ID&lt;/code&gt; -- to 2,600.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-ids&quot;&gt;How does this affect my IDs?&lt;/h2&gt;
&lt;p&gt;Within each system, IDs are unaffected. Each system is a standard implementation of Johnny.Decimal.&lt;/p&gt;
&lt;h2 id=&quot;how-does-this-affect-my-jdex&quot;&gt;How does this affect my JDex?&lt;/h2&gt;
&lt;p&gt;If your JDex contains entries for both systems, each entry must include the full &lt;code&gt;SYS.AC.ID&lt;/code&gt; identifier. Otherwise, searching for &lt;code&gt;11.11&lt;/code&gt; might return both results, which is ambiguous.&lt;/p&gt;
&lt;p&gt;If your systems exist in separate domains, you may not need to do this. See &lt;a href=&quot;https://johnnydecimal.com/13.12/&quot;&gt;the guidelines&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-expand-an-area&quot;&gt;Can I use this with &lt;em&gt;expand an area&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;Yes. You may &lt;em&gt;expand an area&lt;/em&gt; of a &lt;code&gt;SYS.AC.ID&lt;/code&gt; system.&lt;/p&gt;
&lt;h2 id=&quot;can-i-use-this-with-extend-the-end&quot;&gt;Can I use this with &lt;em&gt;extend the end&lt;/em&gt;?&lt;/h2&gt;
&lt;p&gt;Yes. You can &lt;em&gt;extend the end&lt;/em&gt; of a &lt;code&gt;SYS.AC.ID&lt;/code&gt; system.&lt;/p&gt;
&lt;h2 id=&quot;when-should-i-usenot-use-this&quot;&gt;When should I use/not use this?&lt;/h2&gt;
&lt;p&gt;Use this when you have two or more systems in the same domain. Or you may choose to label systems in separate domains for clarity -- like in our home/work example.&lt;/p&gt;
&lt;p&gt;Avoid creating multiple systems where possible -- always prefer to &amp;#39;fill up&amp;#39; an existing system. More systems equals more complexity. Complexity is to be avoided.&lt;/p&gt;
&lt;p&gt;Most people can fit their entire personal life in one Johnny.Decimal system. If you&amp;#39;ve run out of room, try to compress your system before creating another.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>13.01 Introduction</title><link>https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.01-introduction/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/13-system-expansion/13.01-introduction/</guid><description>The Johnny.Decimal structure is simple by design. But life doesn&apos;t always fit in a neat box. I outline three options for system expansion here.</description><pubDate>Wed, 18 Sep 2024 13:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;The Johnny.Decimal structure is two-dimensional by design -- areas and categories. This limitation is part of what makes it powerful. It&amp;#39;s hard to get lost in a simple space.&lt;/p&gt;
&lt;p&gt;But sometimes an extra dimension is required. Maybe you need to make more room in one part of a standard system. Or perhaps you have two or more systems and need to differentiate between them.&lt;/p&gt;
&lt;p&gt;This page provides an overview of the three options. More detail is provided on the following pages.&lt;/p&gt;
&lt;h1 id=&quot;definitions&quot;&gt;Definitions&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;The Johnny.Decimal system:&lt;/strong&gt; is a collection of methods, tools, and behaviours as documented at johnnydecimal.com.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Johnny.Decimal system:&lt;/strong&gt; is your implementation of this system, customised to suit whatever it is that you&amp;#39;re organising.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Components:&lt;/strong&gt; Johnny.Decimal systems are made up of components. The list of components is not restricted, but the following are common: the JDex, file system, notes, tasks, to-dos, reminders, email, calendar, bookmarks.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Domains:&lt;/strong&gt; systems with one or more shared components are grouped by domain. For example, when you go to work and everything is on the company&amp;#39;s systems, &amp;#39;work&amp;#39; is its own domain. It is completely separate from your home system &lt;span style=&quot;white-space: nowrap;&quot;&gt;--&lt;/span&gt; your &amp;#39;personal&amp;#39; domain.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AC.ID notation:&lt;/strong&gt; shorthand to refer to any generic Johnny.Decimal system. It stands for &lt;a href=&quot;https://johnnydecimal.com/12.05/&quot;&gt;area, category, ID&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;multiple-systems&quot;&gt;Multiple systems&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Consider this option if:&lt;/strong&gt; you need to differentiate between two or more Johnny.&lt;wbr&gt;Decimal systems.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;example&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;You have a system at home to manage your personal life. When you go to work, the company has its own system. So you have two separate systems and you need to differentiate between them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; add a unique identifier to the start of each system.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01A-Multiple_systems--0_original-light-cx-594x662.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01A-Multiple_systems--0_original-dark-cx-594x662.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01A-Multiple_systems--0_original-light-cx-594x662.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01A-Multiple_systems--0_original-dark-cx-594x662.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line diagram. It shows two Johnny.Decimal systems with unnamed areas. The first has a new box extending from the front labelled &apos;home&apos;. The second has the same labelled &apos;work&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.01A-Multiple_systems--0_original-light-cx-594x662.png&quot; width=&quot;297&quot; height=&quot;331&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.01A. Multiple systems, each with a unique identifier at the front.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;For more information, see &lt;a href=&quot;https://johnnydecimal.com/13.11&quot;&gt;13.11 Multiple systems&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;expand-an-area&quot;&gt;Expand an area&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Consider this option if:&lt;/strong&gt; most of your life fits neatly in to a standard Johnny.&lt;wbr&gt;Decimal system. But you have one area that doesn&amp;#39;t. Either it has more than 10 of something, or it requires more depth than the system allows.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;example-1&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;You&amp;#39;re a student with more than 10 classes. Or you&amp;#39;re a freelance designer with more than 10 clients, each with more than 10 products that you work on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; expand one of your areas to accommodate.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01B-Expand_an_area--0_original-light-cx-840x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01B-Expand_an_area--0_original-dark-cx-840x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01B-Expand_an_area--0_original-light-cx-840x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01B-Expand_an_area--0_original-dark-cx-840x510.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line diagram. It shows a Johnny.Decimal system with areas 10-19 through 40-49. Area 30-39 is physically larger than the others and &apos;breaks out&apos; of the main box, indicating that we&apos;ve expanded it.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.01B-Expand_an_area--0_original-light-cx-840x510.png&quot; width=&quot;420&quot; height=&quot;255&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.01B. An expanded area within a standard system.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;For more information, see &lt;a href=&quot;https://johnnydecimal.com/13.21&quot;&gt;13.21 Expand an area&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;extend-the-end&quot;&gt;Extend the end&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Consider this option if:&lt;/strong&gt; almost everything in your system fits neatly in to the standard Johnny.&lt;wbr&gt;Decimal structure. But you have an ID that needs to be repeated, or you require more than 100 IDs in a category.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;example-2&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;You&amp;#39;re using the standard &lt;a href=&quot;https://jdcm.al/14.11/&quot;&gt;life admin&lt;/a&gt; pack and you have four kids. You need a way to organise the busier IDs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; extend the end to cover each child.
&lt;code&gt;11.24+JEM&lt;/code&gt; is the ID for Jemima&amp;#39;s visits to the optician or dentist. Similarly, we have &lt;code&gt;11.24+BEL&lt;/code&gt;, &lt;code&gt;11.24+MAR&lt;/code&gt;, and &lt;code&gt;11.24+WEN&lt;/code&gt; for Belinda, Marie, and Wendy.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-the-plus&quot; id=&quot;user-content-fnref-the-plus&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;example-3&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;In my old job, &lt;code&gt;72.02&lt;/code&gt; was the task of installing cabling at a data centre. But there were 13 data centres.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; extend the end to cover each data centre.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;72.02+X01&lt;/code&gt; was the centre with site code &lt;code&gt;X01&lt;/code&gt;, &lt;code&gt;72.02+Y02&lt;/code&gt; had site code &lt;code&gt;Y02&lt;/code&gt;, etc. This worked because most of the other IDs in this system didn&amp;#39;t need to occur 13 times.&lt;/p&gt;
&lt;h3 id=&quot;example-4&quot;&gt;Example&lt;/h3&gt;
&lt;p&gt;My blog will have more than 100 posts over time. So each post can&amp;#39;t be a standard ID.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; use the category ID for the blog (in this case &lt;code&gt;22.00&lt;/code&gt;) and extend the end with each blog post number.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;22.00+0001&lt;/code&gt; was the first post; we&amp;#39;re currently on &lt;code&gt;22.00+0074&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-blog-plus&quot; id=&quot;user-content-fnref-blog-plus&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; The ID retains the blog reference, while allowing for 10,000 posts.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01C-Extend_the_end--0_original-light-cx-900x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/13.01C-Extend_the_end--0_original-dark-cx-900x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01C-Extend_the_end--0_original-light-cx-900x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/13.01C-Extend_the_end--0_original-dark-cx-900x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line diagram. It shows a portion of a standard Johnny.Decimal system, focusing on the ID &apos;11.24 Eyes, ears, &amp;#38; teeth&apos;. At the end of that ID, and extending out of the right side of the diagram, is another box labelled &apos;+JEM&apos;, indicating that we&apos;ve extended this ID for Jemima.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/13.01C-Extend_the_end--0_original-light-cx-900x310.png&quot; width=&quot;450&quot; height=&quot;155&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 13.01C. Extending an ID at the end of a system.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;For more information, see &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;13.31 Extend the end&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-the-plus&quot;&gt;
&lt;p&gt;Don&amp;#39;t worry about the &lt;code&gt;+&lt;/code&gt; for now, we&amp;#39;ll talk about it later. &lt;a href=&quot;#user-content-fnref-the-plus&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-blog-plus&quot;&gt;
&lt;p&gt;The blog currently uses a decimal as the final separator, not a plus. I am in the process of updating it. &lt;a href=&quot;#user-content-fnref-blog-plus&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0079 &apos;System expansion&apos; rewrite</title><link>https://johnnydecimal.com/22.00.0079/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0079/</guid><description>We&apos;ve re-written and expanded category &apos;13 System expansion&apos;.</description><pubDate>Wed, 18 Sep 2024 02:56:03 GMT</pubDate><content:encoded>&lt;h1 id=&quot;system-expansion-rewrite&quot;&gt;&amp;#39;System expansion&amp;#39; rewrite&lt;/h1&gt;
&lt;p&gt;Continuing the &lt;a href=&quot;https://johnnydecimal.com/22.00.0070/&quot;&gt;all-site re-write&lt;/a&gt;, we&amp;#39;ve re-written and expanded category &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/13-system-expansion/&quot;&gt;13 System expansion&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The original &lt;a href=&quot;https://johnnydecimal.com/13.11/&quot;&gt;multiple systems&lt;/a&gt; concept remains; that page is now much simplified.&lt;/p&gt;
&lt;p&gt;Two new pages have been added.&lt;/p&gt;
&lt;h3 id=&quot;expand-an-area&quot;&gt;Expand an area&lt;/h3&gt;
&lt;p&gt;When you need a &lt;del&gt;bit&lt;/del&gt; lot more room in the middle, you can &lt;a href=&quot;https://johnnydecimal.com/13.21/&quot;&gt;expand an area&lt;/a&gt;. Use this when the usually-useful Johnny.Decimal constraints get in your way.&lt;/p&gt;
&lt;h3 id=&quot;extend-the-end&quot;&gt;Extend the end&lt;/h3&gt;
&lt;p&gt;And if you just need a bit more room at the end, &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extend the end&lt;/a&gt;. Use this when you just have the odd ID here and there that needs a bit more space.&lt;/p&gt;
&lt;p&gt;All the information is on those pages so I&amp;#39;ll just let you head over there and read them.&lt;/p&gt;
&lt;p&gt;Feedback always welcome. Head to the forum, Discord, or drop me an email.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0078 Video series: Managing your JDex with Bear</title><link>https://johnnydecimal.com/22.00.0078/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0078/</guid><description>Announcing a video series: how I manage my JDex using the notes app Bear.</description><pubDate>Thu, 12 Sep 2024 09:05:59 GMT</pubDate><content:encoded>&lt;h1 id=&quot;video-series-managing-your-jdex-with-bear&quot;&gt;Video series: Managing your JDex with Bear&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s something I&amp;#39;ve been wanting to do for ages: a video series showing how I use the Mac/iOS app &lt;a href=&quot;https://bear.app&quot;&gt;Bear&lt;/a&gt;, which I &lt;em&gt;love&lt;/em&gt;, to manage my &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This series will also serve as the introductory videos for the &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;Quick Start: &amp;#39;Life admin&lt;/a&gt;&amp;#39; pack. In each video I&amp;#39;ll use an ID from the pack to demonstrate Bear&amp;#39;s features.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s the first. Subscribe to the channel for the rest; they&amp;#39;ll come at about one a week.&lt;/p&gt;
  </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0077 Old vs. new IDs</title><link>https://johnnydecimal.com/22.00.0077/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0077/</guid><description>How I used to create IDs; how I do it now.</description><pubDate>Wed, 11 Sep 2024 21:31:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;old-vs-new-ids&quot;&gt;Old vs. new IDs&lt;/h1&gt;
&lt;p&gt;I got myself a snazzy new keyboard this week. They were on sale and my previous, the &lt;a href=&quot;https://duckduckgo.com/?q=microsoft+ergo+sculpt+keyboard&amp;t=osx&amp;iax=images&amp;ia=images&quot;&gt;Microsoft Ergo Sculpt&lt;/a&gt;, feels like it&amp;#39;s starting to fail.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0077A-Keychron_K15_Pro--0_original-light-1280x653.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0077A-Keychron_K15_Pro--0_original-dark-1280x653.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0077A-Keychron_K15_Pro--0_original-light-1280x653.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0077A-Keychron_K15_Pro--0_original-dark-1280x653.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the keyboard. Its key feature is that it&apos;s a split layout with each side&apos;s keys angled outwards; designed for touch-typists.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0077A-Keychron_K15_Pro--0_original-light-1280x653.jpeg&quot; width=&quot;1280&quot; height=&quot;653&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0077A. Keychron K15 Pro (Alice layout). Photo courtesy Keychron; not my desk (but nice pencil).&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;It comes with a manual which I&amp;#39;d like to save, and while I&amp;#39;m at it I thought I&amp;#39;d download the manual for &lt;a href=&quot;https://www.keychron.com/products/keychron-k8-tenkeyless-wireless-mechanical-keyboard&quot;&gt;Lucy&amp;#39;s keyboard&lt;/a&gt; as well.&lt;/p&gt;
&lt;h3 id=&quot;theres-a-place-for-that&quot;&gt;There&amp;#39;s a place for that&lt;/h3&gt;
&lt;p&gt;Life admin already has a place! I even remember discussing it with Lucy.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Life admin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;14&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;My online life&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;14.15&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;My accessories&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;And so I make a new note in my JDex and that&amp;#39;s it, job done.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0077B-1415JDex_Bear--0_original-light-cx-956x838.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0077B-1415JDex_Bear--0_original-dark-cx-956x838.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0077B-1415JDex_Bear--0_original-light-cx-956x838.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0077B-1415JDex_Bear--0_original-dark-cx-956x838.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Bear showing my note telling myself that the manuals are in my file system.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0077B-1415JDex_Bear--0_original-light-cx-956x838.png&quot; width=&quot;956&quot; height=&quot;838&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 0077B. JDex entry 14.15 in Bear.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;how-i-did-this-previously&quot;&gt;How I did this previously&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m really enjoying this shift to a less-granular ID. Designing &amp;#39;life admin&amp;#39; in to a single area forced us to do it, and I&amp;#39;m thankful for it.&lt;/p&gt;
&lt;p&gt;In my previous system this would have been:&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Personal, daily life&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;14&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Technology&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;14.64&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Keychron keyboard manuals &amp; receipt&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;(It just happens that my previous &lt;code&gt;14&lt;/code&gt; was also technology.)&lt;/p&gt;
&lt;p&gt;That is a &lt;em&gt;much&lt;/em&gt; more specific ID, but more importantly &lt;strong&gt;it would have required me to create it&lt;/strong&gt; first. This tiny, tiny friction is enough to stop you doing a thing.&lt;/p&gt;
&lt;p&gt;Whereas this morning, when I thought to save these manuals, there was no friction. &lt;em&gt;Great idea&lt;/em&gt;, I thought. &lt;em&gt;I already know where they go&lt;/em&gt;.&lt;/p&gt;
&lt;h2 id=&quot;why-is-the-receipt-in-bear&quot;&gt;Why is the receipt in Bear?&lt;/h2&gt;
&lt;p&gt;In recording a little YouTube series for Bear (keep an eye on &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;the channel&lt;/a&gt;), I wondered to myself why I don&amp;#39;t use its feature whereby it lets you &lt;a href=&quot;https://bear.app/faq/insert-attachments/&quot;&gt;attach pretty much anything to a note&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;This is probably useful&lt;/em&gt;, I thought. So I put my keyboard&amp;#39;s receipt in there. I wondered whether it was Spotlight-searchable, which it is; the file is just in a folder buried in your iCloud drive.&lt;/p&gt;
&lt;p&gt;In this particular case I think I&amp;#39;ll move it back to my main file system folder. Because there&amp;#39;s no situation I can envisage where I&amp;#39;ll be on the move and need this file on my iPhone.&lt;/p&gt;
&lt;p&gt;Contrast with, say, tickets to an art gallery. I think there&amp;#39;s a case to be made there that having those available in the Bear note &lt;code&gt;15.34 The arts&lt;/code&gt; is going to be way easier when you get to the gallery.&lt;/p&gt;
&lt;p&gt;Both locations &lt;em&gt;are&lt;/em&gt; available from my iPhone: they&amp;#39;re just files in iCloud. But finding a file in Bear is a nicer experience than doing it in the Files app. (Because what isn&amp;#39;t?)&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0076 RSS whoops</title><link>https://johnnydecimal.com/22.00.0076/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0076/</guid><description>I&apos;m aware of the dodgy items in the feed.</description><pubDate>Wed, 11 Sep 2024 06:36:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rss-whoops&quot;&gt;RSS whoops&lt;/h1&gt;
&lt;p&gt;Just a quick note to say that I&amp;#39;m aware of the dodgy 13.__ items in the feed.&lt;/p&gt;
&lt;p&gt;Thanks to Decimal Gemma for letting me know. Just thought I&amp;#39;d put this in your feed so you know that I know. :-)&lt;/p&gt;
&lt;p&gt;(As usual, it was me fat-fingering a &lt;code&gt;git&lt;/code&gt; command.)&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0075 Increase contrast</title><link>https://johnnydecimal.com/22.00.0075/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0075/</guid><description>&apos;Increase contrast&apos; mode makes everything feel normal again.</description><pubDate>Tue, 10 Sep 2024 22:57:48 GMT</pubDate><content:encoded>&lt;h1 id=&quot;increase-contrast&quot;&gt;Increase contrast&lt;/h1&gt;
&lt;p&gt;A couple of weeks ago I had a Zoom chat with Decimal Jade,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-decimal&quot; id=&quot;user-content-fnref-decimal&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; and noticed that her screen looked really really cool. &lt;em&gt;What&amp;#39;s that?&lt;/em&gt;, I asked her.&lt;/p&gt;
&lt;p&gt;It was macOS&amp;#39; &lt;a href=&quot;https://support.apple.com/en-gb/guide/mac-help/unac089/mac&quot;&gt;increase contrast&lt;/a&gt; accessibility mode, and it&amp;#39;s changed my life.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s how a modern mail window looks.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075A-Mail_new_low_contrast--0_original-light-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075A-Mail_new_low_contrast--0_original-dark-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075A-Mail_new_low_contrast--0_original-light-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075A-Mail_new_low_contrast--0_original-dark-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A new mail in macOS&apos; Mail.app.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0075A-Mail_new_low_contrast--0_original-light-cx-1120x678.png&quot; width=&quot;560&quot; height=&quot;339&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0075A. That&amp;#39;s not a button…&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;And here&amp;#39;s how it looks with increased contrast. (And Berkeley Mono set as the display font.)&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075B-Mail_new_high_contrast--0_original-light-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075B-Mail_new_high_contrast--0_original-dark-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075B-Mail_new_high_contrast--0_original-light-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075B-Mail_new_high_contrast--0_original-dark-cx-1120x678.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A new mail in macOS&apos; Mail.app. High contrast mode is on so every button has a border; every area of the window is delimited from the others with a strong line. Suddenly you know where you are again.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0075B-Mail_new_high_contrast--0_original-light-cx-1120x678.png&quot; width=&quot;560&quot; height=&quot;339&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0075B. …that&amp;#39;s a button!&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;This difference is startling to my eyes and it&amp;#39;s changing how I use my computer.&lt;/p&gt;
&lt;p&gt;I use windows -- lowercase -- heavily, as in I have lots of overlapping windows open. As well as making each individual app easier to use, it makes my entire desktop more cohesive.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s the before. (Full size &lt;a href=&quot;https://johnnydecimal.com/img/v6/22.00.0075C-Desktop_low_contrast--0_original-light-cx-4178x2832.png&quot;&gt;light&lt;/a&gt;, &lt;a href=&quot;https://johnnydecimal.com/img/v6/22.00.0075C-Desktop_low_contrast--0_original-dark-cx-4178x2832.png&quot;&gt;dark&lt;/a&gt;.)&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075C-Desktop_low_contrast--0_original-light-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075C-Desktop_low_contrast--0_original-dark-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075C-Desktop_low_contrast--0_original-light-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075C-Desktop_low_contrast--0_original-dark-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;My desktop, with a handful of windows open, overlapping each other. Low contrast mode; everything just kinda blends together.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0075C-Desktop_low_contrast--0_original-light-cx-4178x2832.png&quot; width=&quot;2089&quot; height=&quot;1416&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0075C. Low-contrast desktop.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;And after. (Full size &lt;a href=&quot;https://johnnydecimal.com/img/v6/22.00.0075D-Desktop_high_contrast--0_original-light-cx-4178x2832.png&quot;&gt;light&lt;/a&gt;, &lt;a href=&quot;https://johnnydecimal.com/img/v6/22.00.0075D-Desktop_high_contrast--0_original-dark-cx-4178x2832.png&quot;&gt;dark&lt;/a&gt;.)&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075D-Desktop_high_contrast--0_original-light-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075D-Desktop_high_contrast--0_original-dark-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075D-Desktop_high_contrast--0_original-light-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075D-Desktop_high_contrast--0_original-dark-cx-4178x2832.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;My desktop, with a handful of windows open, overlapping each other. High contrast mode; everything just kinda pops.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0075D-Desktop_high_contrast--0_original-light-cx-4178x2832.png&quot; width=&quot;2089&quot; height=&quot;1416&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0075D. High-contrast desktop.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;To my eyes we&amp;#39;ve gone from a kinda-pleasing-I-guess? &lt;em&gt;smush&lt;/em&gt; of windows to a version where everything &lt;em&gt;pops&lt;/em&gt;. Windows have an identity now. You might not find it as visually pleasing, but functionally it&amp;#39;s night and day.&lt;/p&gt;
&lt;p&gt;And, after running it for a few weeks, I &lt;em&gt;do&lt;/em&gt; find it more aesthetically pleasing. What made us so afraid of a border around an icon? (A: &lt;a href=&quot;https://www.youtube.com/watch?v=1jdPKi5i030&quot;&gt;Jony Ive&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;Modern apps have embraced this squishy-edge mentality, to their detriment. Here&amp;#39;s Slack on my iPad. Honestly I look at that and I&amp;#39;ve no idea what I&amp;#39;m meant to do. I hate it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075E-Slack_iPad--0_original-light-cx-640x447.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0075E-Slack_iPad--0_original-dark-cx-640x447.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075E-Slack_iPad--0_original-light-cx-640x447.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0075E-Slack_iPad--0_original-dark-cx-640x447.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Slack. Meh.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0075E-Slack_iPad--0_original-light-cx-640x447.png&quot; width=&quot;640&quot; height=&quot;447&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Figure 22.00.0075E. Slack on iPad. A big meh sandwich.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;There are whole threads of information hidden behind 8-point blue text. It&amp;#39;s ridiculously un-discoverable.&lt;/p&gt;
&lt;h2 id=&quot;try-it&quot;&gt;Try it&lt;/h2&gt;
&lt;p&gt;Give this a go for a couple of days. It&amp;#39;s a single toggle in your system&amp;#39;s &lt;code&gt;Settings&lt;/code&gt; → &lt;code&gt;Accessibility&lt;/code&gt; → &lt;code&gt;Display&lt;/code&gt; → &lt;code&gt;Increase contrast&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think I&amp;#39;ll ever go back.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-decimal&quot;&gt;
&lt;p&gt;Friends-of-the-system are bestowed with the honorific &amp;#39;Decimal&amp;#39;. &lt;a href=&quot;#user-content-fnref-decimal&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0074 YouTube: Focus and productivity series</title><link>https://johnnydecimal.com/22.00.0074/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0074/</guid><description>Announcing a new YouTube series, Focus and productivity.</description><pubDate>Tue, 03 Sep 2024 22:58:44 GMT</pubDate><content:encoded>&lt;h1 id=&quot;youtube-focus-and-productivity-series&quot;&gt;YouTube: Focus and productivity series&lt;/h1&gt;
&lt;p&gt;For those of you not subscribed&lt;sup&gt;&lt;a href=&quot;#user-content-fn-shame&quot; id=&quot;user-content-fnref-shame&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; to &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;the channel&lt;/a&gt;, we put up the first in a new series of videos yesterday.&lt;/p&gt;
&lt;p&gt;&amp;#39;&lt;a href=&quot;https://www.youtube.com/playlist?list=PLtBN5zRaar6oCKPQ3MdILOsinh6W4JV_x&quot;&gt;Focus and productivity&lt;/a&gt;&amp;#39; will be about how I use my system to stay focused myself. The first round of videos will explain how I&amp;#39;m using Timery&amp;#39;s widgets, Live Activities, Apple&amp;#39;s Focus modes, with Shortcuts tying everything together, to stay focused.&lt;/p&gt;
&lt;p&gt;If that sounds complex it&amp;#39;s because it is, a bit. But once set up, it works. Basically I tell myself, via a timer which is displayed as a widget, what it is that I want to be doing.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0074A-Timery_on_floating_iPhone--0_original-light-cx-1279x657.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/22.00.0074A-Timery_on_floating_iPhone--0_original-dark-cx-1279x657.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0074A-Timery_on_floating_iPhone--0_original-light-cx-1279x657.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/22.00.0074A-Timery_on_floating_iPhone--0_original-dark-cx-1279x657.jpeg&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A picture of an iPhone on a microphone mount &apos;floating&apos; above my monitor. On it is a timer, that tells me I should be working on activity &apos;90033 NFC tags, Timery, and Focus modes&apos; -- which is the video I&apos;m talking about in this post.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/22.00.0074A-Timery_on_floating_iPhone--0_original-light-cx-1279x657.jpeg&quot; width=&quot;1279&quot; height=&quot;657&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Floating iPhone tells me what I should be doing&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Am I writing this blog post? Creating the video series? Spending time on my forum or Discord?&lt;/p&gt;
&lt;p&gt;Or am I not at work? Should I be with &lt;del&gt;the chickens&lt;/del&gt; Lucy? Should I be offline entirely?&lt;/p&gt;
&lt;h3 id=&quot;the-problem&quot;&gt;The problem&lt;/h3&gt;
&lt;p&gt;There was a day when I was working, and I went to the kitchen to get a glass of water, and an hour later I swear I was at the shops or something and I thought, &lt;em&gt;wait ... what am I doing here?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Many of us know the problem of distraction; of trying to stay focused on &lt;em&gt;this thing&lt;/em&gt;. Your computer makes it positively easy to do &lt;a href=&quot;https://chicken.photos&quot;&gt;something else&lt;/a&gt;. So this is me trying to build a habit; trying to be better at doing this thing until &lt;em&gt;I decide&lt;/em&gt; it&amp;#39;s time to stop.&lt;/p&gt;
&lt;h3 id=&quot;the-solution&quot;&gt;The &amp;#39;solution&amp;#39;&lt;/h3&gt;
&lt;p&gt;Heavy air-quotes there. So far this is really helping, but there&amp;#39;s a ways to go.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using Apple&amp;#39;s &lt;a href=&quot;https://www.macstories.net/reviews/ios-16-1-and-apps-with-live-activities-the-macstories-roundup-part-1/&quot;&gt;Live Activities&lt;/a&gt;, which are basically widgets everywhere -- including on your lock screen -- along with &lt;a href=&quot;https://timeryapp.com&quot;&gt;Timery&lt;/a&gt;, to always display a running timer on all of my devices.&lt;/p&gt;
&lt;p&gt;That timer tells me what I should be doing. Basically that&amp;#39;s it. So now when I wander off to the shop, as I pick up my phone on the way out the door I see that widget and think, &lt;em&gt;wait a minute&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;At my desk, I&amp;#39;ve got a spare iPhone suspended on a microphone boom arm above my monitor.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-video&quot; id=&quot;user-content-fnref-video&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; It&amp;#39;s pretty cool! So I&amp;#39;ve got this floating display, as well as a widget on my Desktop, always reminding me: &lt;em&gt;do this&lt;/em&gt;.&lt;/p&gt;
&lt;h3 id=&quot;exploring-this-topic&quot;&gt;Exploring this topic&lt;/h3&gt;
&lt;p&gt;I&amp;#39;ll show this setup in detail, and the rest of this series will address the topic of focus and productivity more broadly. We&amp;#39;re aiming to put out a video a week.&lt;/p&gt;
&lt;p&gt;I hope you like them and, as always, let us know what you think and what else you&amp;#39;d like to see.&lt;/p&gt;
&lt;h3 id=&quot;the-video&quot;&gt;The video&lt;/h3&gt;
  
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-shame&quot;&gt;
&lt;p&gt;Shame on you! Subscribe and get me to 1,000 followers please. :-) &lt;a href=&quot;#user-content-fnref-shame&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-video&quot;&gt;
&lt;p&gt;It&amp;#39;s the phone we use to shoot video; it&amp;#39;s too precious (and enormous) to ever leave the house. My iPhone is a 12 mini. &lt;a href=&quot;#user-content-fnref-video&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0073 Slack × Life admin: an experiment</title><link>https://johnnydecimal.com/22.00.0073/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0073/</guid><description>Announcing a new Slack, dedicated to detailed discussion of the &apos;life admin&apos; pack.</description><pubDate>Thu, 29 Aug 2024 04:06:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;slack--life-admin-an-experiment&quot;&gt;Slack × Life admin: an experiment&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Update 2024-09-25:&lt;/strong&gt; the experiment worked, in that it made me realise that I will not be using Slack. The invitation has been disabled. Watch the blog for more updates but, spoiler: it&amp;#39;ll be &lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There&amp;#39;s been some great discussion in the &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;life admin&lt;/a&gt; support thread &lt;a href=&quot;https://forum.johnnydecimal.com/t/quick-start-life-admin-support-topic/1660&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In thinking about the next Quick Start pack, which will be &amp;#39;Small business&amp;#39;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-club&quot; id=&quot;user-content-fnref-club&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;, I&amp;#39;m interested in the idea of providing &lt;em&gt;really specific&lt;/em&gt; support at the ID level.&lt;/p&gt;
&lt;p&gt;I want to start this experiment with the life admin pack.&lt;/p&gt;
&lt;h3 id=&quot;the-goal&quot;&gt;The goal&lt;/h3&gt;
&lt;p&gt;An example will help. Let&amp;#39;s say we end up with&lt;br&gt;&lt;code&gt;13 Finance &amp;gt; 13.11 Quarterly accounting&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The pack will give you a place to put that: but what if it was also your operations manual, so that you not only knew &lt;em&gt;where&lt;/em&gt; to store your accounts, but &lt;em&gt;how&lt;/em&gt; to do them.&lt;/p&gt;
&lt;p&gt;Why does every small business have to figure this out for themselves? Surely we can be more efficient than that.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t create a small business operations manual by myself. But together, we can.&lt;/p&gt;
&lt;h3 id=&quot;one-channel-per-id&quot;&gt;One channel per ID&lt;/h3&gt;
&lt;p&gt;The idea is that we&amp;#39;ll use Slack, and each ID in the pack will have its own channel.&lt;/p&gt;
&lt;p&gt;Then you can ask for help in that channel and get really specific advice. Perhaps someone is an accountant; or maybe they live in your state and understand your question about tax law. Or maybe they just did it themselves last month and have experience to share.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll extract this knowledge and make it a permanent part of the system.&lt;/p&gt;
&lt;h3 id=&quot;why-slack&quot;&gt;Why Slack?&lt;/h3&gt;
&lt;p&gt;I&amp;#39;m wary of adding another comms channel to this system. It&amp;#39;s something else to manage.&lt;/p&gt;
&lt;p&gt;But my existing options aren&amp;#39;t suitable. I want this to be the sort of place you can jump in and &amp;#39;chat&amp;#39;, so that rules out the forum. Discord could possibly work -- but I get the feeling that small business owners would rather not spend their day on a platform built for gamers.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m going to try Slack. Like the title says: this is an experiment. Feedback is welcome.&lt;/p&gt;
&lt;h3 id=&quot;free-now-not-always&quot;&gt;Free now; not always&lt;/h3&gt;
&lt;p&gt;To seed this, invitations are currently open. When we create the small business pack later this year this will become a perk that is only available to those who buy it.&lt;/p&gt;
&lt;p&gt;Because, to reinforce the point: this is place to get &lt;em&gt;targeted advice&lt;/em&gt; on a specific Quick Start issue. So if you&amp;#39;re not using the pack, it&amp;#39;s not going to be useful.&lt;/p&gt;
&lt;h1 id=&quot;life-admin&quot;&gt;Life admin&lt;/h1&gt;
&lt;p&gt;This all applies to the life admin pack, so let&amp;#39;s try it out. Here&amp;#39;s how it works.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You need advice about a specific ID in the pack. Say &lt;code&gt;13.21 Budgets &amp;amp; planning&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;If that channel doesn&amp;#39;t already exist, create it. All members have permission to do this.&lt;/li&gt;
&lt;li&gt;Post your question.&lt;/li&gt;
&lt;li&gt;Happiness.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;get-access&quot;&gt;Get access&lt;/h3&gt;
&lt;p&gt;&lt;del&gt;Here&amp;#39;s the link. See you there.&lt;/del&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-club&quot;&gt;
&lt;p&gt;It&amp;#39;ll also cover your community club, or that kindergarten you&amp;#39;re the treasurer for, or anything similar. &lt;a href=&quot;#user-content-fnref-club&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>14.02 JD University</title><link>https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.02-jdu/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.02-jdu/</guid><description>Johnny.Decimal University is our where we teach you how to be more organised.</description><pubDate>Mon, 19 Aug 2024 14:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;johnnydecimal-university&quot;&gt;Johnny.Decimal University&lt;/h1&gt;
&lt;p&gt;When I sit at my computer, I know where everything is. I know what to do next. I feel calm, and in control. &lt;strong&gt;At JDU, I&amp;#39;ll teach you these skills&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;all-in-one&quot;&gt;All-in-one&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s better value for you, and simpler for me, if I give you all of our video content in one package.&lt;/p&gt;
&lt;p&gt;We create courses that reference each other. I want to be able to tell you something &lt;em&gt;over here&lt;/em&gt; and refer you to something &lt;em&gt;over there&lt;/em&gt;. This is simpler and more effective for both of us.&lt;/p&gt;
&lt;p&gt;I can only do that if you have access to everything we make. So that&amp;#39;s what JDU is: &lt;strong&gt;access to all of our existing learning content, and everything we&amp;#39;ll make in the future&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&quot;---&quot;&gt;&lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt; + &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt; = &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;&lt;/h3&gt;
&lt;p class=&quot;ppp-notice ppp-only&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;
&lt;p&gt;This is stunning value for you. Because if the &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;workshop&lt;/a&gt;, our &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;task and project management course&lt;/a&gt;, and all their benefits were sold separately, what would I be charging?&lt;/p&gt;
&lt;p&gt;They&amp;#39;d be &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt; each, easy. Find a meticulously planned and recorded 5-hour+ training course that isn&amp;#39;t &lt;em&gt;at least&lt;/em&gt; &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;. Doesn&amp;#39;t exist.&lt;/p&gt;
&lt;p&gt;But instead of selling them separately, we package them all up as JDU. Because that makes more sense. And so how much is JDU?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt;. One-off, no subscription. Massive bargain.&lt;/strong&gt;&lt;/p&gt;
&lt;h3 id=&quot;whats-in-it&quot;&gt;What&amp;#39;s in it?&lt;/h3&gt;
&lt;p&gt;You get:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The 5-hour+ video &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;workshop&lt;/a&gt;, where me and Lucy show you how to build your own Johnny.Decimal system.&lt;/li&gt;
&lt;li&gt;The 4-hour &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;task and project management&lt;/a&gt; course, where I show you how to use the system to stay on top of everything you want/have to do.&lt;/li&gt;
&lt;li&gt;The online version of our free &lt;a href=&quot;https://johnnydecimal.com/22.00.0148/&quot;&gt;workbook&lt;/a&gt;, which is the textbook for the workshop.&lt;/li&gt;
&lt;li&gt;All video courses we record in the future will appear in your dashboard. They&amp;#39;re all included.&lt;/li&gt;
&lt;li&gt;Personal support. If you&amp;#39;re stuck, ask in the forum or Discord and I&amp;#39;ll be there to help.&lt;/li&gt;
&lt;/ul&gt;

&lt;div style=&quot;margin: 0 auto; width: fit-content;&quot;&gt;&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=jdu&quot; data-umami-event=&quot;1503-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&quot;oh-also-the-life-admin-system&quot;&gt;Oh also, the Life Admin System&lt;/h3&gt;
&lt;p&gt;It makes sense for us to give you the &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin System&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It represents ideal patterns that we spent months thinking about: so when designing your own system with the workshop, it would be stupid not to have it as a reference.&lt;/p&gt;
&lt;p&gt;I am far too rational for my own good, so it&amp;#39;s included with JDU. &lt;strong&gt;It&amp;#39;s worth &lt;span class=&quot;price-locale&quot; data-product=&quot;las&quot; data-just-the-price=&quot;true&quot;&gt;A$50&lt;/span&gt;&lt;/strong&gt;. I must be mad.&lt;/p&gt;
&lt;h3 id=&quot;oh-and-a-14-hour-excel-course&quot;&gt;Oh and a 14-hour Excel course&lt;/h3&gt;
&lt;p&gt;Back in 2022, Lucy and I recorded something I&amp;#39;d wanted to do for years: a complete beginner-to-expert Excel course.&lt;/p&gt;
&lt;p&gt;Lucy was literally using Excel as a neat grid of numbers, and doing maths on a desk calculator. So when we say &amp;#39;beginner&amp;#39;, we&amp;#39;re not kidding.&lt;/p&gt;
&lt;p&gt;Now she uses Tables and VLOOKUP. When everyone else is struggling to figure out what the AI did, be the one who actually knows how Excel works.&lt;/p&gt;
&lt;p&gt;I think it&amp;#39;s a really great course. It&amp;#39;s included.&lt;/p&gt;
&lt;h3 id=&quot;fair-value-all-round&quot;&gt;Fair value all round&lt;/h3&gt;
&lt;p&gt;This business is just me and Lucy. We don&amp;#39;t want to be greedy. We know the internet is full of people trying to get your money. Usually too much of it.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve priced this to be realistic. &lt;span class=&quot;price-locale&quot; data-product=&quot;jdu&quot; data-just-the-price=&quot;true&quot;&gt;A$300&lt;/span&gt; keeps our business going. And I honestly, truly believe that it&amp;#39;s exceptional value for you. I wouldn&amp;#39;t be able to sleep at night otherwise.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s a short video trailer.&lt;/p&gt;
&lt;div style=&quot;padding:56.25% 0 0 0;position:relative;&quot;&gt;&lt;iframe src=&quot;https://player.vimeo.com/video/1128422831?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479&quot; frameborder=&quot;0&quot; allow=&quot;autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share&quot; referrerpolicy=&quot;strict-origin-when-cross-origin&quot; style=&quot;position:absolute;top:0;left:0;width:100%;height:100%;&quot; title=&quot;About Johnny.Decimal University&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;h3 id=&quot;join-the-johnnydecimal-family&quot;&gt;Join the Johnny.Decimal family&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s our job to help you to be more organised, and less stressed. Join us, and we&amp;#39;ll give you all the support you need.&lt;/p&gt;
&lt;p class=&quot;price-locale&quot; data-product=&quot;jdu&quot;&gt;A$300. No subscription, and you get updates for
        life.
&lt;/p&gt;&lt;p class=&quot;ppp-notice&quot; style=&quot;display: none;&quot;&gt;&lt;/p&gt;

&lt;div style=&quot;margin: 0 auto; width: fit-content;&quot;&gt;&lt;pre style=&quot;border: 0; line-height: 1.2;&quot;&gt;&lt;a href=&quot;https://jdhq.johnnydecimal.com/sign-up/?product=jdu&quot; data-umami-event=&quot;1503-jdhq-link&quot; style=&quot;text-decoration: none;&quot;&gt;┌─────────────────┐
│  ▶  Buy now  ◀  │
└─────────────────┘&lt;/a&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;h3 id=&quot;human-guaranteed&quot;&gt;Human, guaranteed&lt;/h3&gt;
&lt;p&gt;Lovingly crafted by two humans. No AI here.&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t like it, let me know within 14 days and you can have your money back. No problem.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>31.02 Other useful tools</title><link>https://johnnydecimal.com/30-39-the-library/31-apps-and-utilities/31.02-other-useful-tools/</link><guid isPermaLink="true">https://johnnydecimal.com/30-39-the-library/31-apps-and-utilities/31.02-other-useful-tools/</guid><description>Here&apos;s a database of apps that people find useful. Want to submit an entry? Fill in the form.</description><pubDate>Sat, 17 Aug 2024 23:31:02 GMT</pubDate><content:encoded>&lt;h1 id=&quot;other-useful-tools&quot;&gt;Other useful tools&lt;/h1&gt;
&lt;p&gt;This page contains a list of apps (or links to other lists of apps) that people find useful. This list includes the apps from &lt;a href=&quot;https://johnnydecimal.com/31.01&quot;&gt;31.01&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This list is large enough to warrant its own Airtable database. It&amp;#39;s embedded here (and can take a few seconds to load), but for the full experience &lt;a href=&quot;https://airtable.com/appDPHORJwUCGOhLd/shrv5ssQAXi4Nbx1Z/tblvb3CnEnSMnxfwa/viwEXzEx3H3lAl4kN&quot;&gt;click through to Airtable&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Many apps these days are &amp;#39;&lt;a href=&quot;https://en.wikipedia.org/wiki/Freemium&quot;&gt;freemium&lt;/a&gt;&amp;#39;, and if the free version is functionally usable, its price is shown as $0.&lt;/p&gt;
&lt;iframe class=&quot;airtable-embed&quot; src=&quot;https://airtable.com/embed/appDPHORJwUCGOhLd/shr7685OzPo7L3sAZ?viewControls=on&quot; frameborder=&quot;0&quot; onmousewheel=&quot;&quot; width=&quot;100%&quot; height=&quot;533&quot; style=&quot;background: transparent; border: 1px solid #ccc;&quot;&gt;&lt;/iframe&gt;
&lt;h1 id=&quot;submit-an-entry&quot;&gt;Submit an entry&lt;/h1&gt;
&lt;p&gt;The form is &lt;a href=&quot;https://airtable.com/appDPHORJwUCGOhLd/shrNp8ivOdLholfId&quot;&gt;also available here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I wish I could just give y&amp;#39;all write access to the database, but Airtable doesn&amp;#39;t have a sensible way of doing that that doesn&amp;#39;t involve me giving them a thousand dollars.&lt;/p&gt;
&lt;p&gt;Note that your entry will appear immediately, and I&amp;#39;ll tidy it up if required within a day or so. So don&amp;#39;t go writing &amp;#39;boobs&amp;#39; in the form, okay?&lt;/p&gt;

&lt;iframe class=&quot;airtable-embed airtable-dynamic-height&quot; src=&quot;https://airtable.com/embed/appDPHORJwUCGOhLd/shrNp8ivOdLholfId&quot; frameborder=&quot;0&quot; onmousewheel=&quot;&quot; width=&quot;100%&quot; height=&quot;1349&quot; style=&quot;background: transparent; border: 1px solid #ccc;&quot;&gt;&lt;/iframe&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>31.01 For the system</title><link>https://johnnydecimal.com/30-39-the-library/31-apps-and-utilities/31.01-built-for-the-system/</link><guid isPermaLink="true">https://johnnydecimal.com/30-39-the-library/31-apps-and-utilities/31.01-built-for-the-system/</guid><description>Here&apos;s a list of apps and utilities built specifically for the Johnny.Decimal system. Want to add yours? Email me at hello@johnnydecimal.com.</description><pubDate>Sat, 17 Aug 2024 23:31:01 GMT</pubDate><content:encoded>&lt;p&gt;The canonical version of this page is &lt;a href=&quot;https://github.com/johnnydecimal/awesome-johnnydecimal&quot;&gt;awesome-johnnydecimal&lt;/a&gt; on GitHub.&lt;/p&gt;
&lt;p&gt;I will copy it here occasionally for convenience. Last copied: 2024-09-30T23:07:35.&lt;/p&gt;
&lt;h1 id=&quot;awesome-johnnydecimal&quot;&gt;awesome-johnnydecimal&lt;/h1&gt;
&lt;p&gt;Utilities, tools, and scripts that people have built to support the system.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;LINKS TO THIRD-PARTY SOFTWARE ARE PROVIDED FOR CONVENIENCE. I DO NOT ENDORSE OR VERIFY THE CONTENT, FUNCTIONALITY, OR SECURITY OF THESE EXTERNAL FILES. USE AT YOUR OWN RISK.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;add-your-thing-to-this-list&quot;&gt;Add your thing to this list&lt;/h2&gt;
&lt;p&gt;Please add your entry to this file and submit a PR. Corrections &amp;amp; updates also gratefully received.&lt;/p&gt;
&lt;h2 id=&quot;check-the-forum&quot;&gt;Check the forum&lt;/h2&gt;
&lt;p&gt;You should also check forum category &lt;a href=&quot;https://forum.johnnydecimal.com/c/30-39-the-library/31-apps-and-utilities/16&quot;&gt;31 Apps and utilities&lt;/a&gt; where people post scripts and helpers that might not make it to this page.&lt;/p&gt;
&lt;h1 id=&quot;platform-agnosticunsure&quot;&gt;Platform-agnostic/unsure&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/SwissArmyWrench/johnnybgoode&quot;&gt;SwissArmyWrench/johnnybgoode&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A cross-platform terminal tool to jump between your JD folders and export an index, instantly.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/tifrueh/jdfs&quot;&gt;tifrueh/jdfs&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The jdfs utility is a simple but powerful tool navigate and manipulate johnny.decimal file systems with.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://crates.io/crates/jdexmd/0.1.3&quot;&gt;Grayson/jdexmd&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This tool will create both an Obsidian structure as well as a parallel directory structure for non-notes files.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;linux&quot;&gt;Linux&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/bminusl/ulauncher-jd&quot;&gt;bminusl/ulauncher-jd&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://ulauncher.io/&quot;&gt;Ulauncher&lt;/a&gt; extension for the Johnny Decimal filing system.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;macos&quot;&gt;macOS&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/bsag/alfred-jd&quot;&gt;bsag/alfred-jd&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;First! 🥳 An &lt;a href=&quot;https://alfredapp.com&quot;&gt;Alfred&lt;/a&gt; workflow to jump straight to the JD folders on your filesystem.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;windows&quot;&gt;Windows&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/EvgenyVenalainen/jd-folders-tool&quot;&gt;Johnny.Decimal folders normalization tool&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This application was intended to quickly change a number in the folder names according to JD system; a user could easily change names of folders and not keep the correspondence between different folder levels. The application being launched inside the root folder will recover folder name consistency.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;web&quot;&gt;Web&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;a href=&quot;https://johnny-decimal-generator.netlify.app/&quot;&gt;johnny-decimal-generator&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;A web application that lets you create an index map (@emory: up to 9 areas) and the &lt;a href=&quot;https://github.com/ekafyi/johnnydecimal-index-generator&quot;&gt;johnny-decimal-generator repository&lt;/a&gt;, &lt;del&gt;maintained by &lt;a href=&quot;https://github.com/ekafyi/&quot;&gt;ekafyi&lt;/a&gt;&lt;/del&gt; no longer maintained.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;⚠️ WARNING ⚠️&lt;/strong&gt; This tool stores everything in your browser&amp;#39;s local storage. So if you clear that, or if you use this in a private/incognito window, &lt;strong&gt;it is easy to lose your work&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>23.02 Discord</title><link>https://johnnydecimal.com/20-29-communication/23-forums-and-chat/23.02-discord/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/23-forums-and-chat/23.02-discord/</guid><description>If chat&apos;s your thing, join the Discord. There&apos;s a bunch of friendly Decimals there, including me.</description><pubDate>Sat, 17 Aug 2024 23:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;discord&quot;&gt;Discord&lt;/h1&gt;
&lt;p&gt;If chat&amp;#39;s your thing, join &lt;a href=&quot;http://discord.gg/KYWzAJhmPv&quot;&gt;the Discord&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;del&gt;I prefer &lt;a href=&quot;https://johnnydecimal.com/23.01/&quot;&gt;the forum&lt;/a&gt;, personally -- Discord feels chaotic to me.&lt;/del&gt;&lt;/p&gt;
&lt;p&gt;&lt;del&gt;Maybe I&amp;#39;m just too old. The last game I played with any regularity was Doom... ¯\_(ツ)_/¯&lt;/del&gt;&lt;/p&gt;
&lt;p&gt;You know what, I&amp;#39;ve grown to like Discord. Top tip: as soon as you sign up, &lt;a href=&quot;https://support.discord.com/hc/en-us/articles/207260127-How-can-I-change-Discord-s-appearance-theme&quot;&gt;change from the default dark to the light theme&lt;/a&gt;. It makes it feel less like a gamer hangout and more like a standard chat app.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>23.01 The forum</title><link>https://johnnydecimal.com/20-29-communication/23-forums-and-chat/23.01-the-forum/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/23-forums-and-chat/23.01-the-forum/</guid><description>Come and say hi in the forum. If you have a question or need help, this is the best place to ask. There&apos;s a bunch of friendly Decimals there, including me.</description><pubDate>Sat, 17 Aug 2024 23:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-forum&quot;&gt;The forum&lt;/h1&gt;
&lt;p&gt;We have a Discourse forum at &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;https://forum.johnnydecimal.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you have questions or need help, this is the best place to ask. Personally I prefer it to the &lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;Discord&lt;/a&gt;: the information is more persistent in a forum.&lt;/p&gt;
&lt;h3 id=&quot;forum-maintenance&quot;&gt;Forum maintenance&lt;/h3&gt;
&lt;p&gt;I generally update the forum software at 14:00 every other &lt;a href=&quot;https://www.worldtimebuddy.com/?pl=1&amp;lid=2172517,5391959,5128581,2636531,1277333,1581130&amp;h=2172517&amp;hf=0&quot;&gt;Sunday afternoon, Australian Eastern time&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This can make the forum inaccessible for 15 minutes. If the forum link is timing out at this time, this is why.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>21.04 Comms plan</title><link>https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.04-communications-plan/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.04-communications-plan/</guid><description>This plan describes how I communicate updates to the Johnny.Decimal system across different channels, the most important being the blog.</description><pubDate>Sat, 17 Aug 2024 21:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;communications-plan&quot;&gt;Communications plan&lt;/h1&gt;
&lt;p&gt;This plan describes how I communicate updates to the Johnny.Decimal system.&lt;/p&gt;
&lt;h3 id=&quot;goals&quot;&gt;Goals&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;To respect your time and attention.&lt;/li&gt;
&lt;li&gt;To not gather your data unnecessarily.&lt;/li&gt;
&lt;li&gt;To give me the confidence that I&amp;#39;ve communicated important or interesting updates effectively.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;blog&quot;&gt;Blog&lt;/h3&gt;
&lt;p&gt;If you follow the blog, you won&amp;#39;t miss anything of note. If it&amp;#39;s &amp;#39;important&amp;#39;, it&amp;#39;ll have a blog post.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://blog.johnnydecimal.com&quot;&gt;https://blog.johnnydecimal.com&lt;/a&gt; or &lt;a href=&quot;https://blog.jdcm.al&quot;&gt;https://blog.jdcm.al&lt;/a&gt; will get you directly there.&lt;/p&gt;
&lt;h3 id=&quot;rss-feed&quot;&gt;RSS feed&lt;/h3&gt;
&lt;p&gt;This site, including the blog, has an RSS feed. All new pages and posts will appear in the single feed.&lt;/p&gt;
&lt;p&gt;Your reader should discover it, or it&amp;#39;s at &lt;a href=&quot;https://johnnydecimal.com/rss.xml&quot;&gt;https://johnnydecimal.com/rss.xml&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;forum&quot;&gt;Forum&lt;/h3&gt;
&lt;p&gt;I will cross-post each blog post to the &lt;a href=&quot;https://forum.johnnydecimal.com/c/jd-concepts/22-blog/&quot;&gt;forum&lt;/a&gt;, which serves as the comments section. (You&amp;#39;ll find a link in each blog post to search the forum.) Feedback is welcome.&lt;/p&gt;
&lt;h3 id=&quot;mailing-list&quot;&gt;Mailing list&lt;/h3&gt;
&lt;p&gt;My &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;mailing list&lt;/a&gt; is a quarterly publication. I send exactly four emails a year, in plain text, with no tracking.&lt;/p&gt;
&lt;p&gt;I will summarise the previous quarter&amp;#39;s goings-on in each issue. But I won&amp;#39;t be adding links to every blog post.&lt;/p&gt;
&lt;p&gt;You should &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;sign up&lt;/a&gt; to the list. It&amp;#39;ll be the best email you get.&lt;/p&gt;
&lt;h3 id=&quot;youtube&quot;&gt;YouTube&lt;/h3&gt;
&lt;p&gt;We made a decision in July 2024 to put more energy in to YouTube. My channel is &lt;a href=&quot;https://www.youtube.com/@johnny.decimal&quot;&gt;@johnny.decimal&lt;/a&gt; and you should follow it -- I plan on broadcasting everything I do.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-likeandsubscribe&quot; id=&quot;user-content-fnref-likeandsubscribe&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;mastodon-and-discord&quot;&gt;Mastodon and Discord&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;Discord&lt;/a&gt; is a &lt;del&gt;great&lt;/del&gt; ad-hoc chat medium but won&amp;#39;t be used for anything permanent.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://hachyderm.io/@johnnydecimal&quot;&gt;Mastodon&lt;/a&gt; is a lovely little social network that I enjoy personally. But I won&amp;#39;t be conducting much business over there.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-likeandsubscribe&quot;&gt;
&lt;p&gt;I&amp;#39;ll be &lt;a href=&quot;https://www.youtube.com/watch?v=ZoWc6WRHKEE&quot;&gt;deep in the cold, cold ground&lt;/a&gt; before I utter the words &amp;#39;like and subscribe&amp;#39;. &lt;a href=&quot;#user-content-fnref-likeandsubscribe&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>21.03 RSS feed</title><link>https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.03-rss-feed/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.03-rss-feed/</guid><description>There is a Johnny.Decimal RSS feed. If your feed reader doesn&apos;t pick it up, here&apos;s the URL.</description><pubDate>Sat, 17 Aug 2024 21:03:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rss-feed&quot;&gt;RSS feed&lt;/h1&gt;
&lt;p&gt;Your feed reader should discover it.&lt;/p&gt;
&lt;p&gt;If it doesn&amp;#39;t pick it up, the URL is &lt;a href=&quot;https://johnnydecimal.com/rss.xml&quot;&gt;https://johnnydecimal.com/rss.xml&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s &lt;a href=&quot;https://johnnydecimal.com/22.00.0059/&quot;&gt;now a full feed&lt;/a&gt; with images and all.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>21.02 Mailing list</title><link>https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.02-mailing-list/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.02-mailing-list/</guid><description>Join the mailing list, where I send out useful stuff occasionally. Probably not often enough, to be honest.</description><pubDate>Sat, 17 Aug 2024 21:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;mailing-list&quot;&gt;Mailing list&lt;/h1&gt;
&lt;p&gt;Never more than one email every couple of weeks. No trackers, unsubscribe any time.&lt;/p&gt;
&lt;p&gt;Like newsletters used to be. 💌&lt;/p&gt;
&lt;h3 id=&quot;spam-prevention&quot;&gt;Spam prevention&lt;/h3&gt;
&lt;p&gt;To prove you&amp;#39;re not a bot, answer this puzzle.&lt;/p&gt;
&lt;p&gt;You have two pet chickens. You get one more pet chicken. How many chickens do you now have?&lt;/p&gt;
&lt;form method=&quot;POST&quot; action=&quot;https://api.jdcm.al/api/v1/list/subscribe.html&quot; class=&quot;listmonk-form&quot; style=&quot;margin-top: 20px;&quot; onsubmit=&quot;&quot;&gt; i.blur());&quot;&gt;&lt;input type=&quot;text&quot; name=&quot;answer&quot; required=&quot;&quot; placeholder=&quot;How many chickens?&quot; autocomplete=&quot;off&quot; data-1p-ignore=&quot;true&quot; data-bwignore=&quot;true&quot; data-lpignore=&quot;true&quot; data-form-type=&quot;other&quot;&gt;&lt;input type=&quot;email&quot; name=&quot;email&quot; required=&quot;&quot; placeholder=&quot;Email address&quot; autocomplete=&quot;off&quot; data-1p-ignore=&quot;true&quot; data-bwignore=&quot;true&quot; data-lpignore=&quot;true&quot; data-form-type=&quot;other&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;Subscribe&quot;&gt;&lt;/form&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>21.01 Contact me</title><link>https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.01-contact-me/</link><guid isPermaLink="true">https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.01-contact-me/</guid><description>Have a question about your setup? Need product or account support? Email me at hello@johnnydecimal.com, I reply to every message.</description><pubDate>Sat, 17 Aug 2024 21:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;email&quot;&gt;Email&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;hello@johnnydecimal.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I do read all mail, but like most people I get more than I can usually manage.&lt;/p&gt;
&lt;p&gt;If you have a question about your setup -- how to start, what sort of structure you should have, exactly how I would organise your &lt;em&gt;Magic: The Gathering&lt;/em&gt; card collection -- you&amp;#39;re guaranteed to receive a response from me if you post a question on &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;the forum&lt;/a&gt; or &lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;Discord&lt;/a&gt;. That way everyone else can learn.&lt;/p&gt;
&lt;h3 id=&quot;product-or-account-support&quot;&gt;Product or account support&lt;/h3&gt;
&lt;p&gt;The exception to this is email related to product or account support for a thing you purchased.&lt;/p&gt;
&lt;p&gt;I respond to these as a priority: usually within 12 hours, and always within 24.&lt;/p&gt;
&lt;h2 id=&quot;social-media&quot;&gt;Social media&lt;/h2&gt;
&lt;p&gt;I migrated from Twitter to Mastodon. I&amp;#39;m enjoying it there, it&amp;#39;s like the good old days.&lt;/p&gt;
&lt;p&gt;You can find me at &lt;a href=&quot;https://hachyderm.io/@johnnydecimal&quot;&gt;@johnnydecimal@hachyderm.io&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>15.02 Creative pattern</title><link>https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.02-creative-pattern/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.02-creative-pattern/</guid><description>Here we talk about the &apos;creative pattern&apos; -- a proposal for expanding the Johnny.Decimal structure to create more depth to accommodate creative work.</description><pubDate>Sat, 17 Aug 2024 15:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;creative-pattern&quot;&gt;Creative pattern&lt;/h1&gt;
&lt;h2 id=&quot;problem-description&quot;&gt;Problem description&lt;/h2&gt;
&lt;p&gt;When you -- individually, or as an organisation -- produce &amp;#39;creative output&amp;#39;, it is reasonable to expect that you will, over time, produce more than 100 things.&lt;/p&gt;
&lt;p&gt;This breaks the standard Johnny.Decimal structure, which does not allow for more than 10 areas or categories, or more than 100 IDs.&lt;/p&gt;
&lt;h1 id=&quot;creative-inputs&quot;&gt;Creative inputs&lt;/h1&gt;
&lt;p&gt;It is useful to have a library of &amp;#39;creative inputs&amp;#39;. These are artefacts that you might use in any project.&lt;/p&gt;
&lt;p&gt;We define a standard area.&lt;/p&gt;
&lt;h3 id=&quot;80-89-library-of-creative-inputs&quot;&gt;&lt;code&gt;80-89 Library of creative inputs&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;This is area &lt;code&gt;80-89&lt;/code&gt; so it is pushed to the &amp;#39;end&amp;#39; of your system. By doing so, we can standardise this number range across the maximum number of systems.&lt;/p&gt;
&lt;p&gt;You are free to use categories &lt;code&gt;10-79&lt;/code&gt; for the rest of your business.&lt;/p&gt;
&lt;p&gt;If you would prefer to use this area at a different number, e.g. &lt;code&gt;30-39&lt;/code&gt;, please do so.&lt;/p&gt;
&lt;h2 id=&quot;a-library&quot;&gt;A library&lt;/h2&gt;
&lt;p&gt;The term &amp;#39;library&amp;#39; was chosen deliberately. Once established, libraries do not change much. Yes, new books are added, but not at the rate that they were at the start.&lt;/p&gt;

&lt;h2 id=&quot;categories&quot;&gt;Categories&lt;/h2&gt;
&lt;p&gt;This area follows the standard Johnny.Decimal pattern, and contains the following categories.&lt;/p&gt;
&lt;h3 id=&quot;81-design-elements&quot;&gt;&lt;code&gt;81 Design elements&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store external artefacts, like typefaces, or ephemeral things, like colour palettes.&lt;/p&gt;
&lt;h3 id=&quot;82-words-text&quot;&gt;&lt;code&gt;82 Words, text&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store re-usable words, text, or other prose.&lt;/p&gt;
&lt;h3 id=&quot;83-images-drawings-diagrams-screenshots&quot;&gt;&lt;code&gt;83 Images, drawings, diagrams, screenshots&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store re-usable images that are not photographs.&lt;/p&gt;
&lt;h3 id=&quot;84-photos&quot;&gt;&lt;code&gt;84 Photos&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store re-usable photographs.&lt;/p&gt;
&lt;h3 id=&quot;85-audio-music&quot;&gt;&lt;code&gt;85 Audio, music&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store re-usable audio, music, or anything else that primarily goes in your ears.&lt;/p&gt;
&lt;h3 id=&quot;86-video-animation&quot;&gt;&lt;code&gt;86 Video, animation&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store re-usable video, animation, or any other moving pictures.&lt;/p&gt;
&lt;h3 id=&quot;87-platform-specific-instructions&quot;&gt;&lt;code&gt;87 Platform-specific instructions&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Purpose:&lt;/strong&gt; where we store details that help us create for or load up to specific platforms; e.g. what video format does YouTube prefer?&lt;/p&gt;
&lt;h1 id=&quot;creative-outputs&quot;&gt;Creative outputs&lt;/h1&gt;
&lt;p&gt;It is the creative outputs which might exceed 100 in number. These are the projects you produce: the product brochure, marketing video, and so on. Each is a &amp;#39;job&amp;#39; in creative agency parlance.&lt;/p&gt;
&lt;p&gt;We define a standard area.&lt;/p&gt;
&lt;h3 id=&quot;90-99-portfolio-of-creative-outputs&quot;&gt;&lt;code&gt;90-99 Portfolio of creative outputs&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;This follows area &lt;code&gt;80-89&lt;/code&gt; so the two sit together at the &amp;#39;end&amp;#39; of your system.&lt;/p&gt;
&lt;p&gt;If you would prefer to use this area at a different number, e.g. &lt;code&gt;40-49&lt;/code&gt;, please do so. I do recommend that it immediately follow your &lt;code&gt;library of creative inputs&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;numbering-scheme&quot;&gt;Numbering scheme&lt;/h2&gt;
&lt;p&gt;This area uses non-standard numbering.&lt;/p&gt;
&lt;p&gt;Each output has a unique ID. Assuming 10,000 jobs is sufficient, we start at &lt;code&gt;90001&lt;/code&gt; and increment by 1 each time.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-tenthousand&quot; id=&quot;user-content-fnref-tenthousand&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;We do not use categories in this area: instead, jump straight to the job ID.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;90-99&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Portfolio of creative outputs&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt; 90001 First job description 2024-06&lt;/pre&gt;&lt;pre&gt; 90002 Second job description 2024-07&lt;/pre&gt;&lt;pre&gt; ...&lt;/pre&gt; &lt;/div&gt; 
&lt;h3 id=&quot;naming-jobs&quot;&gt;Naming jobs&lt;/h3&gt;
&lt;p&gt;I suggest it will be useful to put the date that the job started at the end of the title.&lt;/p&gt;
&lt;p&gt;Year and month will be sufficient, in the format &lt;code&gt;yyyy-mm&lt;/code&gt;. This is to help you anchor these jobs in your mind when you review them in the future.&lt;/p&gt;
&lt;h3 id=&quot;if-you-have-your-own-job-number&quot;&gt;If you have your own job number&lt;/h3&gt;
&lt;p&gt;If you&amp;#39;re working in or for an agency, you might already have a job number.&lt;/p&gt;
&lt;p&gt;In this case, you should use this number in place of &lt;code&gt;90001&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;standardise-subfolders&quot;&gt;Standardise subfolders&lt;/h2&gt;
&lt;p&gt;You should create a standard subfolder structure. I recommend the following.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;90-99&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Portfolio of creative outputs&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt; 90001 First job description 2024-06&lt;/pre&gt;&lt;pre&gt;       10 Design elements&lt;/pre&gt;&lt;pre&gt;       20 Words, text&lt;/pre&gt;&lt;pre&gt;       30 Images, drawings, screenshots&lt;/pre&gt;&lt;pre&gt;       40 Photos&lt;/pre&gt;&lt;pre&gt;       50 Audio, music&lt;/pre&gt;&lt;pre&gt;       60 Video, animation&lt;/pre&gt;&lt;pre&gt;       90 Exports, finals&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;You will note that this mimics the category structure of &lt;code&gt;80-89&lt;/code&gt;.&lt;/p&gt;
&lt;h1 id=&quot;process&quot;&gt;Process&lt;/h1&gt;
&lt;p&gt;Broadly speaking, each job is as follows.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You take artefacts from your library of inputs (green), as well as job-specific additional inputs (yellow) and possibly material from your portfolio of outputs (blue).&lt;/li&gt;
&lt;li&gt;You do some creative work (red).&lt;/li&gt;
&lt;li&gt;You save the output in your portfolio (blue).&lt;/li&gt;
&lt;li&gt;You identify reusable artefacts and move them to your library.&lt;/li&gt;
&lt;li&gt;Optionally, if the job was a quick one-off, you publish it without saving it.&lt;/li&gt;
&lt;/ol&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A process flow diagram showing the flow as described above.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/15.02-creative-flow-diagram-1440x1404@2x.png&quot; width=&quot;1440&quot; height=&quot;1404&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;example&quot;&gt;Example&lt;/h1&gt;
&lt;p&gt;This is our system as of 2024-07-03. We&amp;#39;ve only been using this for a few weeks but so far it feels good.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;80-89&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Library of creative inputs&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;81&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Design elements&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;81.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Berkeley Mono&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;81.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Our colours&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;81.13&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Nice colours for inspiration&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;82&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Words, text&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Inspirational words&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Patreon, Ko-fi, and so on&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.13&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Hashtags&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.14&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;SEO-related, summaries of pages&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.15&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Where our brand copy is used&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.16&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Johnny.Decimal style guide&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;82.17&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;TikTok comment replies&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;83&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Images, drawings, diagrams, screenshots&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Our logo (just the logo)&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Our logo on background or banner&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.13&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;favicons&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.14&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Other companies&apos; logos&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.15&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Stock images&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.16&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Lucy&apos;s drawings of JD concepts&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.17&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Screen grabs we make or take&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.18&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Combined LwL &amp; JD logos or banners&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.19&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Backgrounds or banners - organised by external site&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.20&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Reference, example screens from social media&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;83.21&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Miscellaneous other shapes&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;84&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Photos&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;84.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Photos that include one of us, or are about us or our place&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;84.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Photos that don&apos;t include one of us&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;85&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Audio, music&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;86&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Video, animation&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;86.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Videos that include one of us, or are about us or our place&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;86.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Videos that don&apos;t include one of us&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;87&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Platform-specific instructions&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.21&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Facebook&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.22&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Instagram&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.23&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Linkedin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.24&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;TikTok&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.25&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Twitter&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.26&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;YouTube&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.27&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Reddit&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.28&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Gumroad&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.29&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Snapchat&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.30&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Mastodon&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.31&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Threads&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;87.32&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Bluesky&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; area&quot;&gt;&lt;span&gt;90-99&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Portfolio of creative outputs&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;90&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Management of library of outputs&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;90.01&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Inbox&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;90.03&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;To-do &amp; lists&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;90.05&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Templates&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90001 From chaos to calm 2023-05-31&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90002 New website launch announcement 2023-05&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90003 Launch workbook on Gumroad 2023-07&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90004 If your house looked like your file system 2023-07&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90005 When a librarian needs to find something 2023-07&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90006 Patreon posts 2023&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90007 The Manifesto 2023-06&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90008 Visualising the Teams hierarchy 2023-06&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90009 What is JD? with emoji 2023-07&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90010 Blog post videos&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90011 Business cards for street workshop experiment 2024-03&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90012 Business cards for Moo print job 2024-06&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90013 Website copy proofing&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90014 The freelancer problem 2023-09&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90015 Workshop pre-launch video 1 2024-02&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90016 Workshop pre-launch video 2 2024-04&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90017 Workshop launch announcement 2024-04&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90018 Workshop highlights reel 2024-06&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90019 First edition stickers 2023-09&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90020 Second edition stickers 2023-11&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90021 Diagrams including the two ways of looking at a work project 2023-11&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90022 Canberra Expo 2024-05&lt;/pre&gt;&lt;pre class=&quot;mimic-id&quot;&gt;90023 JDSS 15.53 Aus trip 2024-07&lt;/pre&gt;&lt;pre&gt;          10 Design elements&lt;/pre&gt;&lt;pre&gt;          20 Words, text&lt;/pre&gt;&lt;pre&gt;          30 Images, drawings, screenshots&lt;/pre&gt;&lt;pre&gt;          40 Photos&lt;/pre&gt;&lt;pre&gt;          50 Audio, music&lt;/pre&gt;&lt;pre&gt;          60 Video, animation&lt;/pre&gt;&lt;pre&gt;          90 Exports, finals&lt;/pre&gt; &lt;/div&gt; 
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-tenthousand&quot;&gt;
&lt;p&gt;10,000 is enough. That&amp;#39;s one job a day every working day for 40 years. &lt;a href=&quot;#user-content-fnref-tenthousand&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>15.01 Introduction</title><link>https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.01-introduction/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/15-patterns-templates/15.01-introduction/</guid><description>The Johnny.Decimal system has evolved after a decade of public use. Here we&apos;ll discuss various standard and non-standard patterns that have been observed.</description><pubDate>Sat, 17 Aug 2024 15:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;introduction&quot;&gt;Introduction&lt;/h1&gt;
&lt;p&gt;There are patterns that have been observed in Johnny.Decimal systems after a decade of public use.&lt;/p&gt;
&lt;p&gt;Some are standard and fit in the as-documented Johnny.Decimal structure.&lt;/p&gt;
&lt;p&gt;Some are non-standard and require a modified numbering scheme.&lt;/p&gt;
&lt;p&gt;This website section will explore and document these patterns, and provide downloadable templates where appropriate.&lt;/p&gt;
&lt;h3 id=&quot;check-the-forum&quot;&gt;Check the forum&lt;/h3&gt;
&lt;p&gt;Note that there are recurring themes, and that you would be wise to &lt;a href=&quot;https://forum.johnnydecimal.com/search&quot;&gt;search the forum&lt;/a&gt; for your topic of interest.&lt;/p&gt;
&lt;p&gt;For example, &lt;a href=&quot;https://forum.johnnydecimal.com/search?q=genealogy&quot;&gt;genealogy&lt;/a&gt; has been well covered.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>14.01 Build your own system</title><link>https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.01-do-it-yourself/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/14-build-your-system/14.01-do-it-yourself/</guid><description>Build your own Johnny.Decimal system with this do-it-yourself guide. This is a summary of the process used in the workbook and workshop.</description><pubDate>Sat, 17 Aug 2024 14:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-goal&quot;&gt;The goal&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;We saw how much time this was taking, so we did the work for you. Check out our pre-built &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;&lt;strong&gt;Life Admin&lt;/strong&gt;&lt;/a&gt; and &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;&lt;strong&gt;Small Business Systems&lt;/strong&gt;&lt;/a&gt;. Take our 5-hour video workshop to &lt;a href=&quot;https://johnnydecimal.com/14.03/&quot;&gt;become a master system-builder&lt;/a&gt; and learn how to &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;master your to-do list&lt;/a&gt;. Or &lt;a download=&quot;&quot; href=&quot;https://johnnydecimal.com/D25/21/21.31/The%20Johnny.Decimal%20Workbook%20(fifth%20edition).pdf&quot;&gt;download the free Johnny.Decimal Workbook&lt;/a&gt;, a comprehensive, step-by-step guide.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;You&amp;#39;ve made a decision to become more organised. The world needs more people like you. Thank you.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s begin by noting some definitions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;The&lt;/em&gt; Johnny.&lt;wbr&gt;Decimal system is a collection of methods, tools, and behaviours.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;Your&lt;/em&gt; Johnny.&lt;wbr&gt;Decimal system is your implementation of this system, customised to suit whatever it is that you&amp;#39;re organising.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The end result of the &lt;em&gt;process&lt;/em&gt; is a collection of personal or work stuff (files, notes, emails), neatly organised, and tracked in your JDex.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Our goal is to design a system that a stranger could use. We want to end up with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;At most, 10 unambiguous areas (preferably fewer).&lt;sup&gt;&lt;a href=&quot;#user-content-fn-fewer&quot; id=&quot;user-content-fnref-fewer&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Each containing, at most, 10 unambiguous categories (preferably fewer).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Each containing, at most, 100 IDs in which you store your things (definitely fewer).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And a notes app, with 1 note per ID, that becomes your master index.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That&amp;#39;s it. But of course there&amp;#39;s some decisions to be made to get there.&lt;/p&gt;
&lt;h1 id=&quot;the-process&quot;&gt;The process&lt;/h1&gt;
&lt;p&gt;This is a basic overview of the process to build a system. If you get stuck, the &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt; is full of helpful people, including me, to offer guidance.&lt;/p&gt;
&lt;p&gt;The best piece of advice I can give is: take your time.&lt;/p&gt;
&lt;p&gt;If you rush, you&amp;#39;ll make areas and categories that are too broad or narrow. You&amp;#39;ll mis-categorise things, forget things, and end up having to change it later.&lt;/p&gt;
&lt;p&gt;Most of my work systems were active for a couple of years. I used my first personal system for 10 years. Take the time at the start to get it right.&lt;/p&gt;
&lt;h3 id=&quot;step-1-define-your-systems-scope&quot;&gt;Step 1: Define your system&amp;#39;s scope&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Action: in your own words, write a couple of sentences stating what&amp;#39;s in and what&amp;#39;s out for your system.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;#39;s crucial that you understand the boundaries of what you want to organise. Don&amp;#39;t forget things that should have been included, or include things that aren&amp;#39;t relevant.&lt;/p&gt;
&lt;p&gt;For example, &amp;quot;In scope for my system is anything to do with my life admin, home business, or the community tennis club I manage. Not in scope is my actual job, Lego collection, old hard drives, or photos and media.&amp;quot;&lt;/p&gt;
&lt;h3 id=&quot;step-2-discovery&quot;&gt;Step 2: Discovery&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Action: within the scope you&amp;#39;ve defined, write down everything you do (or need to do) for at least 1 week.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I recommend using sticky notes for this exercise. But if you prefer software, a mind map works great.&lt;/p&gt;
&lt;p&gt;When you think of something, write a few words on a note and stick it on the wall. Or add a new first-level node to your mind map, attached to the root. Do not be tempted to organise anything yet.&lt;/p&gt;
&lt;p&gt;Keep going until the end of the week. Your wall should look like Lucy&amp;#39;s. Remember to involve others who will use the system at work or home. More people = more ideas.&lt;/p&gt;
&lt;p&gt;For example, &amp;quot;paid phone bill, booked concert tickets, ran 10km, met accountant, update website images, review tennis club budget, order new nets&amp;quot;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.01A-Lucy_stickynotes--1_resize-light-600x350.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.01A-Lucy_stickynotes--1_resize-dark-600x350.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.01A-Lucy_stickynotes--1_resize-light-600x350.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.01A-Lucy_stickynotes--1_resize-dark-600x350.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of our living room wall. It&apos;s covered in about 150 brightly-coloured Post-it notes. You can&apos;t read what&apos;s on the notes.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/14.01A-Lucy_stickynotes--1_resize-light-600x350.webp&quot; width=&quot;600&quot; height=&quot;450&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 14.01A. LUCY&amp;#39;S WALL OF STICKY NOTES AFTER A WEEK OF DISCOVERY IN OUR WORKSHOP.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;step-3-create-your-areas-and-categories&quot;&gt;Step 3: Create your areas and categories&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Action: take all of your notes and group them in to areas and categories.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Let this happen naturally: don&amp;#39;t have your future system in mind. Just bring similar things together.&lt;/p&gt;
&lt;p&gt;It doesn&amp;#39;t matter if you do categories first or areas first. I &lt;em&gt;strongly&lt;/em&gt; encourage you to try it both ways. And remember to involve others who will share the system.&lt;/p&gt;
&lt;p&gt;How many categories? There&amp;#39;s no right answer. Just bear in mind that the more active categories you have, the more mental overhead you will endure. The goal of Johnny.Decimal is to reduce mental burden. It is &lt;em&gt;not&lt;/em&gt; to use up all the numbers.&lt;/p&gt;
&lt;p&gt;When you&amp;#39;re happy with your groupings, give your areas and categories a name. Do not think about numbers yet.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.01B-Lucy_sorts_notes--0_original-light-600x303.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/14.01B-Lucy_sorts_notes--0_original-dark-600x303.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.01B-Lucy_sorts_notes--0_original-light-600x303.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/14.01B-Lucy_sorts_notes--0_original-dark-600x303.webp&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Two photos in a montage. They show the previous photo&apos;s notes, now sorted. In the first image we have about 15 columns of notes. These are our tentative Johnny.Decimal categories. In the second image we have three large clusters of notes. These are our areas.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/14.01B-Lucy_sorts_notes--0_original-light-600x303.webp&quot; width=&quot;600&quot; height=&quot;303&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 14.01B. AN EXAMPLE OF A CATEGORY SORT (LEFT), FOLLOWED BY AN AREA SORT (RIGHT) FROM THE WORKSHOP.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;step-4-build-your-system&quot;&gt;Step 4: Build your system&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Action: number your areas and categories, make folders in your file system, create IDs, move your files in.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;#39;s time to build your system and start organising stuff. Ignoring your IDs for now -- the sticky notes -- number your areas and categories.&lt;/p&gt;
&lt;p&gt;Then make matching folders in your file system. This is a simple way to create a structure.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-text-file&quot; id=&quot;user-content-fnref-text-file&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; At this stage I encourage you to think about it for as long as you can.&lt;/p&gt;
&lt;p&gt;When you&amp;#39;re happy with your structure, create IDs -- one for each unique thing that you wrote on a sticky note. Consolidate if there&amp;#39;s multiple notes for the same thing.&lt;/p&gt;
&lt;p&gt;Finally, move your existing files into the ID folders. Now&amp;#39;s a good time to tidy them up. At this point you should have a working Johnny.Decimal system.&lt;/p&gt;
&lt;h3 id=&quot;step-5-the-index&quot;&gt;Step 5: The index&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Action: choose a notes app and create your index/JDex.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;#39;s time for the icing on the cake. Decide which notes app to use and follow the guidance from &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;the index&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Remember, this is now the master record of your IDs. When you&amp;#39;re looking for something, search here first, &lt;em&gt;not&lt;/em&gt; your file system. When you need to create a new ID, do it here, &lt;em&gt;then&lt;/em&gt; in your file system or email or wherever.&lt;/p&gt;
&lt;h3 id=&quot;well-done&quot;&gt;Well done!&lt;/h3&gt;
&lt;p&gt;If you&amp;#39;ve made it this far, you&amp;#39;re now more organised than most people. You should be feeling calm.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re stuck, check out &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;JDU&lt;/a&gt; for more comprehensive guidance. Get organised fast with the &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin System&lt;/a&gt;, or &lt;a download=&quot;&quot; href=&quot;https://johnnydecimal.com/D25/21/21.31/The%20Johnny.Decimal%20Workbook%20(fifth%20edition).pdf&quot;&gt;download the free workbook&lt;/a&gt;, which is like a much expanded version of this page.&lt;/p&gt;
&lt;h1 id=&quot;an-example&quot;&gt;An example&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s a short &lt;a href=&quot;https://youtu.be/CTbJbJcOCBw&quot;&gt;video&lt;/a&gt; from the workshop where we build a simple Johnny.Decimal system by sorting emoji.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-fewer&quot;&gt;
&lt;p&gt;Fewer areas and categories means fewer decisions to make when you&amp;#39;re moving around your file system. Plus it&amp;#39;s important to leave room to grow. &lt;a href=&quot;#user-content-fnref-fewer&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-text-file&quot;&gt;
&lt;p&gt;You could also create your structure in a text file. It&amp;#39;s easy to tweak if you want to make changes before finalising things. &lt;a href=&quot;#user-content-fnref-text-file&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>12.05 AC.ID notation</title><link>https://johnnydecimal.com/10-19-concepts/12-advanced/12.05-acid-notation/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/12-advanced/12.05-acid-notation/</guid><description>Johnny.Decimal numbers are made up of the area-category combo before the decimal, then the ID after. We call this AC.ID notation.</description><pubDate>Sat, 17 Aug 2024 12:05:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;acid&quot;&gt;AC.ID&lt;/h1&gt;
&lt;p&gt;As we have seen, the number before the decimal tells us what area and category we&amp;#39;re in. The number after the decimal is the ID.&lt;/p&gt;
&lt;p&gt;On the rest of this site, I use AC.ID notation as shorthand to refer to any generic Johnny.Decimal system. &lt;code&gt;A&lt;/code&gt;, &lt;code&gt;C&lt;/code&gt;, and &lt;code&gt;ID&lt;/code&gt; serve as variables.&lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;AC.ID&lt;/code&gt; is any ID in the system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;1C.ID&lt;/code&gt; is any ID in area &lt;code&gt;10-19&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;11.ID&lt;/code&gt; is any ID in category &lt;code&gt;11&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;AC.11&lt;/code&gt; is ID &lt;code&gt;.11&lt;/code&gt; in any category.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;sysacid&quot;&gt;SYS.AC.ID&lt;/h1&gt;
&lt;p&gt;When we use &lt;a href=&quot;https://johnnydecimal.com/13.11/&quot;&gt;multiple systems&lt;/a&gt; the notation is extended to &lt;code&gt;SYS.AC.ID&lt;/code&gt; -- System Area Category ID.&lt;/p&gt;
&lt;h1 id=&quot;acidsub&quot;&gt;AC.ID+SUB&lt;/h1&gt;
&lt;p&gt;When we &lt;a href=&quot;https://johnnydecimal.com/13.31/&quot;&gt;extend the end&lt;/a&gt; the notation is extended to &lt;code&gt;AC.ID+SUB&lt;/code&gt; -- Area Category Sub-ID.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>12.04 Working at the command line</title><link>https://johnnydecimal.com/10-19-concepts/12-advanced/12.04-working-at-the-command-line/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/12-advanced/12.04-working-at-the-command-line/</guid><description>For green screen nerds, the structured nature of the Johnny.Decimal numbering system makes working at the command line even more of a joy.</description><pubDate>Sat, 17 Aug 2024 12:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;working-at-the-command-line&quot;&gt;Working at the command line&lt;/h1&gt;
&lt;p&gt;The structured nature of the Johnny.Decimal numbering system lets you move to any folder with the minimum number of keystrokes using tab completion.&lt;/p&gt;
&lt;p&gt;At each level, you know with certainty that there will be no conflicting items.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A GIF, showing me navigating to subfolders in Terminal. At each stage I only need to enter the first part of the JD number then press Tab.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/12.04A-Terminal_tab_completion--0_original-cx-800x422.gif&quot; width=&quot;800&quot; height=&quot;430&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 12.04A. TAB COMPLETION IN TERMINAL.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;script-your-way-around&quot;&gt;Script your way around&lt;/h3&gt;
&lt;p&gt;Easier still, use a simple bash script to change to any directory immediately. Put this in your &lt;code&gt;.zshrc&lt;/code&gt; or equivalent.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cdj() {
  # Update with your document root folder
  pushd ~/Documents/*/*/${1}*
}

export cdj
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And now switch to any directory with &lt;code&gt;cdj 11.11&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;library-of-tools&quot;&gt;Library of tools&lt;/h3&gt;
&lt;p&gt;You&amp;#39;ll find command line tools and more at &lt;a href=&quot;https://johnnydecimal.com/31.01/&quot;&gt;31.01&lt;/a&gt;. And there are always people sharing their tips on &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;the forum&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>12.03 The standard zeros</title><link>https://johnnydecimal.com/10-19-concepts/12-advanced/12.03-the-standard-zeros/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/12-advanced/12.03-the-standard-zeros/</guid><description>The standard zeros are a handy set of consistently-numbered &apos;buckets&apos;. They can store information at the top of areas and categories in the unused space at 00-09.</description><pubDate>Sat, 17 Aug 2024 12:03:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;what-happened-to-00-09&quot;&gt;What happened to 00-09?&lt;/h1&gt;
&lt;p&gt;You may be wondering why we started our:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Areas at &lt;code&gt;10-19&lt;/code&gt; and not &lt;code&gt;00-09&lt;/code&gt;,&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Categories at &lt;code&gt;11&lt;/code&gt; rather than &lt;code&gt;10&lt;/code&gt;,&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;IDs at &lt;code&gt;.11&lt;/code&gt; rather than &lt;code&gt;.00&lt;/code&gt; or &lt;code&gt;.01&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Why don&amp;#39;t we use these numbers?&lt;/p&gt;
&lt;h3 id=&quot;we-reserve-them-for-the-system&quot;&gt;We reserve them for the system&lt;/h3&gt;
&lt;p&gt;Sometimes you want to keep information &lt;em&gt;about the system&lt;/em&gt;, in the system. And sometimes you want to keep special things &amp;#39;at the top&amp;#39; with a consistent number.&lt;/p&gt;
&lt;p&gt;This is simplest to describe from the bottom-up. This also mirrors how useful I find them: the category-level IDs are more useful than the area-level, which in turn are more useful than the system-level.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; this is definitely an advanced concept. It&amp;#39;s okay to ignore this until you&amp;#39;re really comfortable with Johnny.&lt;wbr&gt;Decimal.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;category-management-ids&quot;&gt;Category-management IDs&lt;/h2&gt;
&lt;p&gt;Within each &lt;strong&gt;category&lt;/strong&gt;, the following &lt;strong&gt;IDs&lt;/strong&gt; are standard. Use them when you want to manage information or data &lt;em&gt;specific to the category&lt;/em&gt;.&lt;/p&gt;
&lt;h3 id=&quot;00-jdex&quot;&gt;.00 JDex&lt;/h3&gt;
&lt;p&gt;If you need to, this reserved ID is where you store category-specific JDex data.&lt;/p&gt;
&lt;h3 id=&quot;01-inbox&quot;&gt;.01 Inbox&lt;/h3&gt;
&lt;p&gt;This is a place to store something that you intend to organise soon.&lt;/p&gt;
&lt;p&gt;When building your system, this can be particularly useful. Design your categories, create inboxes, and as a first step move your existing stuff in to them.&lt;/p&gt;
&lt;p&gt;You &lt;em&gt;must&lt;/em&gt; tidy this up regularly. Don&amp;#39;t let anything sit here: you will forget about it.&lt;/p&gt;
&lt;h3 id=&quot;02-task--project-management&quot;&gt;.02 Task &amp;amp; project management&lt;/h3&gt;
&lt;p&gt;This is a place to manage tasks that relate to this category.&lt;/p&gt;
&lt;p&gt;&amp;#39;Tasks&amp;#39; in this context means any &lt;em&gt;thing to be done&lt;/em&gt;. This might be more expansive projects, or you might use it to store checklists for items that repeat.&lt;/p&gt;
&lt;p&gt;e.g. store a video recording checklist here and run through it before you record a video for your blog.&lt;/p&gt;
&lt;h3 id=&quot;03-templates&quot;&gt;.03 Templates&lt;/h3&gt;
&lt;p&gt;This is a place to store templates that might be used anywhere in this category.&lt;/p&gt;
&lt;p&gt;e.g. in our &lt;a href=&quot;https://johnnydecimal.com/15.02/#standardise-subfolders&quot;&gt;creative system&lt;/a&gt;, we copy the same seven folders to every new job. These empty folders are stored at &lt;code&gt;90.03&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;04-links&quot;&gt;.04 Links&lt;/h3&gt;
&lt;p&gt;This is a place to store links that relate to this category.&lt;/p&gt;
&lt;p&gt;I tend not to use my browser bookmarks. Instead, I record interesting links in a note in my JDex. This way I can annotate them with descriptive text, and they&amp;#39;re easy to find.&lt;/p&gt;
&lt;p&gt;This is particularly useful at work with a shared system.&lt;/p&gt;
&lt;p&gt;e.g. create a shared note that links to all of the places you always log in to, like the timesheet system.&lt;/p&gt;
&lt;h3 id=&quot;05-06-07&quot;&gt;.05 .06 .07&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Reserved for expansion&lt;/strong&gt;. Do not use.&lt;/p&gt;
&lt;h3 id=&quot;08-someday&quot;&gt;.08 Someday&lt;/h3&gt;
&lt;p&gt;This is a place to store something that you intend to organise someday.&lt;/p&gt;
&lt;p&gt;A similar concept to &lt;code&gt;.01 Inbox&lt;/code&gt;, but where the inbox should be sorted &lt;em&gt;soon&lt;/em&gt;, this will be sorted … someday.&lt;/p&gt;
&lt;h3 id=&quot;09-archive&quot;&gt;.09 Archive&lt;/h3&gt;
&lt;p&gt;This is a place to store something that you do not intend to organise, but do not want to throw away.&lt;/p&gt;
&lt;p&gt;This folder might be chaos: that&amp;#39;s fine. If there&amp;#39;s stuff in here that &lt;em&gt;should&lt;/em&gt; be organised, move it to &lt;code&gt;.08&lt;/code&gt; or &lt;code&gt;.01&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;name-them-explicitly&quot;&gt;Name them explicitly&lt;/h3&gt;
&lt;p&gt;Make it obvious what these items relate to.&lt;/p&gt;
&lt;p&gt;e.g. &lt;code&gt;11.01 Inbox for category 11&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;summary&quot;&gt;Summary&lt;/h3&gt;
&lt;pre&gt;&lt;code&gt;.00 JDex for category …
.01 Inbox for category …
.02 Task &amp;amp; project management …
.03 Templates for category …
.04 Links for category …
.05 -
.06 -
.07 -
.08 Someday for category …
.09 Archive for category …
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;area-management-categories&quot;&gt;Area-management categories&lt;/h2&gt;
&lt;p&gt;Within each &lt;strong&gt;area&lt;/strong&gt;, the &lt;strong&gt;category&lt;/strong&gt; that ends &lt;code&gt;0&lt;/code&gt; is the area-management category. We name them so that this is explicit.&lt;/p&gt;
&lt;p&gt;e.g. &lt;code&gt;10 Management of area 10-19&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;This is a less specific place than the category-level IDs we just saw. So you should prefer to use those where possible. But if you have something that relates to &lt;em&gt;the whole area&lt;/em&gt;, use the zeros here.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;A0 Management of area A0-A9
 └─ A0.00 JDex for area A0-A9
    A0.01 Inbox for area A0-A9
    A0.02 Task &amp;amp; project management…
    A0.03 Templates for area A0-A9
    A0.04 Links for area A0-A9
    A0.05 -
    A0.06 -
    A0.07 -
    A0.08 Someday for area A0-A9
    A0.09 Archive for area A0-A9
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;e.g. if you have stuff you want to archive related to &lt;code&gt;10-19 Life admin&lt;/code&gt;, and you can&amp;#39;t decide on a specific category, put it in &lt;code&gt;10.09 Archive for area 10-19&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;system-management-area&quot;&gt;System-management area&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;00-09 System-management area&lt;/code&gt; is the system-management area. ;-) This is less specific again than the area-management categories. So you should prefer to use those where possible.&lt;/p&gt;
&lt;p&gt;In this area, we create a standard category &lt;code&gt;00 System-management category&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;So if you have something you want to store in an inbox but you have no idea which area it relates to, put it in &lt;code&gt;00.01 Inbox for the system&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;00-09 System-management area
 └─00 System-management category
    └─ 00.00 JDex for the system
       00.01 Inbox for the system
       00.02 Task &amp;amp; project management…
       00.03 Templates for the system
       00.04 Links for the system
       00.05 -
       00.06 -
       00.07 -
       00.08 Someday for the system
       00.09 Archive for the system
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&quot;0000-jdex&quot;&gt;00.00 JDex&lt;/h3&gt;
&lt;p&gt;This is a very important location: it holds the system&amp;#39;s JDex.&lt;/p&gt;
&lt;p&gt;This is the very first ID. If you were lost, where would you look? You&amp;#39;d start at the beginning. That&amp;#39;s how to think about &lt;code&gt;00.00&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Your JDex might not &lt;em&gt;be&lt;/em&gt; here. I keep mine in Bear, which has its own way of handling notes. But you should &lt;em&gt;tell yourself&lt;/em&gt;, using this JDex entry, where the system&amp;#39;s JDex is.&lt;/p&gt;
&lt;p&gt;And if you do use an app that keeps notes on disk, like Obsidian, then those notes should live here.&lt;/p&gt;
&lt;p&gt;Also see &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/12-advanced/12.02-jdex-alternative-methods/#one-note-one-line-per-entry&quot;&gt;the &amp;#39;single file&amp;#39; JDex method&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;a-map&quot;&gt;A map&lt;/h2&gt;
&lt;p&gt;The pattern in area &lt;code&gt;10-19&lt;/code&gt; repeats for all higher area numbers, and similarly for the categories.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;00-09&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;System-management area&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;00&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;System-management category&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.00&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;JDex for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.01&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Inbox for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.02&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Task &amp; project management…&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.03&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Templates for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.04&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Links for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.05&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.06&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.07&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.08&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Someday for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;00.09&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Archive for the system&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Area&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;10&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Management of area 10-19&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.00&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;JDex for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.01&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Inbox for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.02&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Task &amp; project management…&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.03&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Templates for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.04&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Links for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.05&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.06&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.07&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.08&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Someday for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;10.09&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Archive for area 10-19&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;11&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Category&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.00&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;JDex for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.01&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Inbox for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.02&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Task &amp; project management…&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.03&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Templates for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.04&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Links for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.05&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.06&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.07&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;-&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.08&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Someday for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;11.09&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Archive for category 11&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;12&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;…&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; area&quot;&gt;&lt;span&gt;20-29&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;…&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;h2 id=&quot;a-decision-chart&quot;&gt;A decision chart&lt;/h2&gt;
&lt;p&gt;When saving data, you should prefer the most specific zero. Follow this chart.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.03C-Decision_chart--0_original-light-cx-1080x1800.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.03C-Decision_chart--0_original-dark-cx-1080x1800.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.03C-Decision_chart--0_original-light-cx-1080x1800.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.03C-Decision_chart--0_original-dark-cx-1080x1800.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A flow chart. It guides you through this structure, from &apos;I know where a thing should go&apos;, in which case it goes in a JD ID. Through the levels as described above, until you really don&apos;t know where a thing should go and now it ends up in your system inbox.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/12.03C-Decision_chart--0_original-light-cx-1080x1800.png&quot; width=&quot;540&quot; height=&quot;900&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 12.03C. DECIDING WHICH &amp;#39;ZERO&amp;#39; TO USE -- THE FURTHER DOWN, THE LESS ORGANISED YOU ARE.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;further-reading&quot;&gt;Further reading&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://forum.johnnydecimal.com/t/the-standard-zeros/1558/12&quot;&gt;Alternative layout for the standard zeros&lt;/a&gt; by Simone.&lt;/li&gt;
&lt;/ul&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>12.02 Other JDex methods</title><link>https://johnnydecimal.com/10-19-concepts/12-advanced/12.02-jdex-alternative-methods/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/12-advanced/12.02-jdex-alternative-methods/</guid><description>Here&apos;s two more ways to keep your index/JDex -- as a single note or a database. And some advantages and disadvantages for each method.</description><pubDate>Sat, 17 Aug 2024 12:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;one-note-one-line-per-entry&quot;&gt;One note, one line per entry&lt;/h1&gt;
&lt;p&gt;Rather than multiple notes, create a single note (or text file or document or spreadsheet or whatever). The note&amp;#39;s contents are your index -- each line is an entry. Name it &lt;code&gt;00.00 Index&lt;/code&gt; so that it sits at the top of your system.&lt;/p&gt;
&lt;p&gt;This style of index is more suitable if you want to programmatically query your system. It does work as a manual index but I found it more cumbersome.&lt;/p&gt;
&lt;h3 id=&quot;advantages&quot;&gt;Advantages&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Computer-readable, especially if you&amp;#39;re exact with your formatting. I provide a formal structure &lt;a href=&quot;https://github.com/johnnydecimal/index-spec&quot;&gt;here&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-spec-ref&quot; id=&quot;user-content-fnref-spec-ref&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;If you store this somewhere that allows collaborative editing -- like Google Docs or Microsoft 365 -- it&amp;#39;s easily shared with the team.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you&amp;#39;re really adept at moving around large text files this approach may have benefits. (So if I tell you I&amp;#39;m writing this in Vim and you know what that means, this might be for you.)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Not dependent on any particular notes app. Anything that reads text will work.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your entire Johnny.Decimal system is visible &amp;#39;at-a-glance&amp;#39;, so it&amp;#39;s easy to understand its structure.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;disadvantages&quot;&gt;Disadvantages&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;I find the &amp;#39;individual notes&amp;#39; method easier to search. But perhaps that&amp;#39;s just what I&amp;#39;m used to.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Can become unwieldy with a large index.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Less friendly for the beginner.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Doesn&amp;#39;t integrate your notes in to the index.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;what-this-looks-like-in-plain-text&quot;&gt;What this looks like in plain text&lt;/h3&gt;
&lt;p&gt;A fixed-width font in your text editor helps the structure be more obvious.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.02A-Index_TextEdit--0_original-light-802x734@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.02A-Index_TextEdit--0_original-dark-802x734@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.02A-Index_TextEdit--0_original-light-802x734@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.02A-Index_TextEdit--0_original-dark-802x734@2x.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of a text file. The first line is our area &apos;10-19 Life admin&apos;. Below that, indented, is &apos;11 Me &amp;#38; other living things&apos;. And below that, indented again, are our IDs, one per row.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/12.02A-Index_TextEdit--0_original-light-802x734@2x.png&quot; width=&quot;401&quot; height=&quot;367&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 12.02A. FORMATTING A &amp;#39;SINGLE NOTE&amp;#39; INDEX.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;a-database&quot;&gt;A database&lt;/h1&gt;
&lt;p&gt;You can also use an actual database. Each of your IDs is a database record with associated data. Databases are well suited to this task, but you have to know how to set up and maintain them.&lt;/p&gt;
&lt;h3 id=&quot;advantages-1&quot;&gt;Advantages&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Database columns can track metadata related to each index item.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You could program an interface to allow easier creation of, and searching of, your index entries.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You can query your database using any other program via its API.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A shareable option for collaborating with colleagues.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;disadvantages-1&quot;&gt;Disadvantages&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Not quite as immediate and easy in daily use. (Unless you build some sort of hotkey-activated front end, in which case call me immediately.)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now you&amp;#39;re a database administrator.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;airtable&quot;&gt;Airtable&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://airtable.com/invite/r/wcs73zWf&quot;&gt;Airtable&lt;/a&gt; is a great SaaS database.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-referral&quot; id=&quot;user-content-fnref-referral&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; I&amp;#39;ve created a template that you can use as a starter &lt;a href=&quot;https://airtable.com/app2QDvkeHs28xIgm/shr5vvlmaCV98G6z7&quot;&gt;here&lt;/a&gt;. Click the &amp;#39;Copy base&amp;#39; button in the menu bar to add it to your own account. I don&amp;#39;t currently use this myself so it may need a bit of work.&lt;/p&gt;
&lt;h3 id=&quot;sharepoint-lists&quot;&gt;SharePoint lists&lt;/h3&gt;
&lt;p&gt;If you&amp;#39;re at work, you might have access to SharePoint. It comes with a database feature: just create a &lt;a href=&quot;https://jdcm.al/d41.56.01/&quot;&gt;list&lt;/a&gt;. They work fairly well and are shared by default.&lt;/p&gt;
&lt;h3 id=&quot;anything-else&quot;&gt;Anything else?&lt;/h3&gt;
&lt;p&gt;After reading this you might come up with another method. As long as it meets your needs, that&amp;#39;s great. If it&amp;#39;s interesting, &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;let me know&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-spec-ref&quot;&gt;
&lt;p&gt;It makes sense for the content to be consistently formatted, especially if you want to query it programmatically. This is the formal specification for the Johnny.Decimal index file. (I need to properly formalise it, but this is a good start.) &lt;a href=&quot;#user-content-fnref-spec-ref&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-referral&quot;&gt;
&lt;p&gt;That link earns me a $10 referral credit if you sign up. If you&amp;#39;d rather not do that, that&amp;#39;s cool: just go to &lt;a href=&quot;https://airtable.com&quot;&gt;airtable.com&lt;/a&gt;. You can copy the template database either way. &lt;a href=&quot;#user-content-fnref-referral&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>12.01 Managing email</title><link>https://johnnydecimal.com/10-19-concepts/12-advanced/12.01-managing-email/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/12-advanced/12.01-managing-email/</guid><description>Who loves email? (Crickets chirping). Here&apos;s some top-line strategies for dealing with it at home and work. Including my endangered Microsoft Outlook trick.</description><pubDate>Sat, 17 Aug 2024 12:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;who-loves-email&quot;&gt;Who loves email?&lt;/h1&gt;
&lt;p&gt;Email is notably different from your file system, in the volume of items that you typically receive. Few of us create 20 new files every day, but we could easily get that many new emails.&lt;/p&gt;
&lt;p&gt;Here are some strategies for dealing with your email.&lt;/p&gt;
&lt;h3 id=&quot;file-the-important-stuff&quot;&gt;File the important stuff&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s unrealistic, and almost certainly a waste of time, to file every email you get.&lt;/p&gt;
&lt;p&gt;But when you know you might want to recall this thing -- a travel booking, a policy document, or a written agreement to start some work -- you should file it.&lt;/p&gt;
&lt;p&gt;We do this in exactly the same way that we store our files: in neat Johnny.Decimal folders.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.01A-Mail_1541--0-original-light-cx-688x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/12.01A-Mail_1541--0-original-dark-cx-688x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.01A-Mail_1541--0-original-light-cx-688x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/12.01A-Mail_1541--0-original-dark-cx-688x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of macOS&apos;s Mail.app. I&apos;ve created folders just like I would in my file system: &apos;10-19 Life admin&apos;, which contains &apos;15 Travel, events, entertainment&apos;, then &apos;15.41 All short trips&apos;, and that has a folder for a trip we took last week, &apos;2024-08-06 Bateman&apos;s bay&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/12.01A-Mail_1541--0-original-light-cx-688x522.png&quot; width=&quot;344&quot; height=&quot;261&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 12.01A. FOLDERS IN MAC MAIL.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;archive-everything-else&quot;&gt;Archive everything else&lt;/h3&gt;
&lt;p&gt;A general rule with email is: never delete anything. Archive it. You can always find it later using search.&lt;/p&gt;
&lt;p&gt;Gmail does this by default. When you &amp;#39;archive&amp;#39; an email, it&amp;#39;s just removed from your Inbox. It isn&amp;#39;t actually deleted.&lt;/p&gt;
&lt;p&gt;If you use another system you&amp;#39;ll need to figure out how to do this. Ask for help on the &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;use-the-johnnydecimal-id-in-the-subject&quot;&gt;Use the Johnny.Decimal ID in the subject&lt;/h3&gt;
&lt;p&gt;If you put an ID in the subject of your email, it makes it really easy to find later.&lt;/p&gt;
&lt;p&gt;I put it at the end, in [square brackets]. For example when I used to send weekly timesheets to my boss, the subject looked like this:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Subject: Timesheets to approve [14.11]&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Now I can tell him to search for &lt;code&gt;[14.11]&lt;/code&gt; and my email appears from his pile of unread messages.&lt;/p&gt;
&lt;h1 id=&quot;at-work&quot;&gt;At work&lt;/h1&gt;
&lt;p&gt;At previous jobs, it was common for me to receive hundreds of emails a day. This is clearly unmanageable.&lt;/p&gt;
&lt;p&gt;I think there are two ways to deal with this.&lt;/p&gt;
&lt;p&gt;First is just to give up. I&amp;#39;m serious! Recognise, consciously, that 100+ emails a day is not a thing that you can meaningfully manage. And it&amp;#39;s not your fault: the organisation enables this behaviour. So don&amp;#39;t feel bad.&lt;/p&gt;
&lt;p&gt;Second is to be the &lt;a href=&quot;https://johnnydecimal.com/11.08/&quot;&gt;Librarian&lt;/a&gt; for your project. This was me in a previous job. So now you&amp;#39;re the person who can find any email: but your boss needs to know that you&amp;#39;ll be spending up to 20% of your week filing messages.&lt;/p&gt;
&lt;p&gt;This can be incredibly valuable. But if anyone thinks that it comes for free, they&amp;#39;re a fool.&lt;/p&gt;
&lt;h3 id=&quot;outlooks-filters-and-rules&quot;&gt;Outlook&amp;#39;s filters and rules&lt;/h3&gt;
&lt;p&gt;Outlook has powerful filtering rules that you should use. Be aware that Microsoft seems intent on turning Outlook in to Hotmail. When offered &amp;#39;the new Outlook&amp;#39;, decline.&lt;/p&gt;
&lt;p&gt;See blog post &lt;a href=&quot;https://johnnydecimal.com/22.00.0022/&quot;&gt;0022&lt;/a&gt; for more information.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.08 The Librarian</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.08-the-librarian/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.08-the-librarian/</guid><description>A Johnny.Decimal Librarian oversees the system. At home or work, their time keeping it neat and up to date is repaid many times over.</description><pubDate>Sat, 17 Aug 2024 11:08:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;When we kept everything on paper, organised people had filing cabinets. They stored their documents in them in a structured way so that they could find them again.&lt;/p&gt;
&lt;p&gt;They didn&amp;#39;t toss things into the cabinet without thought. But that is exactly what we do today with our computer&amp;#39;s file system.&lt;/p&gt;
&lt;p&gt;In large organisations it was someone&amp;#39;s job to organise these cabinets. They knew what they contained and how the information should be structured. They helped you find things if you weren&amp;#39;t sure.&lt;/p&gt;
&lt;h1 id=&quot;the-solution&quot;&gt;The solution&lt;/h1&gt;
&lt;p&gt;This person is the Librarian and they oversee the Johnny.Decimal system.&lt;/p&gt;
&lt;p&gt;The Librarian understands your system&amp;#39;s structure and the type of artefacts you generate. They must be a part of the team that sets everything up. And they must own the index.&lt;/p&gt;
&lt;p&gt;It doesn&amp;#39;t matter if you&amp;#39;re at home or work. Maybe you have a shared personal system with your partner -- decide which of you will take this venerable role.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re at work, there&amp;#39;s usually someone in the office/on a project who would relish this task. Find them and empower them.&lt;/p&gt;
&lt;h1 id=&quot;benefits-of-having-a-librarian&quot;&gt;Benefits of having a Librarian&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;They annotate the system and/or develop process documentation to guide new and existing users on what goes where, and why.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They monitor the system, keep it neat, and proactively help people who aren&amp;#39;t following the rules.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They consider disputes, discuss them with the teams involved, and if required they&amp;#39;re the final arbiter.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;They keep the index up to date. They own it, the tool in which it&amp;#39;s hosted, and all the data it contains.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;an-investment-that-pays-back-many-times-over&quot;&gt;An investment that pays back many times over&lt;/h3&gt;
&lt;p&gt;As I&amp;#39;ve said, this system isn&amp;#39;t &amp;#39;free&amp;#39; from a time perspective. It requires an
investment, which you will recoup many times over.&lt;/p&gt;
&lt;p&gt;Consider an example from my past -- a medium-sized IT transformation project with a $10m budget. I estimate that the Librarian should be allocated funding for one day a week. More at the start, ramping down as the project matures. Larger projects scale linearly.&lt;/p&gt;
&lt;p&gt;&amp;quot;Wait, isn&amp;#39;t this already someone&amp;#39;s job?&amp;quot;. Maybe. But do they do it? If yes, great. You can stop reading.&lt;/p&gt;
&lt;p&gt;If not, either get them on board so they implement this for you, or do it yourself. But stop thinking it&amp;#39;s just going to happen.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.07 Keeping notes</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.07-keeping-notes/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.07-keeping-notes/</guid><description>Note-keeping is one of my favourite uses of Johnny.Decimal. See how to do it more effectively by using your JDex. Now they&apos;re all in one findable place.</description><pubDate>Sat, 17 Aug 2024 11:07:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;why-notes&quot;&gt;Why notes?&lt;/h1&gt;
&lt;p&gt;Note-taking is one of my favourite uses of Johnny.Decimal. And if we&amp;#39;ve used a notes app to keep our &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;JDex&lt;/a&gt;, we get notes &amp;#39;for free&amp;#39;. There&amp;#39;s already a note for each ID. Just type more words in it.&lt;/p&gt;
&lt;p&gt;I need to tease you away from your file system. Files are heavy from a mental perspective. Consider the process of creating a note in Word. Actually, let&amp;#39;s not. It&amp;#39;s exhausting just thinking about it.&lt;/p&gt;
&lt;h3 id=&quot;embracing-your-notes-app&quot;&gt;Embracing your notes app&lt;/h3&gt;
&lt;p&gt;When you stop creating documents for everything and embrace your notes app, the flow goes like this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Click your notes app, which is already open.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find the index note you need. Everything has an ID, search is great, and you&amp;#39;ve learned the keyboard shortcut: so this is near-instantaneous.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Type your note. Done.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;become-ludicrously-efficient&quot;&gt;Become ludicrously efficient&lt;/h1&gt;
&lt;p&gt;Notes give you somewhere to put all the details about something in one findable place.&lt;/p&gt;
&lt;p&gt;For example, your &lt;code&gt;house&lt;/code&gt; category has the ID &lt;code&gt;12.11 Official documents&lt;/code&gt;. A PDF of your rental lease is in that folder. But there&amp;#39;s also related stuff that isn&amp;#39;t a document.&lt;/p&gt;
&lt;p&gt;Your real estate agent&amp;#39;s phone number. The bank transaction reference for the deposit. Maybe a list of to-dos to finalise the agreement. Just add these to the index note.&lt;/p&gt;
&lt;p&gt;&amp;quot;I already write notes&amp;quot;, I hear you say. Of course you do. But can you easily find what you need? Are you using them effectively?&lt;/p&gt;
&lt;h3 id=&quot;instantly-filter-your-notes&quot;&gt;Instantly filter your notes&lt;/h3&gt;
&lt;p&gt;As we saw in &lt;a href=&quot;https://johnnydecimal.com/11.05/#the-power-of-search&quot;&gt;the index&lt;/a&gt;, typing a &lt;code&gt;category number&lt;/code&gt; and &lt;code&gt;.&lt;/code&gt; into search will only show notes in that category. Add some keywords and you&amp;#39;ve found what you want instantly.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.07A-Bear_search_real_estate--0_original-light-cx-1606x1032.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.07A-Bear_search_real_estate--0_original-dark-cx-1606x1032.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.07A-Bear_search_real_estate--0_original-light-cx-1606x1032.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.07A-Bear_search_real_estate--0_original-dark-cx-1606x1032.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Bear. We&apos;re searching for &apos;12. real estate agent&apos;, and note &apos;12.11 Official documents&apos; has appeared because it contains those words.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.07A-Bear_search_real_estate--0_original-light-cx-1606x1032.png&quot; width=&quot;803&quot; height=&quot;516&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.07A. USING SEARCH TO FIND THE NOTE WITH OUR AGENT&amp;#39;S DETAILS.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;adding-metadata&quot;&gt;Adding metadata&lt;/h1&gt;
&lt;p&gt;The great power of notes is storing &amp;#39;metadata&amp;#39; (information) about the item. Below are the &amp;#39;metadata fields&amp;#39; that I often use. Invent your own to suit your needs.&lt;/p&gt;
&lt;p&gt;I put this information directly below the title of the note, formatted as a blockquote. Just because I like how it looks.&lt;/p&gt;
&lt;h3 id=&quot;description&quot;&gt;Description&lt;/h3&gt;
&lt;p&gt;Remind your future self what this thing is about. And remember, these words will appear in a search and help you find this entry later.&lt;/p&gt;
&lt;h3 id=&quot;location&quot;&gt;Location&lt;/h3&gt;
&lt;p&gt;The location is where you will find the thing/s that the ID refers to. If it&amp;#39;s a
document I enter &amp;#39;file system&amp;#39;. If it&amp;#39;s an email I enter &amp;#39;email&amp;#39;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-only-a-note&quot; id=&quot;user-content-fnref-only-a-note&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Since there&amp;#39;s so many places a thing can be in the digital world, this is extremely useful. And don&amp;#39;t forget the physical world -- your birth certificate might be a PDF and a piece of paper in your desk drawer.&lt;/p&gt;
&lt;h3 id=&quot;relates-to&quot;&gt;Relates to&lt;/h3&gt;
&lt;p&gt;Sometimes you want to link notes together. &lt;em&gt;This&lt;/em&gt; relates to &lt;em&gt;that&lt;/em&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-bear-links&quot; id=&quot;user-content-fnref-bear-links&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h3 id=&quot;keywords&quot;&gt;Keywords&lt;/h3&gt;
&lt;p&gt;To be sure that you&amp;#39;ll find this note by using a specific word in the future, just add it to your list of keywords.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.07B-Bear_1431_My_blog--0_original-light-cx-1606x954.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.07B-Bear_1431_My_blog--0_original-dark-cx-1606x954.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.07B-Bear_1431_My_blog--0_original-light-cx-1606x954.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.07B-Bear_1431_My_blog--0_original-dark-cx-1606x954.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of Bear. It shows a note with the metadata fields as described above.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.07B-Bear_1431_My_blog--0_original-light-cx-1606x954.png&quot; width=&quot;803&quot; height=&quot;477&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.07B. AN EXAMPLE OF ADDING METADATA TO A NOTE.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-only-a-note&quot;&gt;
&lt;p&gt;If there&amp;#39;s only the note itself, nothing in my files, I won&amp;#39;t enter a location. &lt;a href=&quot;#user-content-fnref-only-a-note&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-bear-links&quot;&gt;
&lt;p&gt;In all good notes apps, this can be a link to another note. &lt;a href=&quot;#user-content-fnref-bear-links&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.06 Saving files</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.06-saving-files/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.06-saving-files/</guid><description>Learn how to save files to save your sanity. Your new superpower is naming files by using the date correctly and storing them in neatly-sorted subfolders.</description><pubDate>Sat, 17 Aug 2024 11:06:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;structure-vs-content&quot;&gt;Structure vs. content&lt;/h1&gt;
&lt;p&gt;Before we start saving things, let&amp;#39;s take a quick look at the structure of the
Johnny.Decimal system. Just to reinforce why we put things where we do.&lt;/p&gt;
&lt;p&gt;The number before the decimal tells us what area and category we&amp;#39;re in. It gives our system its structure. The number after the decimal is the ID. This is where we store our content.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06A-Structure_vs_content--2_resize-light-cx-600x355.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06A-Structure_vs_content--2_resize-dark-cx-600x355.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06A-Structure_vs_content--2_resize-light-cx-600x355.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06A-Structure_vs_content--2_resize-dark-cx-600x355.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A diagram showing a Johnny.Decimal number, 15.52. Callout boxes label the first &apos;1&apos; as &apos;Area&apos;, &apos;15&apos; as the &apos;Category&apos;, and &apos;52&apos; as the &apos;ID. In front of the category is the word &apos;STRUCTURE&apos;, and beside the ID is the word &apos;CONTENT&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.06A-Structure_vs_content--2_resize-light-cx-600x355.png&quot; width=&quot;300&quot; height=&quot;177&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;So if we wanted to find folder &lt;code&gt;15.52&lt;/code&gt; in our file system, we can see that:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;It&amp;#39;s in area &lt;code&gt;10-19&lt;/code&gt; because it begins with &lt;code&gt;1&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;It&amp;#39;s in category &lt;code&gt;15&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;And its item number is &lt;code&gt;.52&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;saving-files-in-id-folders&quot;&gt;Saving files in ID folders&lt;/h1&gt;
&lt;p&gt;We save our stuff in our Johnny.Decimal ID folders. Spreadsheets, documents, scanned receipts, references, emails, images, and whatever else you&amp;#39;re organising.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06B-Finder_where_to_save--1_tb_margin-light-cx-684x280.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06B-Finder_where_to_save--1_tb_margin-dark-cx-684x280.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06B-Finder_where_to_save--1_tb_margin-light-cx-684x280.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06B-Finder_where_to_save--1_tb_margin-dark-cx-684x280.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of macOS Finder. Directly under folder &apos;10-19 Life admin&apos; there&apos;s a file named &apos;❌ Don&apos;t save files here&apos;. The same is under folder &apos;11 Me &amp;#38; other living things&apos;. Then in folder &apos;11.11 Birth certificate &amp;#38; proof of name&apos; is a file named &apos;✅ Save files here&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.06B-Finder_where_to_save--1_tb_margin-light-cx-684x280.png&quot; width=&quot;342&quot; height=&quot;140&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.06B. NEATLY-SAVED FILES IN AN ID.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;we-dont-save-things-in-areas-or-categories&quot;&gt;We &lt;em&gt;don&amp;#39;t&lt;/em&gt; save things in areas or categories&lt;/h3&gt;
&lt;p&gt;We never save things in area or category folders -- these are structural only. They&amp;#39;re there to guide us to our content.&lt;/p&gt;
&lt;p&gt;If you genuinely can&amp;#39;t find an ID that feels right, you might need to spend some time expanding your system to include a new category, or even a new area.&lt;/p&gt;
&lt;h1 id=&quot;saving-files-in-subfolders&quot;&gt;Saving files in subfolders&lt;/h1&gt;
&lt;p&gt;I used to be anti-subfolder but I&amp;#39;ve folded like a cheap suit. There are plenty of cases where it makes sense to use subfolders.&lt;/p&gt;
&lt;h3 id=&quot;however&quot;&gt;However&lt;/h3&gt;
&lt;p&gt;There&amp;#39;s no point to any of this if you just go back to putting your stuff in boxes-in-boxes-in-boxes-in-boxes. Stick to one level of subfolders, label them neatly, and don&amp;#39;t have too many.&lt;/p&gt;
&lt;p&gt;For example, our trip to Japan is quite complex. So we&amp;#39;ve organised by subfolder.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-travel-template&quot; id=&quot;user-content-fnref-travel-template&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06C-Finder_1555_subfolders--2_shrink-light-628x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06C-Finder_1555_subfolders--2_shrink-dark-628x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06C-Finder_1555_subfolders--2_shrink-light-628x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06C-Finder_1555_subfolders--2_shrink-dark-628x310.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Our Japan trip folder, 15.55. Inside it has the following subfolders: 10 Planning, 20 Travel documents &amp;#38; visas, 30 Transport, 40 Accommodation, 50 Itineraries &amp;#38; schedules, 60 Expenses to claim.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.06C-Finder_1555_subfolders--2_shrink-light-628x310.png&quot; width=&quot;314&quot; height=&quot;155&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.06C. ONE LEVEL OF NEATLY-LABELED SUBFOLDERS IN OUR JAPAN TRIP.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;If we didn&amp;#39;t have subfolders there would be files all over the place. They&amp;#39;re helping us find our things quickly, confidently, without stress. So it&amp;#39;s all good.&lt;/p&gt;
&lt;h1 id=&quot;sorting-by-year-month&quot;&gt;Sorting by year-month&lt;/h1&gt;
&lt;p&gt;Let&amp;#39;s take this even further. Whether you&amp;#39;re naming subfolders or files, if you use the date correctly it solves so many problems.&lt;/p&gt;
&lt;p&gt;For example, the ID &lt;code&gt;15.41 All short trips&lt;/code&gt; contains all of our short trips. The sort of thing that you don&amp;#39;t really plan, you just book and go.&lt;/p&gt;
&lt;p&gt;You can fit a lifetime of short trips in one ID if you create a new subfolder for each trip, and start it with the &lt;code&gt;yyyy-mm-dd&lt;/code&gt; date like this:&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06D-Finder_1541_subfolders--1_tb_margin-light-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06D-Finder_1541_subfolders--1_tb_margin-dark-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06D-Finder_1541_subfolders--1_tb_margin-light-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06D-Finder_1541_subfolders--1_tb_margin-dark-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;ID 15.41, All short trips, showing a handful of subfolders. They all start year-month-date, so they sort neatly. Each is followed by a trip name.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.06D-Finder_1541_subfolders--1_tb_margin-light-cx-720x464.png&quot; width=&quot;360&quot; height=&quot;232&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.06D. EVERY SUBFOLDER SORTS NEATLY BY DATE WHEN YOU START WITH YEAR-MONTH.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Remember, year-month must come first. If you reverse the above dates, the folder would sort like this and be chaos:&lt;sup&gt;&lt;a href=&quot;#user-content-fn-date-format&quot; id=&quot;user-content-fnref-date-format&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06E-Finder_1541_wrong_way--1_tb_margin-light-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.06E-Finder_1541_wrong_way--1_tb_margin-dark-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06E-Finder_1541_wrong_way--1_tb_margin-light-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.06E-Finder_1541_wrong_way--1_tb_margin-dark-cx-720x464.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;ID 15.41, All short trips, showing the same handful of subfolders. But now they start with the day of the month, so there&apos;s no semblance of order.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.06E-Finder_1541_wrong_way--1_tb_margin-light-cx-720x464.png&quot; width=&quot;360&quot; height=&quot;232&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.06E. OH NO!&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;this-works-for-so-many-things&quot;&gt;This works for so many things&lt;/h3&gt;
&lt;p&gt;Purchase receipts is another nice example. You can fit a lifetime of receipts in one ID if they all start with the date, then what it is and where you bought it.&lt;/p&gt;
&lt;p&gt;Also consider things like utility bills and finance statements. Don&amp;#39;t save them with the gibberish names from the utility company or bank. Using the year-month method, you can store hundreds of neatly-sorted, easy-to-find documents.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-travel-template&quot;&gt;
&lt;p&gt;This is actually a standard template we&amp;#39;re using for any longer work trip. I recommend making templates where relevant -- don&amp;#39;t reinvent the wheel every time you do a similar task. &lt;a href=&quot;#user-content-fnref-travel-template&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-date-format&quot;&gt;
&lt;p&gt;We&amp;#39;ve used the UK date format, but the US format would still deliver chaos! &lt;a href=&quot;#user-content-fnref-date-format&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.05 The JDex</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.05-the-index/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.05-the-index/</guid><description>A Johnny.Decimal index (or JDex) is the master record of every ID in a system. It keeps you even more organised and will transform how you work.</description><pubDate>Sat, 17 Aug 2024 11:05:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-index-is-your-johnnydecimal-system&quot;&gt;The index &lt;em&gt;is&lt;/em&gt; your Johnny.&lt;wbr&gt;Decimal system&lt;/h1&gt;
&lt;p&gt;A Johnny.Decimal index (or JDex) is the master record of every ID in a system. It can be kept in a few ways; I recommend using a notes app.&lt;/p&gt;
&lt;p&gt;Some people push back on keeping an index because it&amp;#39;s extra work. But they haven&amp;#39;t realised the pitfalls of not keeping an index versus its advantages.&lt;/p&gt;
&lt;p&gt;I consider this more important than your file system and encourage you to try it. It takes less time than you think, and you&amp;#39;ll find many ways that it helps you be more organised.&lt;/p&gt;
&lt;p&gt;The index &lt;em&gt;is&lt;/em&gt; your Johnny.Decimal system. You need to be sold on this concept, so let me convince you.&lt;/p&gt;
&lt;h1 id=&quot;why-i-love-my-jdex&quot;&gt;Why I love my JDex&lt;/h1&gt;
&lt;h3 id=&quot;i-know-where-everything-in-my-life-is&quot;&gt;I know where everything in my life is&lt;/h3&gt;
&lt;p&gt;Until recently the main place we looked for things was our file system. But now there&amp;#39;s so many places a thing can be.&lt;/p&gt;
&lt;p&gt;Email, chat, cloud storage, hard drives, servers, apps, collaboration software, calendars -- the list is long.&lt;/p&gt;
&lt;p&gt;The index solves this problem by giving you a place to note an item&amp;#39;s location. Simple.&lt;/p&gt;
&lt;div id=&quot;index_location&quot; aria-label=&quot;In my index, I typically use a Markdown H1 as my note&apos;s title, and I put the &apos;location&apos; metadata field in a blockquote below. I just like how this looks in Bear. This div shows that visually, in lieu of a screenshot.&quot; class=&quot;astro-p7osefum&quot;&gt; &lt;div id=&quot;id&quot; class=&quot;astro-p7osefum&quot;&gt;14.14 My data storage &amp; backups&lt;/div&gt; &lt;div id=&quot;id-arrow&quot; class=&quot;astro-p7osefum&quot;&gt;←&lt;/div&gt; &lt;div id=&quot;id-help&quot; class=&quot;astro-p7osefum&quot;&gt;Title of the index entry&lt;/div&gt; &lt;div id=&quot;location&quot; class=&quot;astro-p7osefum&quot;&gt;Location: Dropbox, iCloud, Backblaze, blue hard drive&lt;/div&gt; &lt;div id=&quot;location-arrow&quot; class=&quot;astro-p7osefum&quot;&gt;←&lt;/div&gt; &lt;div id=&quot;location-help&quot; class=&quot;astro-p7osefum&quot;&gt;Recording the &apos;location&apos; of the thing&lt;/div&gt; &lt;/div&gt; 
&lt;h3 id=&quot;i-never-re-use-ids&quot;&gt;I never re-use IDs&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s easy to accidentally create the same ID twice if you don&amp;#39;t have an index.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s say you book a trip to Vietnam. It gets ID &lt;code&gt;15.53&lt;/code&gt;. You save PDFs in your file system, and email confirmations in your email.&lt;/p&gt;
&lt;p&gt;Then you book a trip to New Zealand. You only have emails to store, so you don&amp;#39;t create a folder in your file system. Your situation looks like this.&lt;/p&gt;
&lt;table id=&quot;travel&quot; class=&quot;astro-2xjrtsno&quot;&gt;&lt;thead class=&quot;astro-2xjrtsno&quot;&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;Item&lt;/th&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;File&lt;/th&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;Email&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody class=&quot;astro-2xjrtsno&quot;&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;15.53 Vietnam, 2024&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;/tr&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;15.54 New Zealand, 2024&lt;/td&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt;Next, you plan a trip to Japan and want to save a PDF. You look in your file system. How do you know which number to use? Don&amp;#39;t pretend that you&amp;#39;ll remember that &lt;code&gt;15.54&lt;/code&gt; is taken and you want &lt;code&gt;15.55&lt;/code&gt;. You won&amp;#39;t. I&amp;#39;ve done it.&lt;/p&gt;
&lt;table id=&quot;travel&quot; class=&quot;astro-2xjrtsno&quot;&gt;&lt;thead class=&quot;astro-2xjrtsno&quot;&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;Item&lt;/th&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;File&lt;/th&gt;&lt;th class=&quot;astro-2xjrtsno&quot;&gt;Email&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody class=&quot;astro-2xjrtsno&quot;&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;15.53 Vietnam, 2024&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;/tr&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;15.54 New Zealand, 2024&lt;/td&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;/tr&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;line-through astro-2xjrtsno&quot;&gt;15.54 Japan, 2025&lt;/td&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;&lt;/td&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr class=&quot;astro-2xjrtsno&quot;&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;15.55 Japan, 2025&lt;/td&gt;&lt;td class=&quot;box astro-2xjrtsno&quot;&gt;■&lt;/td&gt;&lt;td class=&quot;astro-2xjrtsno&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt;You need an index as the central store of your IDs. Now you won&amp;#39;t go to your file system to create a new ID: you&amp;#39;ll open your JDex.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is why &lt;strong&gt;your filesystem is not your JDex&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&quot;my-note-taking-is-next-level&quot;&gt;My note-taking is next level&lt;/h3&gt;
&lt;p&gt;What if you had a place to store quick notes and knew that you could find them again? As we see below, when you keep your JDex in a notes app, you get this for free. All your notes live in IDs.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-keeping-notes&quot; id=&quot;user-content-fnref-keeping-notes&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;From those of you familiar with PKM concepts, your JDex &lt;em&gt;is&lt;/em&gt; your PKM system. Knowledge exists as notes which are organised by their ID.&lt;/p&gt;
&lt;h1 id=&quot;how-to-keep-your-jdex&quot;&gt;How to keep your JDex&lt;/h1&gt;
&lt;p&gt;Until I get around to making a Johnny.Decimal app, the simplest way to keep an index is in a notes app. I&amp;#39;ve tried other ways but they were more effort.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-see-advanced&quot; id=&quot;user-content-fnref-see-advanced&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Any app that lets you search your notes quickly will work.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I use, love, and recommend &lt;a href=&quot;https://bear.app&quot;&gt;Bear&lt;/a&gt; for all Apple platforms.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; is a crowd favourite. Cross-platform.&lt;/li&gt;
&lt;li&gt;If you&amp;#39;re looking for something &lt;em&gt;much&lt;/em&gt; simpler, the aptly-named &lt;a href=&quot;https://simplenote.com&quot;&gt;Simplenote&lt;/a&gt; is okay. Though I&amp;#39;m not sure if it&amp;#39;s being maintained by its owners.&lt;/li&gt;
&lt;li&gt;In the &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;workshop&lt;/a&gt; we see Lucy create her JDex in Apple Notes.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;one-note-per-id&quot;&gt;One note per ID&lt;/h3&gt;
&lt;p&gt;To create a new ID, just create a new note:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;First, search your notes for the relevant category.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Your app should filter all notes and show only those that match.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Identify the next available number and make a new note.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The title is the index entry. The rest of the note can be blank. But, as mentioned, adding location data can be really helpful.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-not-an-inventory&quot; id=&quot;user-content-fnref-not-an-inventory&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;You must do this before you create a folder in your file system, email, or anywhere else. Creating the note &lt;em&gt;is&lt;/em&gt; creating the new ID.&lt;/p&gt;
&lt;h3 id=&quot;what-this-looks-like-in-bear&quot;&gt;What this looks like in Bear&lt;/h3&gt;
&lt;p&gt;By typing &lt;code&gt;15&lt;/code&gt; and &lt;code&gt;.&lt;/code&gt; in search, we can (usually) filter out other notes that just include the text &amp;#39;15&amp;#39;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05D-Bear_searching_15--2_highlight_shrink-light-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05D-Bear_searching_15--2_highlight_shrink-dark-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05D-Bear_searching_15--2_highlight_shrink-light-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05D-Bear_searching_15--2_highlight_shrink-dark-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Bear. We&apos;re using its search feature with the search term &apos;15.5&apos; to show only those notes whose title contains that text.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.05D-Bear_searching_15--2_highlight_shrink-light-1606x724.png&quot; width=&quot;803&quot; height=&quot;362&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.05D. USING SEARCH TO SHOW ONLY THE IDS IN CATEGORY 15.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;It&amp;#39;s showing us that &lt;code&gt;15.55&lt;/code&gt; is the next available ID in the category. So we create a new note.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05E-Bear_adding_1555--2_highlight_shrink-light-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05E-Bear_adding_1555--2_highlight_shrink-dark-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05E-Bear_adding_1555--2_highlight_shrink-light-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05E-Bear_adding_1555--2_highlight_shrink-dark-1606x724.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Bear. Now we&apos;ve added a new note, &apos;15.55 Japan, 2025&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.05E-Bear_adding_1555--2_highlight_shrink-light-1606x724.png&quot; width=&quot;803&quot; height=&quot;362&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.05E. WE&amp;#39;RE OFF TO JAPAN.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;the-power-of-search&quot;&gt;The power of search&lt;/h1&gt;
&lt;p&gt;When you&amp;#39;re saving all sorts of items in your system, you won&amp;#39;t always remember where they are. Did you store your car insurance policy in your email or file system? Is your hotel booking in your email or a travel app?&lt;/p&gt;
&lt;p&gt;The whole point of the Johnny.Decimal system is to remove this frustration.&lt;/p&gt;
&lt;p&gt;Having a central index allows you to search for items by title, or filter everything by area or category. This lets you see, immediately, what you&amp;#39;ve saved. If your system also tells you the item&amp;#39;s location, fantastic.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05F-Bear_search_12_car_insurance--0_original-light-cx-1608x750.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.05F-Bear_search_12_car_insurance--0_original-dark-cx-1608x750.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05F-Bear_search_12_car_insurance--0_original-light-cx-1608x750.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.05F-Bear_search_12_car_insurance--0_original-dark-cx-1608x750.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Another Bear screenshot. We&apos;re searching for &apos;car insurance policy&apos;, and one note has been found. Its title is &apos;12.32 Motor vehicle insurance &amp;#38; claims&apos;, and in the note we&apos;ve added the text &apos;Keywords: car, policy&apos;. The note also shows the location of this item as &apos;file system&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.05F-Bear_search_12_car_insurance--0_original-light-cx-1608x750.png&quot; width=&quot;804&quot; height=&quot;375&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.05F. USING SEARCH TO INSTANTLY FIND THE LOCATION OF OUR CAR INSURANCE POLICY.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;As you can see here, we&amp;#39;ve also added &amp;#39;keywords&amp;#39; to our JDex entry to help us find it in the future.&lt;/p&gt;
&lt;h1 id=&quot;your-systems-memory&quot;&gt;Your system&amp;#39;s memory&lt;/h1&gt;
&lt;p&gt;As you use it more, your JDex becomes your system&amp;#39;s memory. As well as just keeping simple lists of what&amp;#39;s where, you can use it to record higher-level details about the system.&lt;/p&gt;
&lt;p&gt;For example, I have two systems in my life: &lt;strong&gt;life admin&lt;/strong&gt;, and &lt;strong&gt;small business&lt;/strong&gt;. Each contains a category &lt;code&gt;13&lt;/code&gt; which relates to finance. And in there I have IDs where I track my subscriptions.&lt;/p&gt;
&lt;p&gt;But some of my subscriptions apply to both life and business. I use the same backup service for both, for example. So which system should I store that in?&lt;/p&gt;
&lt;h3 id=&quot;decide-and-document&quot;&gt;Decide, and document&lt;/h3&gt;
&lt;p&gt;This is where you &lt;strong&gt;decide, and document&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Decide&lt;/strong&gt;: just decide! I decided that my life comes above my business. If you like, life &lt;em&gt;contains&lt;/em&gt; business. So where there are things that could be in either system, I put them in &lt;strong&gt;life admin&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Document&lt;/strong&gt;: a simple decision, which you&amp;#39;re sure you&amp;#39;ll remember. But why chance it? This is exactly what your JDex is for.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-keeping-notes&quot;&gt;
&lt;p&gt;I talk more about this in &lt;a href=&quot;https://johnnydecimal.com/11.07/&quot;&gt;keeping notes&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-keeping-notes&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-see-advanced&quot;&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/12.02/&quot;&gt;12.02&lt;/a&gt; documents the more advanced ways to keep your JDex. &lt;a href=&quot;#user-content-fnref-see-advanced&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-not-an-inventory&quot;&gt;
&lt;p&gt;An index is &lt;em&gt;not&lt;/em&gt; an inventory. It is for recording the IDs that you have assigned, not to track all of your documents. &lt;a href=&quot;#user-content-fnref-not-an-inventory&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.04 Philosophy</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.04-philosophy/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.04-philosophy/</guid><description>The philosophy behind Johnny.Decimal is simple. To help you find things, quickly, with more confidence, and less stress.</description><pubDate>Sat, 17 Aug 2024 11:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;whats-the-point-again&quot;&gt;What&amp;#39;s the point again?&lt;/h1&gt;
&lt;p&gt;Before we go any further it&amp;#39;s worth reinforcing the philosophy behind Johnny.Decimal.&lt;/p&gt;
&lt;p&gt;This is all a waste of time if it doesn&amp;#39;t help you find things quickly, with more confidence, and less stress.&lt;/p&gt;
&lt;p&gt;People often ask about tweaking their Johnny.Decimal setup. I don&amp;#39;t mind, adapt it as you please. But my core advice is always the same. Do whatever you need to do so you can find your stuff.&lt;/p&gt;
&lt;h1 id=&quot;limit-your-choices&quot;&gt;Limit your choices&lt;/h1&gt;
&lt;p&gt;We&amp;#39;ve all seen share drives with dozens of folders at the top level, that get worse the deeper you go. It&amp;#39;s near impossible to find what you need. And every chance that if you do, it won&amp;#39;t be the correct or only copy.&lt;/p&gt;
&lt;h3 id=&quot;no-more-than-ten&quot;&gt;No more than ten&lt;/h3&gt;
&lt;p&gt;When you encounter a Johnny.Decimal system you are presented with, at most, ten folders. The areas. When you go a level deeper, you are presented with, at most, ten folders. The categories.&lt;/p&gt;
&lt;p&gt;These limitations help you look in the right place. And &lt;em&gt;not&lt;/em&gt; the wrong place. We can further improve discoverability by using &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;an index&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;benefit-from-a-little-friction&quot;&gt;Benefit from a little friction&lt;/h1&gt;
&lt;p&gt;When you don&amp;#39;t need to consider a numbering system, it&amp;#39;s easy to create folders willy-nilly. At the area and category level it shouldn&amp;#39;t be easy -- a little friction can be a good thing.&lt;/p&gt;
&lt;p&gt;Creating a new category should be something that takes time. Assigning numbers, and limiting your availability to ten, forces you in to this moment of consideration.&lt;/p&gt;
&lt;p&gt;Once you&amp;#39;re down at ID level it doesn&amp;#39;t matter so much. You&amp;#39;re in a category. You are, by my definition, organised. Create folders as needed.&lt;/p&gt;
&lt;h1 id=&quot;time-well-spent&quot;&gt;Time well spent&lt;/h1&gt;
&lt;p&gt;Setting up a Johnny.Decimal system is certainly not free from a time perspective. You need to plan and maintain your system. It doesn&amp;#39;t manage itself.&lt;/p&gt;
&lt;p&gt;But the time that you spend is repaid over and over by the reduction in frustration whenever you go to open or save a file.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.03 IDs</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.03-ids/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.03-ids/</guid><description>Johnny.Decimal numbers have a specific format. Here we look at IDs, the two-digit counter after the decimal where we store our content.</description><pubDate>Sat, 17 Aug 2024 11:03:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;what-is-an-id&quot;&gt;What is an ID?&lt;/h1&gt;
&lt;p&gt;IDs are the manila folders we just talked about. This is where we store our stuff. But what exactly is an ID? How much should they contain?&lt;/p&gt;
&lt;p&gt;When you sit down to do something, your thought process should be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Which category is the thing in? You will find yourself remembering those you use frequently.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Which ID is the thing I need to work on? It will usually be a higher number because recent things have higher numbers.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now you&amp;#39;re &amp;#39;in&amp;#39; an ID and that&amp;#39;s where your stuff is.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the documents from your travel agent for your next trip, the notes and spreadsheets for the meeting with your accountant, or the design files for the tennis club&amp;#39;s competition flyer.&lt;/p&gt;
&lt;h1 id=&quot;examples&quot;&gt;Examples&lt;/h1&gt;
&lt;h3 id=&quot;a-trip-to-nyc&quot;&gt;A trip to NYC&lt;/h3&gt;
&lt;p&gt;Think about the artefacts you generate when you go on holiday. You have to book a flight and a hotel, and you might research things to do when you get there.
The trip is one Johnny.Decimal ID, &lt;code&gt;15.52 Trip to NYC&lt;/code&gt;, and in it you might save:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;A PDF of the hotel booking, in your file system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The flight confirmation, in your email.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Notes about what you want to visit.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-not-just-files&quot; id=&quot;user-content-fnref-not-just-files&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;a-travel-insurance-claim&quot;&gt;A travel insurance claim&lt;/h3&gt;
&lt;p&gt;The airline lost your bag and you need to make a claim.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve already seen the ID for that: &lt;code&gt;15.23 Travel insurance&lt;/code&gt;. Create a new subfolder starting with the date of the claim, and store your documentation neatly in it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.03A-Finder-travel-insurance--2_no_claims-light-814x248.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.03A-Finder-travel-insurance--2_no_claims-dark-814x248.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.03A-Finder-travel-insurance--2_no_claims-light-814x248.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.03A-Finder-travel-insurance--2_no_claims-dark-814x248.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of the file system showing folder &apos;15.23 Travel insurance &amp;#38; claims&apos;. It contains a subfolder, &apos;2024-08-08 NYC lost bag&apos;, which contains a PDF, &apos;Claim form.pdf&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.03A-Finder-travel-insurance--2_no_claims-light-814x248.png&quot; width=&quot;407&quot; height=&quot;123&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.03A. An ID for a travel insurance claim.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;managing-your-ids&quot;&gt;Managing your IDs&lt;/h1&gt;
&lt;h3 id=&quot;helpful-names&quot;&gt;Helpful names&lt;/h3&gt;
&lt;p&gt;When naming your IDs, try to help your future self.&lt;/p&gt;
&lt;p&gt;Sometimes it&amp;#39;s useful to be descriptive about the kinds of things to be stored. For example, your main utility bills might go in &lt;code&gt;12.21 Electricity, gas, &amp;amp; water&lt;/code&gt; (versus &amp;#39;utilities&amp;#39;).&lt;/p&gt;
&lt;p&gt;Sometimes you may prefer to keep things simpler, broader. For example, anything to do with moving house might go in &lt;code&gt;12.13 Moving&lt;/code&gt; (versus &amp;#39;checklists, quotes, &amp;amp; truck hire for moving house&amp;#39;).&lt;/p&gt;
&lt;h3 id=&quot;neat-subfolders&quot;&gt;Neat subfolders&lt;/h3&gt;
&lt;p&gt;I used to be anti-subfolder. But sometimes one more level (and I mean one) of subfolders makes sense.&lt;/p&gt;
&lt;p&gt;In the example above, we could have saved all the insurance claim documents in the main folder. But it was neater to create a new subfolder.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-saving-files&quot; id=&quot;user-content-fnref-saving-files&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t let it get out of hand. Remember, we&amp;#39;re trying to avoid the boxes-in-boxes-in-boxes-in-boxes chaos from earlier. Split the thing in to multiple IDs if it&amp;#39;s getting too busy.&lt;/p&gt;
&lt;h3 id=&quot;will-i-run-out-of-ids&quot;&gt;Will I run out of IDs?&lt;/h3&gt;
&lt;p&gt;Nope. And if you do, the category you defined was probably too broad. Split it up.&lt;/p&gt;
&lt;p&gt;An example from my own system is travel. I&amp;#39;ve been a reasonably active traveller for several decades, but I&amp;#39;m nowhere near my 99th ID.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-not-just-files&quot;&gt;
&lt;p&gt;You may have noticed that these aren&amp;#39;t all files. This is where the real power of Johnny.Decimal lies -- it&amp;#39;s a system to organise &lt;em&gt;everything&lt;/em&gt;. Files, email, notes, physical items. We cover this in more detail in &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;the index&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-not-just-files&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-saving-files&quot;&gt;
&lt;p&gt;Later in &lt;a href=&quot;https://johnnydecimal.com/11.06/&quot;&gt;saving files&lt;/a&gt;, I explain how useful it is to name your subfolders and files using the year-month format. It&amp;#39;s a superpower because everything sorts by date, which means you can fit lots more in an ID without it feeling chaotic. &lt;a href=&quot;#user-content-fnref-saving-files&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.02 Areas and categories</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.02-areas-and-categories/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.02-areas-and-categories/</guid><description>Johnny.Decimal numbers have a specific format. Here we look at areas and categories, the two digits before the decimal that define our system&apos;s structure.</description><pubDate>Sat, 17 Aug 2024 11:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;what-is-an-area&quot;&gt;What is an area?&lt;/h1&gt;
&lt;p&gt;Areas are the shelves we just talked about. Think of them as &amp;#39;areas of your life&amp;#39; or &amp;#39;areas of expertise&amp;#39;. That&amp;#39;s how broad they should be. If they&amp;#39;re too narrow, you&amp;#39;ll use them up. Leave room for expansion.&lt;/p&gt;
&lt;h3 id=&quot;areas-group-categories&quot;&gt;Areas group categories&lt;/h3&gt;
&lt;p&gt;Area &lt;code&gt;10-19&lt;/code&gt; groups all of the categories from &lt;code&gt;10&lt;/code&gt; through &lt;code&gt;19&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-zero&quot; id=&quot;user-content-fnref-zero&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Everything also has a title, so this becomes &lt;code&gt;10-19 Life admin&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Similarly, area &lt;code&gt;20-29 Home business&lt;/code&gt; groups the categories &lt;code&gt;20&lt;/code&gt; to &lt;code&gt;29&lt;/code&gt;. And area &lt;code&gt;30-39 Tennis club&lt;/code&gt; groups the categories &lt;code&gt;30&lt;/code&gt; to &lt;code&gt;39&lt;/code&gt;.&lt;/p&gt;
&lt;h1 id=&quot;what-is-a-category&quot;&gt;What is a category?&lt;/h1&gt;
&lt;p&gt;Categories are the boxes we just talked about. They&amp;#39;re collections of similar stuff: travel documents; marketing material for your small business; facilities maintenance for the tennis club.&lt;/p&gt;
&lt;p&gt;And they&amp;#39;re the most important Johnny.Decimal concept.&lt;/p&gt;
&lt;h3 id=&quot;categories-group-ids&quot;&gt;Categories group IDs&lt;/h3&gt;
&lt;p&gt;A category is as organised as you need to be. When you get there, you see a bunch of ID folders. But they all relate to the same thing. And they&amp;#39;re ordered in the sequence that you created them.&lt;/p&gt;
&lt;h3 id=&quot;a-category-is-where-you-work&quot;&gt;A category is where you work&lt;/h3&gt;
&lt;p&gt;Any type of &amp;#39;work&amp;#39; you do can become a category. When you sit down at your computer you have a task in mind -- researching a holiday, writing a flyer for your business, employing a new groundskeeper.&lt;/p&gt;
&lt;p&gt;The goal of Johnny.Decimal is to get you to the place where you do this work, quickly, with no stress.&lt;/p&gt;
&lt;h3 id=&quot;prefer-fewer-broader-categories&quot;&gt;Prefer fewer, broader categories&lt;/h3&gt;
&lt;p&gt;If you have granular categories called &lt;code&gt;investments&lt;/code&gt;, &lt;code&gt;budget&lt;/code&gt;, and &lt;code&gt;savings&lt;/code&gt;, you&amp;#39;ve created ambiguity. This slows you down because there&amp;#39;s more decisions to make. Compress them in to one -- &lt;code&gt;money&lt;/code&gt; -- and the ambiguity disappears.&lt;/p&gt;
&lt;h3 id=&quot;categorising-is-worth-the-effort&quot;&gt;Categorising is worth the effort&lt;/h3&gt;
&lt;p&gt;Categorising our stuff requires some effort. But it is necessary because it helps us find things again.&lt;/p&gt;
&lt;p&gt;And it can feel harder when things could go either way. For example, do I go with &lt;br&gt; &lt;code&gt;Insurance &amp;gt; Car&lt;/code&gt; and &lt;code&gt;Insurance &amp;gt; House&lt;/code&gt; or &lt;br&gt;&lt;code&gt;Car &amp;gt; Insurance&lt;/code&gt; and &lt;code&gt;House &amp;gt; Insurance&lt;/code&gt;?&lt;/p&gt;
&lt;p&gt;In reality, you just decide. It&amp;#39;s not like you&amp;#39;re ever paralysed with indecision: that&amp;#39;s the entire point of the structure of Johnny.Decimal.&lt;/p&gt;
&lt;h1 id=&quot;making-areas-and-categories&quot;&gt;Making areas and categories&lt;/h1&gt;
&lt;p&gt;There&amp;#39;s two main approaches to sorting the stuff in your life when designing a Johnny.Decimal system.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Top-down: sort everything into areas first, then divide those into categories.&lt;/li&gt;
&lt;li&gt;Bottom-up: sort everything into categories, then group those categories in to areas.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I talk more about this in &lt;a href=&quot;https://johnnydecimal.com/14.01/&quot;&gt;build your system&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-zero&quot;&gt;
&lt;p&gt;Area &lt;code&gt;00-09&lt;/code&gt; does exist; I&amp;#39;ll discuss it later in the advanced topics. &lt;a href=&quot;#user-content-fnref-zero&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>11.01 Introduction</title><link>https://johnnydecimal.com/10-19-concepts/11-core/11.01-introduction/</link><guid isPermaLink="true">https://johnnydecimal.com/10-19-concepts/11-core/11.01-introduction/</guid><description>Johnny.Decimal is a system to organise your life. Find things, quickly, with more confidence, and less stress. It&apos;s free to use and the concepts are the same at home or work.</description><pubDate>Sat, 17 Aug 2024 11:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;a-system-to-organise-your-life&quot;&gt;A system to organise your life&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Johnny.Decimal is designed to help you find things quickly, with more confidence, and less stress.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;You assign a unique ID to everything in your life.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01A-Diagram_1552_NYC--dtop-1_resize-light-cx-1000x609.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01A-Diagram_1552_NYC--dtop-1_resize-dark-cx-1000x609.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01A-Diagram_1552_NYC--mob-1_resize-light-cx-500x470.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01A-Diagram_1552_NYC--mob-1_resize-dark-cx-500x470.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A diagram showing the structure of a Johnny.Decimal number. The number is 15.52 and it explains how the &apos;1&apos; is an area, which groups related categories in sets of 10. The &apos;15&apos; is the category, in this case &apos;travel&apos;. And &apos;52&apos; is just an ID; they start at 01. The title of this, our 52nd travel thing, is &apos;Trip to NYC&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01A-Diagram_1552_NYC--dtop-1_resize-light-cx-1000x609.png&quot; width=&quot;500&quot; height=&quot;304&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;These IDs help you stay organised. They impose constraints that make it harder to get lost. And you create your own index to link everything in your life together.&lt;/p&gt;
&lt;p&gt;The system is free to use and the concepts are the same at home, work, or that club you manage.&lt;/p&gt;
&lt;h1 id=&quot;the-problem&quot;&gt;The problem&lt;/h1&gt;
&lt;p&gt;In real life, if you stored your stuff in piles of badly-labelled boxes you&amp;#39;d never find anything again.&lt;/p&gt;
&lt;p&gt;If you put &lt;em&gt;those&lt;/em&gt; boxes in boxes, in boxes, you&amp;#39;d never know which box to open to find the next box. It would be chaos. But this is how you save your computer files.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01B-Finder_chaos_v2--1_vfx-light-cx-628x526.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01B-Finder_chaos_v2--1_vfx-dark-cx-628x526.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01B-Finder_chaos_v2--1_vfx-light-cx-628x526.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01B-Finder_chaos_v2--1_vfx-dark-cx-628x526.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of a MacOS Finder window showing a bunch of folders, nested terribly, all named similarly. It&apos;s a confusing mess.&quot; class=&quot; astro-3zw7efbj&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01B-Finder_chaos_v2--1_vfx-light-cx-628x526.png&quot; width=&quot;314&quot; height=&quot;263&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.01B. A CHAOTIC FILE SYSTEM WITH MANY LEVELS OF FOLDERS.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h1 id=&quot;the-solution&quot;&gt;The solution&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s one way to think about how a Johnny.Decimal system works. In this simple analogy, an area is a shelf, a category is a box, and an ID is a manila folder.&lt;/p&gt;
&lt;h3 id=&quot;step-1-buy-ten-shelves&quot;&gt;Step 1: Buy ten shelves&lt;/h3&gt;
&lt;p&gt;Imagine a computer is a garage. We can&amp;#39;t put everything on the floor, so we buy ten shelves. Then we dedicate each one to an area of our life -- &lt;code&gt;life admin&lt;/code&gt;, &lt;code&gt;home business&lt;/code&gt;, and &lt;code&gt;tennis club&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-room-to-grow&quot; id=&quot;user-content-fnref-room-to-grow&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01C-Berkeley_shelves_x3--0_original-light-cx-1312x918.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01C-Berkeley_shelves_x3--0_original-dark-cx-1312x918.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01C-Berkeley_shelves_x3--0_original-light-cx-1312x918.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01C-Berkeley_shelves_x3--0_original-dark-cx-1312x918.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A line drawing of three storage shelves. Think your classic Ikea &apos;Billy&apos; bookshelf. At the top they&apos;re labelled &apos;life admin&apos;, &apos;home business&apos;, and &apos;tennis club&apos;. They&apos;re empty.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01C-Berkeley_shelves_x3--0_original-light-cx-1312x918.png&quot; width=&quot;1312&quot; height=&quot;918&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.01C. A SHELF FOR EACH MAJOR AREA OF OUR LIFE.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;step-2-add-some-boxes&quot;&gt;Step 2: Add some boxes&lt;/h3&gt;
&lt;p&gt;Each shelf has space for ten boxes, so we categorise what we want to store. In life admin we decide on five and label them: &lt;code&gt;me&lt;/code&gt;, &lt;code&gt;house&lt;/code&gt;, &lt;code&gt;money&lt;/code&gt;, &lt;code&gt;online&lt;/code&gt;, and &lt;code&gt;travel&lt;/code&gt;. Our boxes have space for a number, so we add that too.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-startat11&quot; id=&quot;user-content-fnref-startat11&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01D-Berkeley_shelf_w_boxes--0_original-light-cx-448x914.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01D-Berkeley_shelf_w_boxes--0_original-dark-cx-448x914.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01D-Berkeley_shelf_w_boxes--0_original-light-cx-448x914.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01D-Berkeley_shelf_w_boxes--0_original-dark-cx-448x914.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The same shelf and boxes, but now the labels have numbers at the front. The shelf is labelled &apos;10-19 Life admin&apos;, and the boxes are labelled &apos;11 Me&apos;, &apos;12 House&apos;, &apos;13 Money&apos;, &apos;14 Online&apos;, and &apos;15 Travel&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01D-Berkeley_shelf_w_boxes--0_original-light-cx-448x914.png&quot; width=&quot;224&quot; height=&quot;407&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.01D: OUR LIFE ADMIN SHELF ENDS UP WITH FIVE BOXES.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;step-3-file-your-stuff-in-folders&quot;&gt;Step 3: File your stuff in folders&lt;/h3&gt;
&lt;p&gt;We put our documents in manila folders. Each folder gets a number starting at &lt;code&gt;.11&lt;/code&gt; so we can track them. In this case, we&amp;#39;ve put some insurance policies in &lt;code&gt;15.23 Travel insurance&lt;/code&gt;. Then put the folder in a box.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01E-Berkeley_folder_box--0_original-light-cx-1252x434.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01E-Berkeley_folder_box--0_original-dark-cx-1252x434.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01E-Berkeley_folder_box--0_original-light-cx-1252x434.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01E-Berkeley_folder_box--0_original-dark-cx-1252x434.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Line drawing representing a manila folder. It&apos;s labelled &apos;15.23 Travel insurance&apos; and contains 3 documents, labelled &apos;Claim form&apos;, &apos;Payment receipt&apos;, and &apos;Policy document&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01E-Berkeley_folder_box--0_original-light-cx-1252x434.png&quot; width=&quot;626&quot; height=&quot;217&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.01E. WE PUT OUR DOCUMENTS IN NUMBERED FOLDERS AND STORE THEM IN THE RELEVANT BOX.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h3 id=&quot;this-is-how-we-structure-our-file-system&quot;&gt;This is how we structure our file system&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s return to our computer. The shelves have become our area folders. The boxes are category folders. And the manila folders are the IDs where we save our files.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01F-Finder_box_shelf_folder--1_labels-light-cx-648x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; srcset=&quot;/img/v6/11.01F-Finder_box_shelf_folder--1_labels-dark-cx-648x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01F-Finder_box_shelf_folder--1_labels-light-cx-648x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; srcset=&quot;/img/v6/11.01F-Finder_box_shelf_folder--1_labels-dark-cx-648x522.png&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of macOS Finder. It shows a parent folder &apos;10-19 Life admin&apos;, labelled &apos;SHELF&apos;. It contains folder &apos;15 Travel&apos;, labelled &apos;BOX&apos;. And it contains &apos;11.53 Travel insurance&apos;, which is labelled &apos;FOLDER&apos;.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/v6/11.01F-Finder_box_shelf_folder--1_labels-light-cx-648x522.png&quot; width=&quot;324&quot; height=&quot;261&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;FIGURE 11.01F. A NEAT FILE STRUCTURE WITH AREAS, CATEGORIES, AND IDS.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;benefits-of-the-johnnydecimal-id&quot;&gt;Benefits of the Johnny.Decimal ID&lt;/h2&gt;
&lt;p&gt;Each of our storage folders now has a number, the ID. It always has two digits, a decimal, and two digits. For example, &lt;code&gt;15.23&lt;/code&gt; &lt;code&gt;22.11&lt;/code&gt; &lt;code&gt;31.17&lt;/code&gt;. This number is really useful.&lt;/p&gt;
&lt;h3 id=&quot;it-provides-structure&quot;&gt;It provides structure&lt;/h3&gt;
&lt;p&gt;The ID tells us exactly where a thing is. The numbers before the decimal are the item&amp;#39;s category, and they define the structure of your system.&lt;/p&gt;
&lt;p&gt;At a glance, you know what sort of thing the item contains. You&amp;#39;ll be astonished at how many of your category numbers you remember.&lt;/p&gt;
&lt;h3 id=&quot;theyre-easy-to-communicate&quot;&gt;They&amp;#39;re easy to communicate&lt;/h3&gt;
&lt;p&gt;They&amp;#39;re short, memorable, and can be spoken out loud. Say it like &amp;quot;sixteen oh-two&amp;quot; or &amp;quot;thirty-one dot seventeen&amp;quot;.&lt;/p&gt;
&lt;p&gt;This is really handy when you want to tell someone (including your future self) where a thing is.&lt;/p&gt;
&lt;h3 id=&quot;things-stay-where-they-are&quot;&gt;Things stay where they are&lt;/h3&gt;
&lt;p&gt;If you use the alphabet to name folders, they move when a new one is created. So you never get a chance to develop muscle memory.&lt;/p&gt;
&lt;p&gt;Numbers solve this problem. In the example above, &lt;code&gt;11 Me&lt;/code&gt; comes before &lt;code&gt;12 House&lt;/code&gt; because the folders sort by number. If we made a new folder, &lt;code&gt;16 Aardvark collection&lt;/code&gt;, nothing would move.&lt;/p&gt;
&lt;h3 id=&quot;it-imposes-limits&quot;&gt;It imposes limits&lt;/h3&gt;
&lt;p&gt;The &amp;#39;no more than ten&amp;#39; concept is at the heart of Johnny.Decimal.&lt;/p&gt;
&lt;p&gt;When you start looking for something, you have no more than ten area folders to choose from. Select one and ignore the rest. Now you have no more than ten category folders to choose from. Repeat the process.&lt;/p&gt;
&lt;p&gt;You then arrive in a folder with no more than one hundred IDs. If the ID was created recently it will have a higher number. If not, lower. And things created together, stick together. The alphabet isn&amp;#39;t around to ruin the party.&lt;/p&gt;
&lt;h1 id=&quot;i-like-it-what-next&quot;&gt;I like it! What next?&lt;/h1&gt;
&lt;p&gt;Welcome to the Johnny.Decimal family, there&amp;#39;s plenty to go on with:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Explore the site to &lt;a href=&quot;https://johnnydecimal.com/11.02/&quot;&gt;learn more&lt;/a&gt; about the system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Get organised fast with our pre-built systems. In 10 minutes you&amp;#39;ll be more organised than you&amp;#39;ve ever been.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We have systems for your &lt;a href=&quot;https://johnnydecimal.com/15.03/&quot;&gt;Life Admin&lt;/a&gt; and your &lt;a href=&quot;https://johnnydecimal.com/15.04/&quot;&gt;Small Business&lt;/a&gt;. They&amp;#39;re what I use to manage my own life and business.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;If you want to build your own system, and learn everything that I know about being more organised, &lt;a href=&quot;https://johnnydecimal.com/14.02/&quot;&gt;Johnny.Decimal University&lt;/a&gt; has 10+ hours of video.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The Johnny.Decimal Workbook is now free. &lt;a download=&quot;&quot; href=&quot;https://johnnydecimal.com/D25/21/21.31/The%20Johnny.Decimal%20Workbook%20(fifth%20edition).pdf&quot;&gt;Click here to download it&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Follow the &lt;a href=&quot;https://johnnydecimal.com/22.02/&quot;&gt;blog&lt;/a&gt; (just point your RSS reader at the site), and subscribe to the &lt;a href=&quot;https://youtube.com/@johnny.decimal&quot;&gt;YouTube channel&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ask for help in the friendly &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;forum&lt;/a&gt; or &lt;a href=&quot;https://johnnydecimal.com/23.02/&quot;&gt;Discord&lt;/a&gt;, or &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;email me&lt;/a&gt; (I answer every message).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sign up to the &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;mailing list&lt;/a&gt; for an email every couple of weeks. Plain text, no trackers.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;To prevent spam, solve the puzzle.&lt;/li&gt;
&lt;li&gt;You have two pet chickens. You get one more pet chicken. How many chickens do you now have?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;form method=&quot;POST&quot; action=&quot;https://api.jdcm.al/api/v1/list/subscribe.html&quot; class=&quot;listmonk-form&quot; style=&quot;margin-top: 20px;&quot; onsubmit=&quot;&quot;&gt; i.blur());&quot;&gt;&lt;input type=&quot;text&quot; name=&quot;answer&quot; required=&quot;&quot; placeholder=&quot;How many chickens?&quot; autocomplete=&quot;off&quot; data-1p-ignore=&quot;true&quot; data-bwignore=&quot;true&quot; data-lpignore=&quot;true&quot; data-form-type=&quot;other&quot;&gt;&lt;input type=&quot;email&quot; name=&quot;email&quot; required=&quot;&quot; placeholder=&quot;Email address&quot; autocomplete=&quot;off&quot; data-1p-ignore=&quot;true&quot; data-bwignore=&quot;true&quot; data-lpignore=&quot;true&quot; data-form-type=&quot;other&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;Subscribe&quot;&gt;&lt;/form&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-room-to-grow&quot;&gt;
&lt;p&gt;We don&amp;#39;t try to use all ten shelves -- there&amp;#39;s room to grow. &lt;a href=&quot;#user-content-fnref-room-to-grow&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-startat11&quot;&gt;
&lt;p&gt;I&amp;#39;ll explain later why the first box isn&amp;#39;t number &lt;code&gt;01&lt;/code&gt; or &lt;code&gt;10&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-startat11&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0072 6.0.0</title><link>https://johnnydecimal.com/22.00.0072/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0072/</guid><description>Version six of the site is released.</description><pubDate>Sat, 17 Aug 2024 01:54:59 GMT</pubDate><content:encoded>&lt;h1 id=&quot;600&quot;&gt;6.0.0&lt;/h1&gt;
&lt;p&gt;The website has a new version. We re-wrote everything.&lt;/p&gt;
&lt;p&gt;Version six. Where six is more of a hunch than any sort of science. (I&amp;#39;ll do a brief history of the site in another post.)&lt;/p&gt;
&lt;h3 id=&quot;why&quot;&gt;Why?&lt;/h3&gt;
&lt;p&gt;The old content was a few years old, and it was showing its age. This system evolves: with me, with time, and as you -- my community -- discover new stuff.&lt;/p&gt;
&lt;p&gt;That sounds schmaltzy but it&amp;#39;s true. Especially in the past year, since I&amp;#39;ve had more time to spend on this thing, the forum and Discord have taken off. Your ideas all make their way back in to the system. Thanks.&lt;/p&gt;
&lt;p&gt;Then we wrote a &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;workbook&lt;/a&gt;, recorded a &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;workshop&lt;/a&gt;, and created the first &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;Quick Start&lt;/a&gt; pack -- in that order -- and they all subtly changed how I think about this thing.&lt;/p&gt;
&lt;p&gt;So everything needed to be brought in to alignment, which is what we&amp;#39;ve done. We&amp;#39;ve drawn all the examples from the &amp;#39;life admin&amp;#39; pack, so it&amp;#39;s a cohesive story.&lt;/p&gt;
&lt;h3 id=&quot;lucy-wrote-much-of-it&quot;&gt;Lucy wrote much of it&lt;/h3&gt;
&lt;p&gt;I write a lot of words. Then Lucy -- a professional editor in a previous life -- tells me to delete most of them. This hurts, but she&amp;#39;s right.&lt;/p&gt;
&lt;p&gt;This time round, she wrote much of the new content.&lt;/p&gt;
&lt;p&gt;Like I said &lt;a href=&quot;https://johnnydecimal.com/22.00.0070/&quot;&gt;last time&lt;/a&gt;, I consider the &lt;code&gt;10-19 Concepts&lt;/code&gt; section of this site to be the canonical Johnny.Decimal user guide. I love how focused this version is.&lt;/p&gt;
&lt;p&gt;We agonised over every paragraph. &amp;#39;Kill the widow&amp;#39; is Lucy&amp;#39;s favourite game: if there&amp;#39;s one word on its own line, you need to find another to delete to bring it up.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-runt&quot; id=&quot;user-content-fnref-runt&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;(Blog posts are where I&amp;#39;m let loose to ramble. Don&amp;#39;t blame her for any of this.)&lt;/p&gt;
&lt;h3 id=&quot;the-index-is-now-your-jdex&quot;&gt;The index is now your JDex&lt;/h3&gt;
&lt;p&gt;This is big. I&amp;#39;ve been looking for inspiration for a while, and &lt;a href=&quot;https://forum.johnnydecimal.com/t/ideas-help-please-my-index/1325/32&quot;&gt;obsidian_starcaller&lt;/a&gt; called it.&lt;/p&gt;
&lt;p&gt;JDex is brilliant. It recalls &lt;a href=&quot;https://en.wikipedia.org/wiki/Rolodex&quot;&gt;Rolodex&lt;/a&gt;, starts with &amp;#39;JD&amp;#39;, works as a noun and a verb, and basically doesn&amp;#39;t exist as a term online. It&amp;#39;s genius.&lt;/p&gt;
&lt;h3 id=&quot;berkeley-mono-all-the-way&quot;&gt;Berkeley Mono all the way&lt;/h3&gt;
&lt;p&gt;In line with this feeling like a manual, we replaced the old body serif font -- IBM Plex Serif -- with Berkeley Mono. It&amp;#39;s now the only font we use.&lt;/p&gt;
&lt;p&gt;I &lt;em&gt;adore&lt;/em&gt; it. Lucy&amp;#39;s idea. Why didn&amp;#39;t I think of it?&lt;/p&gt;
&lt;p&gt;We draw constant inspiration from the &lt;a href=&quot;https://berkeleygraphics.com/typefaces/berkeley-mono/&quot;&gt;Berkeley site&lt;/a&gt;. When we wonder how to make something look more like a 1970s NASA manual, we go there and stare for a while.&lt;/p&gt;
&lt;p&gt;Berkeley is &lt;a href=&quot;https://berkeleygraphics.com/products/&quot;&gt;really reasonably priced&lt;/a&gt;. Fonts can cost a &lt;em&gt;lot&lt;/em&gt; more than this. We love Neil and his work: please support him if you can.&lt;/p&gt;
&lt;h3 id=&quot;dark-mode-is-first-class&quot;&gt;Dark mode is first-class&lt;/h3&gt;
&lt;p&gt;The site&amp;#39;s dark mode is really sweet now. There&amp;#39;s no toggle on the site: it honours your system setting.&lt;/p&gt;
&lt;p&gt;With v6, all (new) images have proper dark mode versions. If the source app has a native dark mode, that&amp;#39;s where the image comes from. If it doesn&amp;#39;t, I&amp;#39;ve applied a colour filter and brought the luminosity down.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t use dark mode myself so feedback on this &amp;#39;hack&amp;#39; is welcome. I know the contrast suffers; there&amp;#39;s not much I can do about this. I&amp;#39;ll fix up the old images, all of which are in blog posts, over time.&lt;/p&gt;
&lt;h3 id=&quot;layout-tweaks&quot;&gt;Layout tweaks&lt;/h3&gt;
&lt;p&gt;The &amp;#39;Location&amp;#39; box above the main content was cute, but it didn&amp;#39;t work very hard. That&amp;#39;s been replaced with a new box that shows a table of contents for the page. Nice.&lt;/p&gt;
&lt;h3 id=&quot;behind-the-scenes&quot;&gt;Behind the scenes&lt;/h3&gt;
&lt;p&gt;You know when you go to the dentist and they give you a full scrape and you come out and your teeth feel sharper?&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what I did to all of the back-end code. So it&amp;#39;s now much nicer to work with. This will allow me to make more changes more quickly in the future.&lt;/p&gt;
&lt;h1 id=&quot;should-i-read-it-all&quot;&gt;Should I read it all?&lt;/h1&gt;
&lt;p&gt;I think you should. It won&amp;#39;t take long, and it&amp;#39;ll bring you up to speed.&lt;/p&gt;
&lt;h3 id=&quot;and-when-i-find-a-typo&quot;&gt;And when I find a typo?...&lt;/h3&gt;
&lt;p&gt;There&amp;#39;s got to be one, right? It&amp;#39;ll kill us but hey, we&amp;#39;d rather know about it.&lt;/p&gt;
&lt;p&gt;First accepted typo gets a Johnny.Decimal sticker.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-main-site-only&quot; id=&quot;user-content-fnref-main-site-only&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; :-)&lt;/p&gt;
&lt;h3 id=&quot;thank-you&quot;&gt;Thank you&lt;/h3&gt;
&lt;p&gt;Thanks for being here. Without you, there&amp;#39;s no point. As always, we&amp;#39;re here to help. Let us know what you need.&lt;/p&gt;
&lt;p&gt;-- johnny &amp;amp; lucy, aka &amp;#39;jucy&amp;#39;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-runt&quot;&gt;
&lt;p&gt;Turns out this is called a &lt;a href=&quot;https://en.wikipedia.org/wiki/Widows_and_orphans&quot;&gt;runt&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-runt&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-main-site-only&quot;&gt;
&lt;p&gt;On the main site only; not blog posts. We haven&amp;#39;t edited those. &lt;a href=&quot;#user-content-fnref-main-site-only&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>01.04 Version</title><link>https://johnnydecimal.com/00-09-site-administration/01-about/01.04-version/</link><guid isPermaLink="true">https://johnnydecimal.com/00-09-site-administration/01-about/01.04-version/</guid><description>The Johnny.Decimal website version and release cycle are here. I provide updates about new content via the blog, RSS feed, forum, and mailing list.</description><pubDate>Sat, 17 Aug 2024 01:04:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;versionnumber&quot;&gt;6.5.0&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Version: &lt;code&gt;2026-04-09 6.5.0&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Released: &lt;time datetime=&quot;2026-04-09T02:28:10.727Z&quot;&gt;&lt;code&gt;Thu Apr 09 2026 02:28:10 GMT+0000&lt;/code&gt;&lt;/time&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Stay up to date: refer to the &lt;a href=&quot;https://johnnydecimal.com/21.04/&quot;&gt;communications plan&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;release-notes&quot;&gt;Release notes&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.5.0&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Updated &lt;a href=&quot;https://johnnydecimal.com/01.01/&quot;&gt;01.01&lt;/a&gt;, &lt;a href=&quot;https://johnnydecimal.com/01.02/&quot;&gt;01.02&lt;/a&gt;, &lt;a href=&quot;https://johnnydecimal.com/01.03/&quot;&gt;01.03&lt;/a&gt; with release of &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;JDHQ&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.3.0&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Content: added &lt;a href=&quot;https://johnnydecimal.com/13.12/&quot;&gt;13.12&lt;/a&gt; &amp;amp; &lt;a href=&quot;https://johnnydecimal.com/13.32/&quot;&gt;13.32&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.2.0&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Style: re-architected the site so that it displays properly when zoomed. It was a bit of a mess before.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.1.0&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Content: re-written category &lt;a href=&quot;https://johnnydecimal.com/10-19-concepts/13-system-expansion/&quot;&gt;13 System expansion&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.0.11&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Style: tried to improve the experience when you increase the font size. Previously, my fixed-width blocks (e.g. navigation) would grow, causing the viewport to scroll horizontally. It didn&amp;#39;t handle this well.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Now, the font size on these fixed-&lt;wbr&gt;width elements doesn&amp;#39;t increase. You can still pinch-to-zoom if you need them larger. As a result they don&amp;#39;t overflow, and the body text is free to grow.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Feedback on this and any other accessibility issues is always welcome. I&amp;#39;ll prioritise fixing any a11y issues.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Content: the first &amp;#39;further reading&amp;#39; section has been added to the bottom of &lt;a href=&quot;https://johnnydecimal.com/12.03/#further-reading&quot;&gt;12.03&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.0.4&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Code: much improved the image loader, so it now handles dark/light and desktop/mobile images &amp;#39;properly&amp;#39;. Thanks to Houssam.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Style: replaced the &lt;code&gt;▷&lt;/code&gt; in call-out boxes with &lt;code&gt;»&lt;/code&gt; so it doesn&amp;#39;t look like a click-to-expand reveal button.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;6.0.0&lt;/code&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Content: site-wide rewrite to align with current thinking.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Every page has had a refresh, or has a note to say that it will get one soon.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Style: replaced body serif with Berkeley Mono. It&amp;#39;s now the only font we use. :-)&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;for-the-semver-nerds&quot;&gt;For the &lt;a href=&quot;https://semver.org&quot;&gt;SemVer&lt;/a&gt; nerds&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ll add release notes for &lt;code&gt;MAJOR&lt;/code&gt; and &lt;code&gt;MINOR&lt;/code&gt; updates. This indicates that content was changed.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;PATCH&lt;/code&gt; updates are typos, visual tweaks, and other back-end &amp;#39;fixes&amp;#39;, and might not receive release notes.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>01.02 Licence</title><link>https://johnnydecimal.com/00-09-site-administration/01-about/01.02-licence/</link><guid isPermaLink="true">https://johnnydecimal.com/00-09-site-administration/01-about/01.02-licence/</guid><description>Here&apos;s the formal licence for use of our content.</description><pubDate>Sat, 17 Aug 2024 01:02:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;licence&quot;&gt;Licence&lt;/h1&gt;
&lt;h2 id=&quot;definition&quot; class=&quot;no-border less-margin&quot;&gt;&lt;p&gt;Definition&lt;/p&gt;&lt;/h2&gt;
&lt;p&gt;The content published at &lt;a href=&quot;https://www.johnnydecimal.com&quot;&gt;www.johnnydecimal.com&lt;/a&gt; forms &lt;strong&gt;the Johnny.Decimal system&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Purchased content at &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;jdhq.johnnydecimal.com&lt;/a&gt; is separate and does &lt;strong&gt;not&lt;/strong&gt; form part of the system.&lt;/p&gt;
&lt;h2 id=&quot;use-of-the-johnnydecimal-system&quot;&gt;Use of the Johnny.Decimal system&lt;/h2&gt;
&lt;p&gt;You are hereby granted a permanent and irrevocable right to use &lt;strong&gt;the Johnny.Decimal system&lt;/strong&gt; to organise your files and information for any purpose, personal or commercial. No restrictions apply.&lt;/p&gt;
&lt;p&gt;Note the optional &lt;a href=&quot;#commercial-licence&quot;&gt;commercial licence&lt;/a&gt;, below.&lt;/p&gt;
&lt;h2 id=&quot;reuse-or-redistribution-of-content&quot;&gt;Reuse or redistribution of content&lt;/h2&gt;
&lt;p&gt;For reuse, redistribution, or similar, &lt;strong&gt;the Johnny.Decimal system&lt;/strong&gt; is licenced under &lt;a href=&quot;https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1&quot;&gt;Attribution-NonCommercial-ShareAlike 4.0 International&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You are free to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Share&lt;/strong&gt; -- copy and redistribute the material on this website in any medium or format.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Adapt&lt;/strong&gt; -- remix, transform, and build upon the material.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Under the following terms:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Attribution&lt;/strong&gt; -- You must give appropriate credit, provide a link to the licence, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;NonCommercial&lt;/strong&gt; -- You may not use the material for commercial purposes.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;ShareAlike&lt;/strong&gt; -- If you remix, transform, or build upon the material, you must distribute your contributions under the same licence as the original.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;No additional restrictions&lt;/strong&gt; -- You may not apply legal terms or technological measures that legally restrict others from doing anything the licence permits.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;use-of-jdhq-systems--content&quot;&gt;Use of JDHQ systems &amp;amp; content&lt;/h2&gt;
&lt;p&gt;A single-user licence is granted to the individual who holds an account on the JDHQ website at &lt;a href=&quot;https://jdhq.johnnydecimal.com&quot;&gt;jdhq.johnnydecimal.com&lt;/a&gt;. This grants access to the pre-built systems, downloads, course material, and support centre. The content may be used by the purchaser as many times as required for any purpose, personal or commercial. No restrictions apply.&lt;/p&gt;
&lt;p&gt;The purchased content and downloads are not for use by any other individual or entity. If you know someone who would like this, please ask them to make their own purchase.&lt;/p&gt;
&lt;h3 id=&quot;if-you-need-multiple-user-accounts&quot;&gt;If you need multiple user accounts&lt;/h3&gt;
&lt;p&gt;If you require multiple user accounts, e.g. for the Small Business System, please &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;get in touch&lt;/a&gt; to discuss purchasing additional licences at a discount.&lt;/p&gt;
&lt;h3 id=&quot;thank-you-for-doing-the-right-thing&quot;&gt;Thank you for doing the right thing&lt;/h3&gt;
&lt;p&gt;It took Johnny and Lucy thousands of hours to create the pre-built systems, course materials, support centre, and websites. It took Johnny over a decade to build this system and acquire this knowledge.&lt;/p&gt;
&lt;p&gt;Johnny quit his job to be able to do this. This is our family&amp;#39;s only income. Please do the right thing. Thank you.&lt;/p&gt;
&lt;h2 id=&quot;commercial-licence&quot;&gt;Commercial licence&lt;/h2&gt;
&lt;p&gt;The Johnny.Decimal system is free for everyone, including commercial use. However, companies are encouraged to obtain a commercial licence to support ongoing development and ensure continued availability and development of the system.&lt;/p&gt;
&lt;p&gt;Three tiers are available. They are based on the &lt;em&gt;total&lt;/em&gt; number of employees at your organisation. For larger organisations please ensure that your organisation has not already purchased a licence. Payments are final.&lt;/p&gt;
&lt;p&gt;All prices are in USD. This is an annual subscription that you may cancel at any time using the link in your payment receipt.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;10-100 employees: &lt;a href=&quot;https://buy.stripe.com/6oUaEYbZr7EL3GX1aZcZa07&quot;&gt;$1,000/year&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;100-1000 employees: &lt;a href=&quot;https://buy.stripe.com/7sY5kEaVn1gn6T97zncZa08&quot;&gt;$5,000/year&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;1000+ employees: &lt;a href=&quot;https://buy.stripe.com/eVq9AU0gJ2kr1yPdXLcZa09&quot;&gt;$10,000/year&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Licence holders receive an official certificate confirming authorised commercial use, and:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;$1,000/year: one (1) JDHQ account.&lt;/li&gt;
&lt;li&gt;$5,000/year: five (5) JDHQ accounts.&lt;/li&gt;
&lt;li&gt;$10,000/year: ten (10) JDHQ accounts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each account has access to the Life Admin System, Small Business System, and Johnny.Decimal University. They are valued at US$422.&lt;/p&gt;
&lt;h3 id=&quot;special-requests&quot;&gt;Special requests&lt;/h3&gt;
&lt;p&gt;Feel free to &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;email me&lt;/a&gt; if you need custom licensing arrangements -- whether it&amp;#39;s adjusting the pricing to fit your budget approval process, or anything else.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>01.01 About us</title><link>https://johnnydecimal.com/00-09-site-administration/01-about/01.01-about-us/</link><guid isPermaLink="true">https://johnnydecimal.com/00-09-site-administration/01-about/01.01-about-us/</guid><description>A little background about the humans behind Johnny.Decimal and the business entity.</description><pubDate>Sat, 17 Aug 2024 01:01:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;about-us&quot;&gt;About us&lt;/h1&gt;
&lt;p&gt;This website and everything on it was created by Johnny Noble and Lucy Butcher. If you buy something from us, the legal entity you&amp;#39;re purchasing from is:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Coruscade Pty Ltd, a registered company in Australia.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Australian_Business_Number&quot;&gt;ABN&lt;/a&gt;: 53 145 180 721.&lt;/li&gt;
&lt;li&gt;Address: PO Box 60, Cessnock, NSW 2325.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;why-isnt-everything-free&quot;&gt;Why isn&amp;#39;t everything free?&lt;/h2&gt;
&lt;p&gt;A lot of our content is free -- the system is extensively documented on this site, and you can use it &lt;a href=&quot;https://johnnydecimal.com/01.02/&quot;&gt;without restriction&lt;/a&gt;. I give as much of my time as possible to answering questions on the &lt;a href=&quot;https://forum.johnnydecimal.com/&quot;&gt;forum&lt;/a&gt; and &lt;a href=&quot;http://discord.gg/KYWzAJhmPv&quot;&gt;Discord&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In May 2023 I quit my job to &amp;#39;be&amp;#39; Johnny.Decimal. This is what we do for a living. It pays our rent. This allows us to spend a &lt;em&gt;lot&lt;/em&gt; more time thinking and making useful stuff.&lt;/p&gt;
&lt;p&gt;Before, I only had an hour or so on weekends. Now, you get Johnny and Lucy working at least 6 days a week. So that&amp;#39;s why we sell things, and why everything isn&amp;#39;t free.&lt;/p&gt;
&lt;p&gt;Thanks for supporting us. It means the world.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>00.00 Index</title><link>https://johnnydecimal.com/00-09-site-administration/00-index/00.00-index/</link><guid isPermaLink="true">https://johnnydecimal.com/00-09-site-administration/00-index/00.00-index/</guid><description>A link to every page on the site, with an indication of whether or not you have visited it.</description><pubDate>Sat, 17 Aug 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;index&quot;&gt;Index&lt;/h1&gt;
&lt;p&gt;This page has a link to every page on the site. They use the standard link colouring and unread pages have an unread indicator • in the first column.&lt;/p&gt;
&lt;p&gt;It mirrors the site navigation dingus, but that does not indicate which pages you have visited.&lt;/p&gt;
&lt;p&gt;Note that there is a separate index for blog posts at &lt;a href=&quot;https://johnnydecimal.com/22.02/&quot;&gt;22.02 All posts&lt;/a&gt;.&lt;/p&gt;
&lt;ol id=&quot;Index0000&quot; class=&quot;astro-bbbhnya4&quot;&gt; &lt;li class=&quot;area astro-bbbhnya4&quot;&gt; &lt;a class=&quot;area astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/00-09-site-administration/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;00-09&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Site administration&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/00-09-site-administration/00-index/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;00&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Index&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/00.00/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;00.00&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Index&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/00-09-site-administration/01-about/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;About&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/01.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;01.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;About us&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/01.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;01.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Licence&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/01.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;01.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Policies&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/01.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;01.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Version&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;area astro-bbbhnya4&quot;&gt; &lt;a class=&quot;area astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;10-19&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Concepts&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/11-core/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Core concepts&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Introduction&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Areas and categories&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;IDs&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Philosophy&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.05/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.05&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The JDex&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.06/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.06&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Saving files&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.07/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.07&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Keeping notes&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/11.08/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;11.08&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The Librarian&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/12-advanced/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Advanced concepts&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/12.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Managing email&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/12.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Other JDex methods&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/12.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The standard zeros&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/12.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Working at the command line&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/12.05/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;12.05&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;AC.ID notation&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/13-system-expansion/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;System expansion&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Introduction&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.11/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.11&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Multiple systems&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.12/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.12&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Guidelines&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.21/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.21&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Expand an area&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.31/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.31&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Extend the end&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/13.32/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;13.32&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Guidelines&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/14-build-your-system/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;14&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Build and learn&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/14.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;14.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Build your own system&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/14.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;14.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;JD University&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/14.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;14.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The Workshop&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/14.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;14.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Task and Project Management&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/10-19-concepts/15-patterns-templates/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;15&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Patterns and templates&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/15.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;15.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Introduction&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/15.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;15.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Creative pattern&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/15.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;15.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Life Admin System&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/15.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;15.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Small Business System&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;area astro-bbbhnya4&quot;&gt; &lt;a class=&quot;area astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/20-29-communication/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;20-29&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Communication&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/20-29-communication/21-send-and-receive/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;21&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Send and receive&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/21.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;21.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Contact me&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/21.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;21.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Mailing list&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/21.03/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;21.03&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;RSS feed&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/21.04/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;21.04&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Comms plan&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;22&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Blog&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/22.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;22.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Latest posts&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/22.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;22.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;All posts&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/20-29-communication/23-forums-and-chat/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;23&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Forums and chat&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/23.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;23.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The forum&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/23.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;23.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Discord&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;area astro-bbbhnya4&quot;&gt; &lt;a class=&quot;area astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/30-39-the-library/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;30-39&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;The library&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/30-39-the-library/31-apps-and-utilities/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;31&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Apps and utilities&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/31.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;31.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;For the system&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/31.02/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;31.02&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Other useful tools&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;category astro-bbbhnya4&quot;&gt; &lt;a class=&quot;category astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/30-39-the-library/32-education/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;32&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Education&lt;/div&gt; &lt;/a&gt; &lt;/li&gt;&lt;li class=&quot;id astro-bbbhnya4&quot;&gt; &lt;a class=&quot;id astro-bbbhnya4&quot; href=&quot;https://johnnydecimal.com/32.01/&quot;&gt; &lt;div class=&quot;unread astro-bbbhnya4&quot;&gt;•&lt;/div&gt; &lt;div class=&quot;spacer astro-bbbhnya4&quot;&gt;&lt;/div&gt; &lt;div class=&quot;number astro-bbbhnya4&quot;&gt;32.01&amp;nbsp;&lt;/div&gt; &lt;div class=&quot;title astro-bbbhnya4&quot;&gt;Be better at computer&lt;/div&gt; &lt;/a&gt; &lt;/li&gt; &lt;/ol&gt; </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0071 Bear Pro subscription prize draw</title><link>https://johnnydecimal.com/22.00.0071/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0071/</guid><description>I&apos;ve drawn the winners of the Bear Pro subscription prize draw</description><pubDate>Sun, 04 Aug 2024 00:52:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;bear-pro-subscription-prize-draw&quot;&gt;Bear Pro subscription prize draw&lt;/h1&gt;
&lt;p&gt;Since we launched the &lt;a href=&quot;https://johnnydecimal.com/14.04/&quot;&gt;Quick Start: &amp;#39;Life admin&amp;#39;&lt;/a&gt; pack I&amp;#39;ve been running a prize draw for 1 year of Bear Pro, worth US$30.&lt;/p&gt;
&lt;p&gt;The kind folks at Bear gave me 5 App Store codes. Another reason why it&amp;#39;s my favourite notes app. :-)&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s how I did it. I won&amp;#39;t show full working as it might leak customer data.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Export all orders from Shopify.&lt;/li&gt;
&lt;li&gt;Extract orders for the workshop and paste them in to Excel 5x.&lt;/li&gt;
&lt;li&gt;Extract orders for the workbook/quick start bundle and paste them in 2x.&lt;/li&gt;
&lt;li&gt;Extract orders for the quick start pack and paste them in 1x.&lt;/li&gt;
&lt;li&gt;Add a column, &lt;code&gt;=RAND()&lt;/code&gt;. This gives me a random number between 0 and 1.&lt;/li&gt;
&lt;li&gt;Copy/paste values on this column otherwise it changes on every edit or file open.&lt;/li&gt;
&lt;li&gt;Sort the column descending.&lt;/li&gt;
&lt;li&gt;Pick the top 5.&lt;/li&gt;
&lt;/ol&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Excel, showing my working.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0071.01-excel-908x236@2x.png&quot; width=&quot;454&quot; height=&quot;118&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;I just emailed those 5 people. They might not need the code, in which case I&amp;#39;ll mail the next people on the list until they&amp;#39;re all gone.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0070 Site refresh</title><link>https://johnnydecimal.com/22.00.0070/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0070/</guid><description>We&apos;re giving the site its annual service.</description><pubDate>Mon, 29 Jul 2024 00:33:32 GMT</pubDate><content:encoded>&lt;h1 id=&quot;site-refresh&quot;&gt;Site refresh&lt;/h1&gt;
&lt;p&gt;Programming notice, 29th July: we&amp;#39;re giving the site its annual service.&lt;/p&gt;
&lt;h2 id=&quot;content&quot;&gt;Content&lt;/h2&gt;
&lt;p&gt;The content here evolves over time. This idea isn&amp;#39;t static: as the world changes, so do our ideas. Some of the stuff we&amp;#39;ve produced recently clashes with the advice on this site, which isn&amp;#39;t ideal.&lt;/p&gt;
&lt;p&gt;I consider the main pages of the site to be like the Johnny.Decimal user manual. So when we change them, we do it with great consideration. Which takes time. I don&amp;#39;t like to just jump in and make edits.&lt;/p&gt;
&lt;p&gt;Fortunately I have an actual editor sitting next to me: Lucy. She&amp;#39;s going to review all of our content, and we&amp;#39;ll do an update to make sure everything is consistent with our current thinking.&lt;/p&gt;
&lt;p&gt;This will take a few weeks, but it&amp;#39;ll be worth it. So please bear with us.&lt;/p&gt;
&lt;h2 id=&quot;style&quot;&gt;Style&lt;/h2&gt;
&lt;p&gt;You may also notice that some of the styling is a little wonky. This is because I am a very poor web developer. I need to separate some things out so that when I tweak one thing &lt;em&gt;over there&lt;/em&gt; it doesn&amp;#39;t have unintended consequences &lt;em&gt;over here&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;This will happen at the same time as the content update. Don&amp;#39;t worry, no big changes. Just a spit &amp;#39;n polish.&lt;/p&gt;
&lt;h2 id=&quot;control&quot;&gt;Control&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ll start to track these changes more rigorously. So I&amp;#39;ve added a &lt;a href=&quot;https://johnnydecimal.com/01.04/&quot;&gt;version number&lt;/a&gt; to the site, directly under the list of pages.&lt;/p&gt;
&lt;p&gt;I consider this the 5th major version (since 2013) so I&amp;#39;ve labelled it &lt;code&gt;5.0.0&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/01.04/&quot;&gt;01.04 Version&lt;/a&gt; will contain a summary of every change.&lt;/p&gt;
&lt;p&gt;Using &lt;a href=&quot;https://semver.org&quot;&gt;Semantic Versioning&lt;/a&gt;, the numbers will increment as follows.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Third digit: &amp;#39;PATCH&amp;#39; change.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;5.0.0&lt;/code&gt; → &lt;code&gt;5.0.1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Fixing a &lt;strong&gt;typo&lt;/strong&gt; or otherwise a &lt;strong&gt;minor tweak&lt;/strong&gt; that doesn&amp;#39;t fundamentally affect the structure of the system.&lt;/li&gt;
&lt;li&gt;Any update to the &lt;strong&gt;style&lt;/strong&gt; of the site that doesn&amp;#39;t change the &lt;strong&gt;content&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;You don&amp;#39;t need to care about these changes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Second digit: &amp;#39;MINOR&amp;#39; change.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;5.0.0&lt;/code&gt; → &lt;code&gt;5.1.0&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;new page&lt;/strong&gt; on the main site, i.e. &lt;em&gt;not including blog posts&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;Significant changes to content on &lt;strong&gt;a single/few page(s)&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;You should familiarise yourself with this change.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;First digit: &amp;#39;MAJOR&amp;#39; change.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;5.0.0&lt;/code&gt; → &lt;code&gt;6.0.0&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Significant changes to content on &lt;strong&gt;many pages&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;You should familiarise yourself with this change.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;stay-informed&quot;&gt;Stay informed&lt;/h2&gt;
&lt;p&gt;Subscribe to &lt;a href=&quot;https://johnnydecimal.com/21.02/&quot;&gt;The Quarterly&lt;/a&gt; for exactly 4 updates a year. Or point your RSS reader at the site. All pages are included in the feed.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0069 What is an ID?</title><link>https://johnnydecimal.com/22.00.0069/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0069/</guid><description>A fundamental Johnny.Decimal question: what is an ID, and how much should it contain?</description><pubDate>Thu, 25 Jul 2024 09:04:59 GMT</pubDate><content:encoded>&lt;h1 id=&quot;what-is-an-id&quot;&gt;What is an ID?&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://forum.johnnydecimal.com/t/quick-start-life-admin-support-topic/1660/20&quot;&gt;On the forum&lt;/a&gt;, user &lt;strong&gt;cobblepot&lt;/strong&gt; raises the question of how much a Johnny.Decimal ID should contain, and whether it should contain subfolders, and if so how many.&lt;/p&gt;
&lt;p&gt;My thinking on this has changed &lt;em&gt;significantly&lt;/em&gt; over the years. The site needs a proper refresh, which will take time. It&amp;#39;s next on my list.&lt;/p&gt;
&lt;p&gt;Until then, this short video hopefully clarifies my thinking, and answers some of cobblepot&amp;#39;s questions directly.&lt;/p&gt;
  </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0068 Standard &apos;life admin&apos; pack</title><link>https://johnnydecimal.com/22.00.0068/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0068/</guid><description>We&apos;re developing a new standard &apos;life admin&apos; area, and I&apos;ve been moving my life over to it.</description><pubDate>Mon, 15 Jul 2024 22:14:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;standard-life-admin-pack&quot;&gt;Standard &amp;#39;life admin&amp;#39; pack&lt;/h1&gt;
&lt;p&gt;We&amp;#39;ve been spending the last few weeks developing a standard &amp;#39;life admin&amp;#39; pack. The idea is that it&amp;#39;ll handle 95% of what 95% of people need to run their daily lives.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s been an interesting process. We did it &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;by the book&lt;/a&gt;, starting by &amp;#39;discovering&amp;#39; all of the things that people tell us they need to organise on the forum, email, workshop comments, and looking back at our own lives.&lt;/p&gt;
&lt;p&gt;Then to design a structure we cracked open MindNode and we spent a few days just talking it all over. Looking at every decision, questioning it, refining it, moving things around.&lt;/p&gt;
&lt;p&gt;And &lt;em&gt;then&lt;/em&gt; I moved my entire personal life in to it, which caused us to refine it even further. So I&amp;#39;m proof that this works.&lt;/p&gt;
&lt;h2 id=&quot;whos-it-for&quot;&gt;Who&amp;#39;s it for?&lt;/h2&gt;
&lt;p&gt;At JDHQ we&amp;#39;ve been calling this the &amp;#39;JD quick-start&amp;#39; pack. We&amp;#39;ve designed it for everyone: the idea is that you don&amp;#39;t need deep background -- any background, really -- in Johnny.Decimal to jump in and use it.&lt;/p&gt;
&lt;p&gt;And you shouldn&amp;#39;t have to spend a week &amp;#39;getting organised&amp;#39; to, well, be organised. Everyone needs this stuff.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ve spent a hundred hours figuring it out so that you don&amp;#39;t have to.&lt;/p&gt;
&lt;h2 id=&quot;one-area-five-categories&quot;&gt;One area, five categories&lt;/h2&gt;
&lt;p&gt;I knew I wanted this to be a single area.&lt;/p&gt;
&lt;p&gt;The more I do this the more I&amp;#39;m convinced that broader -- &lt;em&gt;much&lt;/em&gt; broader -- categories and IDs are the way to go. And that my advice from a decade ago to &amp;#39;not create subfolders&amp;#39; is no longer relevant: see below for the secret to subfolders.&lt;/p&gt;
&lt;p&gt;(I think it was good advice at the time. But the landscape has changed; the amount of stuff we all store has grown. That changes how you should think about storing it.)&lt;/p&gt;
&lt;p&gt;And we&amp;#39;ve compressed everything in to just five categories.&lt;/p&gt;
&lt;h2 id=&quot;dates-solve-so-many-problems&quot;&gt;Dates solve so many problems&lt;/h2&gt;
&lt;p&gt;You can compress an amazing amount in to a single ID when the first thing you see inside that ID is a list of dates, formatted &lt;code&gt;yyyy-mm-dd&lt;/code&gt; so that they sort nicely.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-dashes&quot; id=&quot;user-content-fnref-dashes&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;For instance, we&amp;#39;ve designed a &lt;em&gt;single ID&lt;/em&gt;:&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Life admin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;15&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Travel, events, &amp; entertainment ✈️&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;15.41&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;All short trips&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;We realised that a &amp;#39;short trip&amp;#39; -- one that you don&amp;#39;t really need to &lt;em&gt;plan&lt;/em&gt;, you just &lt;em&gt;book&lt;/em&gt; and go -- doesn&amp;#39;t need its own ID. We all make these trips all the time.&lt;/p&gt;
&lt;p&gt;So a single ID is enough, as long as its subfolders look like this:&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Life admin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;15&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Travel, events, &amp; entertainment ✈️&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;15.41&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;All short trips&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;id-contents&quot;&gt;2024-02-04 Melbourne&lt;/pre&gt;&lt;pre class=&quot;id-contents&quot;&gt;2024-04-18 Sydney&lt;/pre&gt;&lt;pre class=&quot;id-contents&quot;&gt;2024-05-28 Brisbane&lt;/pre&gt;&lt;pre class=&quot;id-contents&quot;&gt;2024-07-13 Adelaide&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;And in each of those, for a short trip you might just have a flight confirmation and a hotel booking. Simple.&lt;/p&gt;
&lt;h2 id=&quot;subheaders&quot;&gt;Subheaders&lt;/h2&gt;
&lt;p&gt;An idea I&amp;#39;ve toyed with over the years, and one that I usually avoid because of its unpredictability.&lt;/p&gt;
&lt;p&gt;But in this highly-designed system, it&amp;#39;s really useful: subheaders.&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Life admin&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;13&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Money earned, saved, owed, &amp; spent 💰&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.10&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;■ Earned 🤑&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.11&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Payslips, invoices, &amp; remittance&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.12&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Expenses &amp; claims&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.13&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Government services&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.14&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Gifts, prizes, inheritance, &amp; windfalls&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.15&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Selling my stuff&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.20&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;■ Saved 📈&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.21&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Budgets &amp; planning&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.22&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Bank accounts&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.23&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Investments &amp; assets&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; id&quot;&gt;&lt;span class=&quot;id-indent&quot;&gt;&lt;/span&gt;&lt;span&gt;13.24&lt;/span&gt;&lt;span class=&quot;id-title&quot;&gt;Pension&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;We picked the &amp;#39;black square&amp;#39; symbol because it looks nice in macOS&amp;#39; Finder.&lt;/p&gt;
&lt;p&gt;This works really well in breaking up a long list of IDs.&lt;/p&gt;
&lt;h2 id=&quot;the-emoji-really-help&quot;&gt;The emoji really help 😛&lt;/h2&gt;
&lt;p&gt;We&amp;#39;ve sprinkled emoji throughout, and they&amp;#39;re &lt;em&gt;really useful&lt;/em&gt;. They give your brain something else to anchor on to.&lt;/p&gt;
&lt;p&gt;(When we release the pack there&amp;#39;ll be a version without emoji if you&amp;#39;re the sort of person who takes yourself really seriously.)&lt;/p&gt;
&lt;h2 id=&quot;the-pack&quot;&gt;The pack&lt;/h2&gt;
&lt;p&gt;The pack will contain this folder structure as a download, and links to shared folders on all of the usual cloud platforms.&lt;/p&gt;
&lt;p&gt;It will contain an index, either as downloadable text files that you can import in to your notes app of choice, or as a shared Apple Notes link.&lt;/p&gt;
&lt;p&gt;And there&amp;#39;ll be a version that you can import in to Bear, which uses its unique nested-tag feature to build a really nice sidebar.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of Bear&apos;s sidebar. It builds a hierarchy of tags that you can click on. Each tag is one of our categories.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0068.02-bear-sidebar-760x342@2x.png&quot; width=&quot;380&quot; height=&quot;171&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;It&amp;#39;ll include a PDF manual which details every ID, explains the sorts of things that should (and shouldn&amp;#39;t) go there, and points out any obvious exceptions.&lt;/p&gt;
&lt;p&gt;Eventually -- not in the first release -- we&amp;#39;re going to have a short series of videos which explain the structure and our thinking in more detail.&lt;/p&gt;
&lt;h2 id=&quot;money&quot;&gt;Money&lt;/h2&gt;
&lt;p&gt;Its full list price will be US$20. It&amp;#39;ll go on sale for US$10 as it won&amp;#39;t be 100% finished. Obviously if you get it early you&amp;#39;ll get all updates.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re reading this, &lt;del&gt;you can get on pre-sale now for just US$8.&lt;/del&gt; it&amp;#39;s launched: see &lt;a href=&quot;https://johnnydecimal.com/14.11/&quot;&gt;14.11&lt;/a&gt; for the current deal.&lt;/p&gt;
&lt;h2 id=&quot;sneak-peek&quot;&gt;Sneak peek&lt;/h2&gt;
&lt;p&gt;This looks really great in your file system. Honestly, I love it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of my Finder, showing the folders as described in this article.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0068.01-standard-life-admin-1581x1068.png&quot; width=&quot;790&quot; height=&quot;534&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;feedback&quot;&gt;Feedback?&lt;/h2&gt;
&lt;p&gt;I&amp;#39;d love to know what you think of this. Is this the thing you want more of? If not this, what?&lt;/p&gt;
&lt;p&gt;We sit here and try to work out what people want. It&amp;#39;s much simpler if you just tell us! :-)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;Drop me an email&lt;/a&gt; and let me know.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-dashes&quot;&gt;
&lt;p&gt;And I recommend the dash as a separator, vs. &lt;code&gt;yyyymmdd&lt;/code&gt;, as it really improves readability. I also use the full &lt;code&gt;yyyy&lt;/code&gt;, otherwise &lt;code&gt;24-01-23&lt;/code&gt; is confusing. The extra characters are worth it in both instances. &lt;a href=&quot;#user-content-fnref-dashes&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0067 File system folders from text, via Excel</title><link>https://johnnydecimal.com/22.00.0067/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0067/</guid><description>Video: a simple way to create file system folders from text. In this case we create a Johnny.Decimal structure from MindNode.</description><pubDate>Thu, 11 Jul 2024 01:18:54 GMT</pubDate><content:encoded>&lt;h1 id=&quot;file-system-folders-from-text-via-excel&quot;&gt;File system folders from text, via Excel&lt;/h1&gt;
&lt;p&gt;On the forum, &lt;a href=&quot;https://forum.johnnydecimal.com/t/creating-a-folder-structure-from-mindnode/1624&quot;&gt;Kelso asks&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;How do I change my MindNode into a folder structure onto my computer?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Great question, best answered with a video.&lt;/p&gt;
  
&lt;h2 id=&quot;excel-sheet&quot;&gt;Excel sheet&lt;/h2&gt;
&lt;p&gt;You can &lt;a href=&quot;https://johnnydecimal.com/22_blog/22.00.0067 (90027) File system from MindNode via Excel.xlsx&quot;&gt;download the sheet from the video here&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;formulas&quot;&gt;Formulas&lt;/h3&gt;
&lt;h3 id=&quot;fill-the-column&quot;&gt;Fill the column&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;=IF(C5&amp;lt;&amp;gt;&amp;quot;&amp;quot;, C5, D4)&lt;/code&gt;&lt;/p&gt;
&lt;h3 id=&quot;create-a-file-path-escaping-spaces-with-a-backslash&quot;&gt;Create a file path, &amp;#39;escaping&amp;#39; spaces with a backslash&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;=IF(G7=&amp;quot;&amp;quot;, &amp;quot;&amp;quot;, SUBSTITUTE(CONCAT(D7, &amp;quot;/&amp;quot;, F7, &amp;quot;/&amp;quot;, G7), &amp;quot; &amp;quot;, &amp;quot;\ &amp;quot;))&lt;/code&gt;&lt;/p&gt;
&lt;h3 id=&quot;create-the-mkdir--p-command&quot;&gt;Create the mkdir -p command&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;=IF(H7=&amp;quot;&amp;quot;, &amp;quot;&amp;quot;, CONCAT(&amp;quot;mkdir -p &amp;quot;, H7))&lt;/code&gt;&lt;/p&gt;
&lt;h3 id=&quot;create-the-echo-command-to-create-text-files&quot;&gt;Create the echo command to create text files&lt;/h3&gt;
&lt;p&gt;&lt;code&gt;=IF(G7=&amp;quot;&amp;quot;, &amp;quot;&amp;quot;, CONCAT(&amp;quot;echo # &amp;quot;, G7, &amp;quot; &amp;gt; &amp;quot;, SUBSTITUTE(G7, &amp;quot; &amp;quot;, &amp;quot;\ &amp;quot;), &amp;quot;.txt&amp;quot;))&lt;/code&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0066 The classes of to-do, pt. 2</title><link>https://johnnydecimal.com/22.00.0066/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0066/</guid><description>Follow-up on post 22.00.0034.</description><pubDate>Mon, 01 Jul 2024 23:15:21 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-classes-of-to-do-pt-2&quot;&gt;The classes of to-do, pt. 2&lt;/h1&gt;
&lt;p&gt;This was written as a &lt;a href=&quot;https://forum.johnnydecimal.com/t/re-discovering-a-system/1603/5&quot;&gt;reply to a forum post&lt;/a&gt; but it got long and felt useful enough to cross-post here.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Maybe you can invent a complementary system for tasks as well?&lt;br&gt; -- &lt;a href=&quot;https://forum.johnnydecimal.com/t/re-discovering-a-system/1603/4&quot;&gt;osau&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I spent most of yesterday thinking about this. I&amp;#39;ll type out some thoughts here as it might help them crystallise in my mind.&lt;/p&gt;
&lt;p&gt;We start with &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/22-blog/22.00.0034-the-classes-of-to-do/&quot;&gt;the classes of to-do [22.00.0034]&lt;/a&gt;. Read that if you haven&amp;#39;t.&lt;/p&gt;
&lt;p&gt;In my mind I&amp;#39;m still using this &lt;code&gt;P1&lt;/code&gt;–&lt;code&gt;P4&lt;/code&gt; idea. How do we feel about that, generally? It makes an internal monologue really quick! But if you didn&amp;#39;t once run helpdesks for a living it might not be so obvious.&lt;/p&gt;
&lt;h1 id=&quot;p4-not-really-a-thing-to-do-yet&quot;&gt;P4: not really a thing to-do (yet)&lt;/h1&gt;
&lt;p&gt;So P4s are easy. They&amp;#39;re not actually things &amp;#39;to-do&amp;#39;, or if they are, you haven&amp;#39;t decided that you really want to do them yet. You might, in the future. For now they&amp;#39;re ideas, thoughts, lists, hopes, dreams, notes, something you just don&amp;#39;t want to lose.&lt;/p&gt;
&lt;p&gt;@LucyDecimal system was ~90% P4s. She loves a list. Here&amp;#39;s a selection of mine from my re-grouping exercise yesterday:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Re-think your iOS device home screens. Align with macOS desktop widgets?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tidy up your Airtable bases. Rename them, consolidate icon colours, and archive some old stuff.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Gift idea: buy [someone] [thing].&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make a trout &amp;amp; bean salad in summer.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The key with P4s is that there is &lt;strong&gt;absolutely no consequence whatsoever&lt;/strong&gt; if they don&amp;#39;t get done. If they all burned in a fire you&amp;#39;d be sad, but nothing bad would happen.&lt;/p&gt;
&lt;p&gt;I am therefore convinced that P4s &lt;strong&gt;MUST NOT&lt;/strong&gt; live in your task system. They&amp;#39;re a bullet point in a note.&lt;/p&gt;
&lt;h1 id=&quot;p1s-critically-time-sensitive&quot;&gt;P1s: critically time sensitive&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ll jump straight to P1s because they&amp;#39;re also easy. These are things that &lt;strong&gt;absolutely must happen&lt;/strong&gt; and usually &lt;strong&gt;before a certain time&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;That time is usually quite soon – &lt;em&gt;pick Jemima up from saxophone practice&lt;/em&gt; – or regularly – &lt;em&gt;pay the rent&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I only have one P1 and it is to check the account we use to pay our rent and bills, which is not our primary account, to make sure that there&amp;#39;s enough in it. We keep it at or near that amount as it doesn&amp;#39;t earn interest etc. So each month, on the last day of the month, &lt;a href=&quot;https://dueapp.com&quot;&gt;Due&lt;/a&gt; goes off and tells me to do this.&lt;/p&gt;
&lt;p&gt;So I think P1s &lt;strong&gt;MUST&lt;/strong&gt; live in their own little world. You have so few. If you have five that&amp;#39;s probably too many. Unless you have six kids and they all love learning brass instruments and none of them can catch the bus. But you get the idea. Use sparingly.&lt;/p&gt;
&lt;p&gt;Because when I see Due, I never ignore Due.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-due&quot; id=&quot;user-content-fnref-due&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Past me has sent me a message: this one is really important. Drop everything else.&lt;/p&gt;
&lt;h1 id=&quot;p2s--p3s-the-difficult-part-in-the-middle&quot;&gt;P2s &amp;amp; P3s: the difficult part in the middle&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s where it gets harder.&lt;/p&gt;
&lt;p&gt;First, one class of to-do that we can safely handle.&lt;/p&gt;
&lt;h2 id=&quot;project-tasks&quot;&gt;Project tasks&lt;/h2&gt;
&lt;p&gt;A project task is a task in service of getting a project done. Step 89 of 121 things. It&amp;#39;s not some isolated thing like &lt;em&gt;pick Jemima up&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;As a broad rule, I think these tasks can be lumped together. When you sit down to get &lt;code&gt;Project Shoehorn&lt;/code&gt; done, you look at your list of tasks and you work through it. Perhaps some of those tasks need to be pushed out to the future and so we need to handle them differently, but a lot of them do not.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t clutter your P2/P3 task system with project tasks. They can probably be bullet points in a note.&lt;/p&gt;
&lt;h2 id=&quot;criteria-for-p2p3&quot;&gt;Criteria for P2/P3&lt;/h2&gt;
&lt;p&gt;So the criteria for something to be a P2/P3 is that if you do not do it, &lt;strong&gt;there is a consequence&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;That consequence might not be grave. It might just be that you feel worse about yourself. But, in your estimation, it exists.&lt;/p&gt;
&lt;p&gt;So the question then is, what gets to interrupt you? I say only a P2 is allowed to do that: to put a notification somewhere in your life.&lt;/p&gt;
&lt;p&gt;Because it is these notifications that are the curse. As soon as they exceed some very low threshold, they cease to be useful. Worse: they&amp;#39;re &lt;strong&gt;harmful&lt;/strong&gt; because there is something you really should do in there, but it&amp;#39;s drowned in a sea of other stuff.&lt;/p&gt;
&lt;h3 id=&quot;my-stuff-from-yesterday&quot;&gt;My stuff from yesterday&lt;/h3&gt;
&lt;p&gt;Yesterday -- I wish I&amp;#39;d taken a screenshot, damn -- I checked off 6 or 7 items that had been sitting as past-due to-dos in my system.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-checked&quot; id=&quot;user-content-fnref-checked&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; &lt;strong&gt;Not one of them&lt;/strong&gt; had a genuine reason to be there.&lt;/p&gt;
&lt;p&gt;Some of them were things that I should periodically do: update the forum software. If I leave that too long, it becomes harder or breaks. There is a consequence to my forum not working.&lt;/p&gt;
&lt;p&gt;Some of them were things that I wanted to remember while I was out on a walk, and I just asked Siri to &lt;em&gt;remind me this afternoon to…&lt;/em&gt; and that action was still there days later.&lt;/p&gt;
&lt;h3 id=&quot;back-to-notifications&quot;&gt;Back to notifications&lt;/h3&gt;
&lt;p&gt;Let&amp;#39;s pretend notifications didn&amp;#39;t exist. What would we do?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;We&amp;#39;d write down the things we had to-do.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&amp;#39;d try to group these to-dos in to sensible buckets of similar stuff.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Maybe on different pages of a notebook?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We&amp;#39;d remember, on some sort of cycle, to look at each of the pages.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;We might either:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Just do all the stuff from one page on one day, or&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Pull important things from different pages to a new page, and focus on that stuff.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now substitute:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&amp;#39;sensible buckets of similar stuff&amp;#39; for &amp;#39;your Johnny.Decimal categories&amp;#39;, and&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;#39;pages of a notebook&amp;#39; for &amp;#39;folders in your to-do system&amp;#39;, and&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&amp;#39;remember, on some sort of cycle&amp;#39; for &amp;#39;scheduling time in your calendar&amp;#39;,&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;and we have the beginnings of a system.&lt;/p&gt;
&lt;h3 id=&quot;should-anything-get-to-interrupt-you&quot;&gt;Should &lt;em&gt;anything&lt;/em&gt; get to interrupt you?&lt;/h3&gt;
&lt;p&gt;What I&amp;#39;m struggling with here is, is there actually a difference between P2 &amp;amp; P3? My first thought was that P2s should be allowed to interrupt you. But the more I think on it, the more I doubt this approach.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s a P2 that I have: &lt;em&gt;check my credit card before the 15th of the month and, if there&amp;#39;s anything to pay, pay it&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I consider that a P2 because if I don&amp;#39;t pay, that affects my credit rating, which is a long-term thing that I can&amp;#39;t easily undo. Compared to a P3 which is to &lt;em&gt;check that some company processed a refund as promised and I got the $50 back&lt;/em&gt;. If I don&amp;#39;t do that and they forget, I stand to lose $50. But I consider that a lower consequence than a bad credit rating.&lt;/p&gt;
&lt;p&gt;But back to interruptions. If I&amp;#39;m organised, and things are in neat buckets, &lt;strong&gt;and I trust myself to look at them regularly&lt;/strong&gt;, why would any of them need to interrupt me?&lt;/p&gt;
&lt;h2 id=&quot;do-categories-of-stuff-at-the-same-time&quot;&gt;Do categories of stuff at the same time&lt;/h2&gt;
&lt;p&gt;I need to pay my credit card &lt;em&gt;at some point&lt;/em&gt; before the 15th. Not &lt;em&gt;on the 15th&lt;/em&gt;. So do it every month on the 10th. And while I&amp;#39;m there, check all the other financial related stuff.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s all boring, you might as well just get in a zone and do it all at once.&lt;/p&gt;
&lt;p&gt;Now, the problem comes when you decided you&amp;#39;d do this on Friday at 14:00, like I did last week, then this time rolls round and you were doing something else, and you didn&amp;#39;t actually do it.&lt;/p&gt;
&lt;p&gt;But I wonder: could I make life simpler, calmer, more reliable, if instead of considering that as 5 things &amp;#39;to-do&amp;#39; -- &lt;em&gt;credit card, rent, etc.&lt;/em&gt; -- could it just be 1 thing, which is &lt;em&gt;monthly financial processing&lt;/em&gt;.&lt;/p&gt;
&lt;h2 id=&quot;dont-just-do-things-randomly&quot;&gt;Don&amp;#39;t just do things randomly&lt;/h2&gt;
&lt;p&gt;Because here&amp;#39;s another consideration. (Sorry, I know this is long. I don&amp;#39;t mind if you&amp;#39;ve given up.)&lt;/p&gt;
&lt;p&gt;I had a task: &lt;em&gt;print your iCloud account recovery kit&lt;/em&gt;. I wrote that on a piece of paper on my desk.&lt;/p&gt;
&lt;p&gt;Yesterday, I found that piece of paper. But, damned if I wasn&amp;#39;t sure I&amp;#39;d done that thing. But did I? I didn&amp;#39;t crumple the paper up, it&amp;#39;s still here in the list. Ugh. So I get out the locked box and check and, yeah, I did it. What a waste of mental energy that was.&lt;/p&gt;
&lt;p&gt;So &lt;strong&gt;don&amp;#39;t just do things as they occur to you&lt;/strong&gt;. No! Write them down, or check whether you already have them written down.&lt;/p&gt;
&lt;p&gt;Put them in their categories with their friends. You know they can wait: there was no urgency whatsoever to me printing that thing.&lt;/p&gt;
&lt;p&gt;And get to them in the cycle.&lt;/p&gt;
&lt;h2 id=&quot;so-are-p2s-just-higher-in-the-same-list-than-p3s&quot;&gt;So are P2s just higher in the (same) list than P3s?&lt;/h2&gt;
&lt;p&gt;I wonder then if P2/P3 isn&amp;#39;t just one list -- as in, one list per category -- that needs to be looked at on a cycle.&lt;/p&gt;
&lt;p&gt;And if the P2s aren&amp;#39;t just higher on that list than the P3s. You do them first, because they&amp;#39;re more important.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Check the rent account&lt;/em&gt;. Then if you&amp;#39;ve still got time/energy, you get to the lower stuff. &lt;em&gt;Did you get that $50 refund?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;When I was thinking about this yesterday, I couldn&amp;#39;t think of a situation where a P2 should be allowed to interrupt you.&lt;/p&gt;
&lt;h1 id=&quot;work-in-progress&quot;&gt;Work in progress&lt;/h1&gt;
&lt;p&gt;There&amp;#39;s more to think about here, but I&amp;#39;d appreciate any thoughts.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-due&quot;&gt;
&lt;p&gt;And the reason I use Due for this is because it makes it impossible to ignore. Its standout feature is that it reminds you over and over to do the thing until you dismiss it; unlike most task management apps which remind you once. It&amp;#39;s a great app that I&amp;#39;ve used for over a decade. &lt;a href=&quot;#user-content-fnref-due&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-checked&quot;&gt;
&lt;p&gt;And when I say &amp;#39;checked off&amp;#39;, I don&amp;#39;t mean &amp;#39;done&amp;#39;. I just checked them off! &lt;a href=&quot;#user-content-fnref-checked&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0065 Ask yourself: why am I saving this thing?</title><link>https://johnnydecimal.com/22.00.0065/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0065/</guid><description>A mental trick to help you if you can&apos;t decide where a thing should go.</description><pubDate>Sat, 15 Jun 2024 03:39:39 GMT</pubDate><content:encoded>&lt;h1 id=&quot;ask-yourself-why-am-i-saving-this-thing&quot;&gt;Ask yourself: why am I saving this thing?&lt;/h1&gt;
&lt;p&gt;In &lt;a href=&quot;https://johnnydecimal.com/22.00.0064/&quot;&gt;re-doing the D85 structure&lt;/a&gt; I realised that the hardest part is, perhaps unsurprisingly, in the creation of your areas and categories.&lt;/p&gt;
&lt;p&gt;This is the bit where you form the shape of your system: you decide how to categorise your life or project or whatever.&lt;/p&gt;
&lt;p&gt;So here&amp;#39;s an example. On a &lt;a href=&quot;https://www.relay.fm/cortex/154&quot;&gt;recent episode of Cortex&lt;/a&gt;, CGP Grey talks about his very granular use of to-dos. (The bit is near the end.)&lt;/p&gt;
&lt;p&gt;I found this interesting enough to want to save it. So: &lt;strong&gt;where?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This sort of &lt;em&gt;nebulous piece of data&lt;/em&gt; is one of the hardest. I realised the key is to ask yourself the question:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why am I saving it? What is its purpose?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In this case, the answer is that this might influence the Johnny.Decimal system in some way in the future. It might change my thinking; change how I recommend people do things.&lt;/p&gt;
&lt;p&gt;This led me to the realisation that &lt;code&gt;D85&lt;/code&gt; needs an area for this: for the &lt;em&gt;thinking about Johnny.Decimal as an idea&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s a long area title, and thanks to Lucy I now appreciate the value of an interesting title. So I ended up with:&lt;/p&gt;
&lt;p&gt;&lt;code style=&quot;font-size: 3rem;&quot;&gt;30-39 The institute 🧬&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(Yes, I&amp;#39;ve started to use emoji in my titles. Something else I got from Lucy &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;building her system&lt;/a&gt;. It&amp;#39;s surprisingly useful in anchoring concepts in your brain.)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;As soon as this idea came to me, a bunch of other stuff dropped in to place.&lt;/p&gt;
&lt;p&gt;Where do I store my sample Johnny.Decimal systems, the stuff I use as examples and screenshots? In the institute.&lt;/p&gt;
&lt;p&gt;Items related to solving the edge-cases like &lt;a href=&quot;https://forum.johnnydecimal.com/t/the-academic-problem-mega-thread-to-come-up-with-a-solution/1492&quot;&gt;the academic problem&lt;/a&gt; or &lt;a href=&quot;https://johnnydecimal.com/22.00.0016/&quot;&gt;the freelancer problem&lt;/a&gt;? The institute.&lt;/p&gt;
&lt;p&gt;Academic papers that I find? Institute. It&amp;#39;s perfect.&lt;/p&gt;
&lt;p&gt;And I&amp;#39;m not sure if it would have occurred to me if I hadn&amp;#39;t asked: &lt;strong&gt;why am I saving it? what is its purpose?&lt;/strong&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0064 D85 system and the &apos;creative&apos; pattern: progress report</title><link>https://johnnydecimal.com/22.00.0064/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0064/</guid><description>A progress report on the new &apos;D85 Johnny.Decimal business&apos; system, and the &apos;creative&apos; pattern, which we&apos;re using.</description><pubDate>Tue, 11 Jun 2024 01:45:58 GMT</pubDate><content:encoded>&lt;h1 id=&quot;d85-system-and-the-creative-pattern-progress-report&quot;&gt;D85 system and the &amp;#39;creative&amp;#39; pattern: progress report&lt;/h1&gt;
&lt;p&gt;We finally found the time to get stuck in to the re-organising of system &lt;code&gt;D85&lt;/code&gt; that we use to manage the Johnny.Decimal business.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-d01&quot; id=&quot;user-content-fnref-d01&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;As I&amp;#39;ve &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;documented&lt;/a&gt; &lt;a href=&quot;https://johnnydecimal.com/22.00.0043/&quot;&gt;previously&lt;/a&gt;, our own system grew as a result of me quitting my job last year. When you&amp;#39;re figuring out what to do, just &lt;em&gt;getting the job done&lt;/em&gt; and trying to earn an income is more important than being perfectly organised.&lt;/p&gt;
&lt;p&gt;We were organised &lt;em&gt;enough&lt;/em&gt;. It&amp;#39;s not like it was chaos over here.&lt;/p&gt;
&lt;p&gt;But it did get to the point where we felt it was getting in the way. I didn&amp;#39;t have a good place to keep ideas. Important ideas: stuff that affects what we do next.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of our old folder structure, which is an _okay_ JD structure. But not great.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0064.01-old-d85-988x331@2x.png&quot; width=&quot;494&quot; height=&quot;165&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;The old system – not *terrible*&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;So, we&amp;#39;re starting again.&lt;/p&gt;
&lt;h1 id=&quot;step-1-follow-my-own-advice&quot;&gt;Step 1: follow my own advice&lt;/h1&gt;
&lt;p&gt;Easy enough: follow the &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;workbook&lt;/a&gt;. First up, &lt;code&gt;10-19 Define your system&amp;#39;s scope&lt;/code&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo of our scope statement. See following text for description.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0064.02-D85-scope-statement-960x1280.jpeg&quot; width=&quot;960&quot; height=&quot;1280&quot;&gt;  &lt;/picture&gt; 
&lt;h3 id=&quot;in&quot;&gt;In&lt;/h3&gt;
&lt;p&gt;So &lt;strong&gt;in scope&lt;/strong&gt; there we have:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;All business related activity.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Coruscade finances &amp;amp; admin. This is the legal entity that we trade through, and is currently &lt;code&gt;30-39&lt;/code&gt; in my personal system.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Previously, I used it for IT contracting. But as it&amp;#39;s now exclusively Johnny.Decimal, it makes sense to bring it over.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;Creation&lt;/em&gt; of content that might end up on the site.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;For example, videos to accompany blog posts.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;out&quot;&gt;Out&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Out of scope&lt;/strong&gt; is anything that is only, exclusively, on the web site.&lt;/p&gt;
&lt;p&gt;This blog post, for example. I type it directly in to my code editor. It exists in &lt;code&gt;D01&lt;/code&gt; not &lt;code&gt;D85&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;goals&quot;&gt;Goals&lt;/h2&gt;
&lt;p&gt;We realised while recording &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;the workshop&lt;/a&gt; that as well as defining what&amp;#39;s in/out of scope, it&amp;#39;s really good to write down the &lt;strong&gt;goals&lt;/strong&gt; of your system.&lt;/p&gt;
&lt;p&gt;What is it you want it to do? How do you want to work? What do you want it to achieve?&lt;/p&gt;
&lt;p&gt;These can be intangible. They&amp;#39;re your hopes and dreams for this new thing that you&amp;#39;re building.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s ours.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;100% shared system.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;That is, between me and Lucy. There can be nothing that only one of us has access to. This will influence tool choice, later.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Easy inbox/transfer (of, say, URLs).&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;So when I want to send Lucy a URL I don&amp;#39;t default to iMessage. There&amp;#39;s a place that I can drop it that she can pick it up.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Logical like the Life Admin standard area.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;We really like the design of the soon-to-be-made-a-standard &lt;code&gt;Life Admin&lt;/code&gt; area. See: diagrams on home page, Lucy&amp;#39;s new system in the workshop.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Full implementation of the standard zeros.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;See &lt;a href=&quot;https://johnnydecimal.com/12.03/&quot;&gt;&lt;code&gt;12.03&lt;/code&gt;&lt;/a&gt; -- we explored this extensively while building Lucy&amp;#39;s new system, and came up with some great new ideas.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;An index that cross-links all the things.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;So things are where they should be, rather than everything being bunched up near 43.11.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;43.11 is the ID for the workshop. We found overselves over-loading it with stuff, vs. putting that stuff in its proper home, and using our index to link the two.&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DaVinci is special: when you&amp;#39;re making a video, assets need to be in a central assets folder, i.e. you&amp;#39;re not ...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;wait a minute. I get what Lucy wants. But let&amp;#39;s check that this really is the right approach.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;DaVinci is the video editing software we use. It needs access to your files so that you can use them in videos. It has its own concept of a &amp;#39;media library&amp;#39; that we need to be conscious of.&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Uses the new, to-be-designed &amp;#39;creative template&amp;#39;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lucy wants a &amp;#39;logical library of (creative) outputs&amp;#39;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Related to creative template.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start from scratch: brand-new, all clean.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;This should be as perfect and standard an implementation as it&amp;#39;s possible to be.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;If I wouldn&amp;#39;t recommend it on the site, we&amp;#39;re not doing it.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;20-29-discovery&quot;&gt;20-29 Discovery&lt;/h1&gt;
&lt;p&gt;Someone recently reviewed the workbook:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Overall I find it hard to believe any reader will actually write on sticky notes for a week while building the system. ⭐️⭐️&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Well &lt;em&gt;I&lt;/em&gt; find it hard to believe that someone thinks you can organise your whole life &lt;em&gt;without&lt;/em&gt; writing stuff down for a week. What the hell else would you do?! ¯\_(ツ)_/¯&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of about 100 Post-it notes stuck to my wall.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0064.03-D85-discovery-1280x960.jpeg&quot; width=&quot;1280&quot; height=&quot;960&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Also who &lt;em&gt;doesn&amp;#39;t&lt;/em&gt; want to put coloured notes on the wall? When I had a job if they&amp;#39;d said &lt;em&gt;hey we&amp;#39;ll pay you to just stick bright paper on the wall&lt;/em&gt; I&amp;#39;d have jumped at it.&lt;/p&gt;
&lt;p&gt;Anyway. Discovery&amp;#39;s fun, don&amp;#39;t skimp on discovery.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Write. Everything. Down.&lt;/strong&gt; Even you, Travis.&lt;/p&gt;
&lt;h1 id=&quot;30-39-build-your-areas--categories&quot;&gt;30-39 Build your areas &amp;amp; categories&lt;/h1&gt;
&lt;p&gt;So that gets us to yesterday. Time to start building the structure of this thing.&lt;/p&gt;
&lt;p&gt;We started by putting all the post-its in a mind map so we could shuffle them round more easily.&lt;/p&gt;
&lt;p&gt;Then me and Lucy each put our headphones on and had a go at building it independently.&lt;/p&gt;
&lt;p style=&quot;font-size: 6rem;&quot;&gt;🤯&lt;/p&gt;
&lt;p&gt;I had &lt;strong&gt;no idea&lt;/strong&gt; how hard this was going to be.&lt;/p&gt;
&lt;h2 id=&quot;ive-never-done-this&quot;&gt;I&amp;#39;ve never done this&lt;/h2&gt;
&lt;p&gt;A weird confession, but hey. I&amp;#39;ll never lie to you.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve built easily a dozen systems over the years. But they&amp;#39;ve all grown organically: I started a job, I just got going, I fixed it up as I went.&lt;/p&gt;
&lt;p&gt;When we recorded the workshop, I told Lucy what to do, but she did the work.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This is the first time that I&amp;#39;ve taken ~100 items and tried to group them like this.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So, if you do yours and you find it difficult, that&amp;#39;s okay. And this is why we say to take a week: give it a go, have a rest. Come back and see what you did. Try it another way. Go for a walk, do it again.&lt;/p&gt;
&lt;p&gt;Like I always say, this thing will be with you for a while. A week is a tiny fraction of its lifespan.&lt;/p&gt;
&lt;h1 id=&quot;the-creative-agency-problem&quot;&gt;The &amp;#39;creative agency&amp;#39; problem&lt;/h1&gt;
&lt;p&gt;We knew that we needed to use the not-yet-documented &amp;#39;creative&amp;#39; pattern.&lt;/p&gt;
&lt;p&gt;This is for the sort of creative -- individual, team, agency -- who has &lt;strong&gt;inputs&lt;/strong&gt; like artwork, logos, colour palettes -- and then does some &lt;strong&gt;work&lt;/strong&gt;, and as a result ends up with &lt;strong&gt;outputs&lt;/strong&gt; like videos and social media posts.&lt;/p&gt;
&lt;p&gt;So before working on the rest of our system -- the business admin side of things -- we thought we&amp;#39;d nut this one out, because that&amp;#39;ll clear out a bunch of stuff and we&amp;#39;ll know what we&amp;#39;re left with.&lt;/p&gt;
&lt;p&gt;We started that yesterday with a whiteboard-in-the-garden session. This entry is running a little long, so I&amp;#39;ll save the details for the next post.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-d01&quot;&gt;
&lt;p&gt;There&amp;#39;s also &lt;code&gt;D01 johnnydecimal.com&lt;/code&gt; for any content that exclusively lives on the website, and we each have our own personal systems. &lt;a href=&quot;#user-content-fnref-d01&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0063 Why my software will be Apple-only</title><link>https://johnnydecimal.com/22.00.0063/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0063/</guid><description>I&apos;m going to write some software. I&apos;m sorry, but it&apos;ll be for Apple platforms only. This is why.</description><pubDate>Tue, 04 Jun 2024 08:00:07 GMT</pubDate><content:encoded>&lt;h1 id=&quot;why-my-software-will-be-apple-only&quot;&gt;Why my software will be Apple-only&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve started learning to write Swift, Apple&amp;#39;s modern programming language. I&amp;#39;m going to write an app to help you manage your Johnny.Decimal index.&lt;/p&gt;
&lt;p&gt;I think I have some pretty cool ideas. 😎&lt;/p&gt;
&lt;p&gt;When you do this sort of thing, you have to choose a language and a platform. This choice is all trade-off. There isn&amp;#39;t one best-choice-for-everyone.&lt;/p&gt;
&lt;h2 id=&quot;javascript&quot;&gt;JavaScript&lt;/h2&gt;
&lt;p&gt;If there was going to be a common language, it&amp;#39;d be JavaScript. And I already know it! So why am I not using it?&lt;/p&gt;
&lt;p&gt;With JavaScript, your desktop option is to build an Electron app. Slack is written in Electron. Discord is Electron. Electron is really popular.&lt;/p&gt;
&lt;p&gt;I hate most Electron apps. They&amp;#39;re janky, they just don&amp;#39;t feel right. They use gigs of your RAM. They take ages to load. You end up with &lt;a href=&quot;https://xkcd.com/2347/&quot;&gt;hundreds of dependencies&lt;/a&gt; and you&amp;#39;ve no idea what most of them do.&lt;/p&gt;
&lt;p&gt;I know this because I&amp;#39;ve built web stuff. It&amp;#39;s cool to hate on JavaScript but I love it! It&amp;#39;s the only language I know.&lt;/p&gt;
&lt;p&gt;But I won&amp;#39;t be using it to build a desktop-class app.&lt;/p&gt;
&lt;h2 id=&quot;native-integration&quot;&gt;Native integration&lt;/h2&gt;
&lt;p&gt;I want to build something that can fully integrate with the thing that I use. I want it to be able to talk to my file system, my reminders, my calendar.&lt;/p&gt;
&lt;p&gt;It has to &lt;em&gt;feel&lt;/em&gt; right. It has to fit in. When you launch it it should feel familiar.&lt;/p&gt;
&lt;h2 id=&quot;icloud&quot;&gt;iCloud&lt;/h2&gt;
&lt;p&gt;The other massive benefit to developing in Apple World is iCloud.&lt;/p&gt;
&lt;p&gt;You know what the very last thing I want to build is? Like the last thing on Earth?&lt;/p&gt;
&lt;p&gt;It&amp;#39;s a database of users. &lt;em&gt;Oh boy&lt;/em&gt; do I not want your data.&lt;/p&gt;
&lt;p&gt;As soon as I have it, I have to worry about encryption. There&amp;#39;s &lt;em&gt;no way&lt;/em&gt; I&amp;#39;m keeping your stuff if it&amp;#39;s not end-to-end encrypted. And that&amp;#39;s &lt;em&gt;really really difficult&lt;/em&gt; to do...&lt;/p&gt;
&lt;p&gt;...unless you use the data stores provided, for free, without any additional login, by iCloud. Yes &lt;em&gt;please&lt;/em&gt;.&lt;/p&gt;
&lt;h2 id=&quot;iphone-and-ipad-compatibility&quot;&gt;iPhone and iPad compatibility&lt;/h2&gt;
&lt;p&gt;It doesn&amp;#39;t come for free but it&amp;#39;s pretty cheap from an effort perspective. Swift mostly just handles it. That&amp;#39;s nice.&lt;/p&gt;
&lt;h2 id=&quot;ive-tried-microsoft-development&quot;&gt;I&amp;#39;ve tried Microsoft development&lt;/h2&gt;
&lt;p&gt;It was one of the first things I did when I quit my job last year: I spent a few months hacking about trying to develop a thing for MS Teams.&lt;/p&gt;
&lt;p&gt;I have never been unhappier in front of a computer. Never again.So, there it is. Sorry, FJ! You&amp;#39;re going to have to get a Mac, my friend.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0062 16,337 words</title><link>https://johnnydecimal.com/22.00.0062/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0062/</guid><description>WeblogPoMo2024 made me write 16,678 words.</description><pubDate>Fri, 31 May 2024 03:09:04 GMT</pubDate><content:encoded>&lt;h1 id=&quot;16337-words&quot;&gt;16,337 words&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;31/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I just did a word count on the posts from &lt;a href=&quot;https://johnnydecimal.com/22.00.0032/&quot;&gt;22.00.0032&lt;/a&gt; through to &lt;a href=&quot;https://johnnydecimal.com/22.00.0061/&quot;&gt;yesterday&lt;/a&gt;. Removing the header text that appears immediately above, it&amp;#39;s sixteen thousand, three hundred and thirty seven words.&lt;/p&gt;
&lt;p&gt;I certainly wouldn&amp;#39;t have written that much without the challenge. But I&amp;#39;m glad it&amp;#39;s over! I&amp;#39;ve had &lt;a href=&quot;https://dueapp.com&quot;&gt;Due&lt;/a&gt; nagging me from &lt;code&gt;07:00&lt;/code&gt; every day and some days I have wanted to throw it out of a window.&lt;/p&gt;
&lt;p&gt;That said, I&amp;#39;m going to try to keep some sort of cadence. Writing is good. Being &lt;em&gt;forced&lt;/em&gt; to write is good.&lt;/p&gt;
&lt;p&gt;16,456. 🫡&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0061 Regional Chinese</title><link>https://johnnydecimal.com/22.00.0061/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0061/</guid><description>When we travel to regional towns, our highlight is invariably their high-street Chinese restaurant.</description><pubDate>Thu, 30 May 2024 06:06:46 GMT</pubDate><content:encoded>&lt;h1 id=&quot;regional-chinese&quot;&gt;Regional Chinese&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;30/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Lucy and I spent the night in &lt;a href=&quot;https://www.visitnsw.com/destinations/country-nsw/goulburn-area/goulburn&quot;&gt;Goulburn&lt;/a&gt;, NSW.&lt;/p&gt;
&lt;p&gt;Short review: seems like a lovely town. Neat as a pin. A &amp;#39;high street&amp;#39; many towns would kill for. You should visit.&lt;/p&gt;
&lt;p&gt;But that&amp;#39;s not what I&amp;#39;m here to talk about. I&amp;#39;m here to talk about Chinese restaurants.&lt;/p&gt;
&lt;p&gt;These regional towns invariably have at least one. And they&amp;#39;ve become a highlight of our trip. We actively seek out the &amp;#39;regional Chinese&amp;#39;.&lt;/p&gt;
&lt;p&gt;Because they&amp;#39;re a blast from the past. The menus are identical: chow mein, prawns in translucent goop, special fried rice.&lt;/p&gt;
&lt;p&gt;The decor is invariably a shade of pink.&lt;/p&gt;
&lt;p&gt;The wine is ... well, &lt;em&gt;technically&lt;/em&gt; it&amp;#39;s wine.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of the outside of a Chinese restaurant from 1970 except I took it yesterday.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0061.01-regional-chinese-1008x465.jpeg&quot; width=&quot;1008&quot; height=&quot;465&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;The Lotus, Goulburn; we didn&amp;#39;t go to this one&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;There&amp;#39;s even an ABC show, &lt;a href=&quot;https://iview.abc.net.au/show/chopsticks-or-fork&quot;&gt;Chopsticks or Fork?&lt;/a&gt;, celebrating this great Australian institution.&lt;/p&gt;
&lt;p&gt;Perhaps our favourite to date is the Jade Garden, &lt;a href=&quot;https://tasmania.com/points-of-interest/smithton/&quot;&gt;Smithton&lt;/a&gt;, TAS. I mean have a look at it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of the Jade Garden&apos;s exterior. It&apos;s pink brushed concrete. It looks a bit like a jail.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0061.02-jade-garden-640x449.jpeg&quot; width=&quot;640&quot; height=&quot;449&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;We have this photograph printed and framed on the wall.&lt;/p&gt;
&lt;p&gt;We went there two nights in a row because there is literally nothing else to do in Smithton. Do not go to Smithton.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0060 Ellane learns the command line</title><link>https://johnnydecimal.com/22.00.0060/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0060/</guid><description>My friend Ellane and I are launching a mini-course, where I teach her how to use the command line.</description><pubDate>Wed, 29 May 2024 03:36:54 GMT</pubDate><content:encoded>&lt;h1 id=&quot;ellane-learns-the-command-line&quot;&gt;Ellane learns the command line&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;29/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Exciting news! Which is below. This is just a quick message to say that I&amp;#39;m just copy/pasting the launch announcement from Mastodon as I&amp;#39;m short on time. Message follows! –j.&lt;/p&gt;
&lt;h1 id=&quot;-launching-a-thing-today&quot;&gt;🚀 LAUNCHING A THING TODAY 🚀&lt;/h1&gt;
&lt;p&gt;My friend Ellane and I are pleased to launch a new mini-course:&lt;/p&gt;
&lt;h2 id=&quot;-ellane-learns-the-command-line&quot;&gt;🧑‍💻 Ellane learns the command line 🧑‍💻&lt;/h2&gt;
&lt;p&gt;She mentioned this to me a while ago, so we&amp;#39;re going to do it live on Mastodon. &lt;a href=&quot;https://hachyderm.io/@johnnydecimal/112522237603931013&quot;&gt;Here, in this thread&lt;/a&gt;. We&amp;#39;re thinking of it like a correspondence course.&lt;/p&gt;
&lt;p&gt;You can&amp;#39;t fit that much in a post, and formatting here isn&amp;#39;t great, so the full posts will be on our mini blog at:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://commandline.johnnydecimal.com&quot;&gt;&lt;code&gt;https://commandline.johnnydecimal.com&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We&amp;#39;d love you to follow along.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#LearnCLI&lt;/code&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0059 RSS feed fixed</title><link>https://johnnydecimal.com/22.00.0059/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0059/</guid><description>I knew if I waited long enough Astro would do the heavy lifting for me.</description><pubDate>Tue, 28 May 2024 00:11:19 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rss-feed-fixed&quot;&gt;RSS feed fixed&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;28/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I am over the moon to announce that this site&amp;#39;s RSS feed is now a first-class, fully-featured, all-singing-all-dancing full-text rich-image over-hyphenated feed!&lt;/p&gt;
&lt;p&gt;This hasn&amp;#39;t been the case, as those of you who follow the feed will know. I use &lt;a href=&quot;https://astro.build&quot;&gt;Astro&lt;/a&gt; to create this site, and where I need to do something a little special -- my images, little blocks of JD content, and so on -- I write Astro &amp;#39;components&amp;#39;.&lt;/p&gt;
&lt;p&gt;They&amp;#39;re little bits of JavaScript that get built to the final HTML that you see. This is one of the reasons I love Astro&lt;sup&gt;&lt;a href=&quot;#user-content-fn-staticsite&quot; id=&quot;user-content-fnref-staticsite&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; -- I can use JavaScript to put it together, but you only get served static HTML.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s why this page only uses about 500KB of data.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-firstload&quot; id=&quot;user-content-fnref-firstload&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; Compare that with Australia&amp;#39;s &lt;a href=&quot;https://bigw.com.au&quot;&gt;Big W&lt;/a&gt; which loads a whopping &lt;em&gt;9MB:&lt;/em&gt; 18x the size!&lt;/p&gt;
&lt;p&gt;&lt;em&gt;But,&lt;/em&gt; these Astro components didn&amp;#39;t render nicely to the RSS feed. I tried to catch most of the jankiness and replace it with a little apology and a link to the reason why, but a) that&amp;#39;s still janky, and b) some slipped through.&lt;/p&gt;
&lt;p&gt;I hated this. But fixing it myself was implausibly difficult and time consuming. And I knew that if I waited long enough the good folks at Astro would fix it for me (and the thousands others all clamouring for the same solution).&lt;/p&gt;
&lt;h2 id=&quot;astro-49s-container-api&quot;&gt;Astro 4.9&amp;#39;s Container API&lt;/h2&gt;
&lt;p&gt;With &lt;a href=&quot;https://astro.build/blog/astro-490/&quot;&gt;Astro 4.9&lt;/a&gt;, there&amp;#39;s now an experimental feature that fixes the issue. Thanks to &lt;a href=&quot;https://github.com/delucis/astro-blog-full-text-rss&quot;&gt;delucis&lt;/a&gt; on GitHub, after some tweaking of &lt;a href=&quot;https://github.com/delucis/astro-blog-full-text-rss/blob/latest/src/pages/rss.xml.ts&quot;&gt;their file&lt;/a&gt; to suit my site, the feed looks much better.&lt;/p&gt;
&lt;p&gt;Images load inline. Footnotes render. And my own components at least &lt;em&gt;display,&lt;/em&gt; even if they don&amp;#39;t look perfect. It&amp;#39;s good enough for now.&lt;/p&gt;
&lt;h3 id=&quot;this-is-all-free&quot;&gt;This is all free&lt;/h3&gt;
&lt;p&gt;It&amp;#39;s worth noting that Astro is entirely free. For this, I am very grateful.&lt;/p&gt;
&lt;h2 id=&quot;it-shouldnt-break-your-feed&quot;&gt;It &lt;em&gt;shouldn&amp;#39;t&lt;/em&gt; break your feed&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve tested it, all GUIDs and slugs remain the same, and for me, it&amp;#39;s seamless. You shouldn&amp;#39;t see a bunch of old stuff suddenly re-appear, or become marked as unread, or whatever.&lt;/p&gt;
&lt;p&gt;But, y&amp;#39;know, something will inevitably break for someone. If that&amp;#39;s you, I&amp;#39;m sorry.&lt;/p&gt;
&lt;h2 id=&quot;prove-it-works&quot;&gt;Prove it works&lt;/h2&gt;
&lt;p&gt;If you insist.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of our three chickens, in a bush.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0059-ladies-in-a-bush-840x577.JPG&quot; width=&quot;840&quot; height=&quot;577&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;whats-rss&quot;&gt;What&amp;#39;s RSS?&lt;/h1&gt;
&lt;p&gt;If you don&amp;#39;t know what RSS is, &lt;a href=&quot;https://aboutfeeds.com&quot;&gt;this page&lt;/a&gt; is a great introduction.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-staticsite&quot;&gt;
&lt;p&gt;Which is but one of a handful of &amp;#39;&lt;a href=&quot;https://en.wikipedia.org/wiki/Static_site_generator&quot;&gt;static site generators&lt;/a&gt;&amp;#39; that have come about in the last few years. &lt;a href=&quot;https://www.11ty.dev&quot;&gt;11ty&lt;/a&gt; is another that I have my eye on. &lt;a href=&quot;#user-content-fnref-staticsite&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-firstload&quot;&gt;
&lt;p&gt;On first load. Caching brings subsequent page loads down to about 50KB, depending on the page. That&amp;#39;s very tiny indeed. :-) &lt;a href=&quot;#user-content-fnref-firstload&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0058 Get up early!</title><link>https://johnnydecimal.com/22.00.0058/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0058/</guid><description>And by early I mean 05:00. It&apos;ll change your life.</description><pubDate>Mon, 27 May 2024 06:08:44 GMT</pubDate><content:encoded>&lt;h1 id=&quot;get-up-early&quot;&gt;Get up early!&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;27/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I don&amp;#39;t do much in the way of &amp;#39;life advice&amp;#39;, but here&amp;#39;s one: get up early!&lt;/p&gt;
&lt;p&gt;As in, &lt;code&gt;05:00&lt;/code&gt; early.&lt;/p&gt;
&lt;p&gt;Now, if you&amp;#39;d told 27-year-old Johnny to get up at &lt;code&gt;05:00&lt;/code&gt; he&amp;#39;d have kicked you in the shins. And rightly so! But now he&amp;#39;s 47 and a grown-up adult with a bunch of stuff to do.&lt;/p&gt;
&lt;p&gt;Getting up early is transformative. Lucy got me in to it -- it&amp;#39;s been a life-hack of hers for years. Because the thing is, by &lt;code&gt;09:00&lt;/code&gt;, you&amp;#39;ve got most of it done. And the rest of the world is just getting started and you&amp;#39;re feeling really good about yourself.&lt;/p&gt;
&lt;p&gt;Then by &lt;code&gt;12:00&lt;/code&gt; you&amp;#39;ve got all of it &lt;em&gt;and more&lt;/em&gt; done, and you&amp;#39;ve still got a whole day ahead of you.&lt;/p&gt;
&lt;h2 id=&quot;how-to-do-it&quot;&gt;How to do it&lt;/h2&gt;
&lt;p&gt;It starts the night before.&lt;/p&gt;
&lt;p&gt;I was a nightowl for many years and I always wondered how people could get up early. Turns out the trick is simple: you go to bed at &lt;code&gt;20:00&lt;/code&gt;. Consistently. You need to adjust your body clock.&lt;/p&gt;
&lt;p&gt;Then, in the morning, take it easy. It&amp;#39;s really early, remember?&lt;/p&gt;
&lt;p&gt;Brew a pot of tea and just read your stories for a good half an hour. Or put that tea in a Yeti mug and go for a walk round the block. Morning walks are amazing.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t try to start work at &lt;code&gt;05:00&lt;/code&gt;. Don&amp;#39;t do yoga. Nobody&amp;#39;s watching.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it. Aim to start work around &lt;code&gt;06:00&lt;/code&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-wfh&quot; id=&quot;user-content-fnref-wfh&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; And these morning hours are precious: don&amp;#39;t waste them. If you can knock out 3 hours of quality work &lt;em&gt;before most other people have started,&lt;/em&gt; you are going to win.&lt;/p&gt;
&lt;p&gt;Just don&amp;#39;t try to get your kids to do it. &lt;a href=&quot;https://theconversation.com/why-teen-brains-need-a-later-school-start-time-65308&quot;&gt;Let them sleep&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-wfh&quot;&gt;
&lt;p&gt;This assumes you&amp;#39;re working from home. At my last job the office opened at &lt;code&gt;07:00&lt;/code&gt; and I was often the first in, waving my arms around to turn the lights on. When everyone else strolls in &lt;em&gt;two hours later&lt;/em&gt; it&amp;#39;s quite surreal. &lt;a href=&quot;#user-content-fnref-wfh&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0057 Use JD to organise your tags?</title><link>https://johnnydecimal.com/22.00.0057/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0057/</guid><description>An untested suggestion: if you do use tags, perhaps you could organise those tags using Johnny.Decimal?</description><pubDate>Sun, 26 May 2024 07:53:46 GMT</pubDate><content:encoded>&lt;h1 id=&quot;use-jd-to-organise-your-tags&quot;&gt;Use JD to organise your tags?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;26/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Following on from &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/22.00.0055/&quot;&gt;thoughts on tags&lt;/a&gt;&amp;#39; the other day, my idea -- which I have not tested -- is that you might organise your tags using the Johnny.Decimal system.&lt;/p&gt;
&lt;p&gt;The problem was that we had, say, 65 music genres. In a flat list. With many that felt like they overlapped with each other.&lt;/p&gt;
&lt;p&gt;So just apply the principles of this system &lt;em&gt;to the tags themselves.&lt;/em&gt; And I think you could treat a tag as being analogous to a category; you don&amp;#39;t need to go all the way to IDs.&lt;/p&gt;
&lt;p&gt;Those music genres might then become:&lt;/p&gt;
&lt;div class=&quot;JDBlock&quot;&gt; &lt;pre class=&quot; area&quot;&gt;&lt;span&gt;10-19&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Rock&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;11&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Hard/metal&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;12&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Progressive&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;13&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Alternative&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; area&quot;&gt;&lt;span&gt;20-29&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Electronic&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;21&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Ambient&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;22&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Techno/dance&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;23&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Synthwave&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot; area&quot;&gt;&lt;span&gt;30-39&lt;/span&gt;&lt;span class=&quot;area-title&quot;&gt;Blues &amp; country&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;31&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Gospel&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre class=&quot;no-underline category&quot;&gt;&lt;span class=&quot;category-indent&quot;&gt;&lt;/span&gt;&lt;span class=&quot;category-number-and-title&quot;&gt;&lt;span&gt;32&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;category-title&quot;&gt;Americana&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt; &lt;/div&gt; 
&lt;p&gt;...or whatever, you get the idea.&lt;/p&gt;
&lt;p&gt;The point is that you apply the basic principles to your tags: only two deep, no more than ten, and so on.&lt;/p&gt;
&lt;h1 id=&quot;tagging-photos&quot;&gt;Tagging photos&lt;/h1&gt;
&lt;p&gt;The obvious use-case is photos. I don&amp;#39;t bother tagging mine,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-photos&quot; id=&quot;user-content-fnref-photos&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; but many people do. So build a tagging structure that has whatever you need: location, scene, people, mood.&lt;/p&gt;
&lt;p&gt;If anyone tries this out, let me know.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-photos&quot;&gt;
&lt;p&gt;My photo library is a hot mess. It&amp;#39;s not organised &lt;em&gt;at all.&lt;/em&gt; &lt;a href=&quot;#user-content-fnref-photos&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0056 Goals × life</title><link>https://johnnydecimal.com/22.00.0056/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0056/</guid><description>Sometimes it&apos;s okay to miss an arbitrary target in favour of living life.</description><pubDate>Sat, 25 May 2024 08:41:46 GMT</pubDate><content:encoded>&lt;h1 id=&quot;goals--life&quot;&gt;Goals × life&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;25/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Other than &lt;a href=&quot;https://johnnydecimal.com/22.00.0046/&quot;&gt;an actual day off&lt;/a&gt; -- given that I&amp;#39;m writing this blog mostly in the context of my job -- I&amp;#39;ve hit every day of #WeblogPoMo2024. And I&amp;#39;m proud of that.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m going to miss today. (Although this post threatens to turn in to &lt;a href=&quot;https://en.wikipedia.org/wiki/Quine&apos;s_paradox&quot;&gt;Quine&amp;#39;s paradox&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;This arbitrary target has been an amazing writing tool. I&amp;#39;ve written far more this month than ever before. And I&amp;#39;ve enjoyed it.&lt;/p&gt;
&lt;p&gt;But this evening, when I&amp;#39;d normally write, intead we spent in our neighbour&amp;#39;s front garden.&lt;/p&gt;
&lt;p&gt;So rather than writing something for the sake of not breaking a streak, I&amp;#39;m not posting anything today. Other than &lt;em&gt;this&lt;/em&gt; post, which I ask you not to count.&lt;/p&gt;
&lt;p&gt;Because the message is this: it&amp;#39;s okay to skip an arbitrary, inconsequential goal sometimes, if the alternative is spending time in real life. With your neighbours, round a fire, drinking a Negroni, looking at the sky.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0055 Thoughts on tags</title><link>https://johnnydecimal.com/22.00.0055/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0055/</guid><description>Tags are an alternative to the categorisation inherent to Johnny.Decimal. I have thoughts.</description><pubDate>Fri, 24 May 2024 07:39:52 GMT</pubDate><content:encoded>&lt;h1 id=&quot;thoughts-on-tags&quot;&gt;Thoughts on tags&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;24/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://www.reddit.com/r/datacurator/comments/1cy6hj6/help_me_organize_my_small_business_documents/&quot;&gt;A question at r/datacurator&lt;/a&gt; once again brings up the topic of tags vs. folders.&lt;/p&gt;
&lt;p&gt;I say &amp;#39;once again&amp;#39; because -- and there&amp;#39;s no judgement here, it&amp;#39;s just a statement of fact -- the good folks at r/datacurator seem really keen on tags.&lt;/p&gt;
&lt;h2 id=&quot;tags-what&quot;&gt;Tags: what?&lt;/h2&gt;
&lt;p&gt;My system says that you should find &lt;strong&gt;&lt;em&gt;the&lt;/em&gt; category&lt;/strong&gt; that a thing belongs to -- note my emphasis on the singular -- and put the thing in that category. So your travel is &lt;code&gt;16 Travel&lt;/code&gt; and a trip is &lt;code&gt;16.37 Uruguay&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;As with most things in life, there are two sides to the story. Categories are powerful because they force you to choose. That trip makes a lot of sense in travel, and you&amp;#39;re going to find it easily.&lt;/p&gt;
&lt;p&gt;On the other hand, not everything fits neatly in a single category. Recipes are a good example, and one that I touched on in &lt;a href=&quot;https://johnnydecimal.com/22.00.0014/&quot;&gt;&lt;code&gt;22.00.0014 Categorisation&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Because you might cook &lt;a href=&quot;https://www.youtube.com/watch?v=Y2nZWveLIRA&quot;&gt;Pad Ka-Prao Moo&lt;/a&gt; for dinner&lt;sup&gt;&lt;a href=&quot;#user-content-fn-dinner&quot; id=&quot;user-content-fnref-dinner&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;, and you want to store it in your recipe manager. What category is it?&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Thai&lt;/code&gt;, obviously. Oh and &lt;code&gt;dinner&lt;/code&gt;. Aah, and &lt;code&gt;pork&lt;/code&gt;. And &lt;code&gt;spicy&lt;/code&gt;. And &lt;code&gt;goes with rice&lt;/code&gt;, and &lt;code&gt;quick&lt;/code&gt; and &lt;code&gt;cheap&lt;/code&gt; and &lt;code&gt;impressive yet simple&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;We clearly have a problem. See also: music, photographs, your movie collection, and many other things.&lt;/p&gt;
&lt;p&gt;Tags allow you to assign &lt;strong&gt;multiple tags&lt;/strong&gt; to a thing. It&amp;#39;s how my recipe app does things. It makes a lot of sense.&lt;/p&gt;
&lt;p&gt;Sometimes.&lt;/p&gt;
&lt;h1 id=&quot;the-problem-with-tags&quot;&gt;The problem with tags&lt;/h1&gt;
&lt;p&gt;So you&amp;#39;ve decided to use tags. Great! &lt;em&gt;Prob-lem solved.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Except now you have to organise your tags.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s have a look at the list of genres in Apple Music. A quick count tells me that there are about 65 to choose from, and I haven&amp;#39;t added any of my own.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s &lt;code&gt;electronic&lt;/code&gt;, &lt;code&gt;electronica&lt;/code&gt;, &lt;code&gt;house&lt;/code&gt;, &lt;code&gt;IDM/experimental&lt;/code&gt;, &lt;code&gt;techno&lt;/code&gt;, and &lt;code&gt;trance&lt;/code&gt;, all of which could plausibly describe the same track.&lt;/p&gt;
&lt;p&gt;And there&amp;#39;s no consistency. You might tag one track as &lt;code&gt;electronic&lt;/code&gt; and a similar track as &lt;code&gt;electronica&lt;/code&gt; on different days just because that&amp;#39;s the mood you were in at the time.&lt;/p&gt;
&lt;h2 id=&quot;back-to-rdatacurator&quot;&gt;Back to r/datacurator&lt;/h2&gt;
&lt;p&gt;So the crew over on Reddit &lt;a href=&quot;https://www.reddit.com/r/datacurator/comments/1cy6hj6/comment/l59r5z3/&quot;&gt;recommend to people&lt;/a&gt; that they use the tagging feature built in to their file system to tag documents:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You can use a single file system, but you should try to use some kind of metadata classification so you can can add additional per unit classification.&lt;br&gt;
NTFS used in windows has space for metadata.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;If you didn&amp;#39;t read the thread, the person is asking how to organise documents for their small business. And the suggestion is to use metadata per-file to add tags to, what, each document? &lt;em&gt;For real?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;And, to be clear, this means that you &lt;em&gt;do not need a folder hierarchy.&lt;/em&gt; Because everything&amp;#39;s tagged! Just chuck it all in one big bucket.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I think this is really impractical advice.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;my-experience-at-work&quot;&gt;My experience at work&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve seen this tried at work. SharePoint&lt;sup&gt;&lt;a href=&quot;#user-content-fn-sharepoint&quot; id=&quot;user-content-fnref-sharepoint&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; lets you set up document libraries controlled by tags.&lt;/p&gt;
&lt;p&gt;It is, without exception, total chaos.&lt;/p&gt;
&lt;h1 id=&quot;the-case-for-tags&quot;&gt;The case for tags&lt;/h1&gt;
&lt;p&gt;I&amp;#39;m not saying that tags are bad. They&amp;#39;re great for your recipe app, or your photos.&lt;/p&gt;
&lt;p&gt;Tomorrow I&amp;#39;ll explain why it might be a good idea to use Johnny.Decimal &lt;em&gt;to organise your tags.&lt;/em&gt; 🤯&lt;/p&gt;
&lt;p&gt;But now, I have to cook.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-dinner&quot;&gt;
&lt;p&gt;Guess what&amp;#39;s for dinner. &lt;a href=&quot;#user-content-fnref-dinner&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-sharepoint&quot;&gt;
&lt;p&gt;SharePoint is a horrible Microsoft product that people who work in large organisations have to use. If you&amp;#39;ve never heard of it I genuinely envy you. &lt;a href=&quot;#user-content-fnref-sharepoint&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0054 Rhodia notepads</title><link>https://johnnydecimal.com/22.00.0054/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0054/</guid><description>The off-white Rhodia notepad is my favourite notepad. In fact, it&apos;s all I&apos;m able to write on.</description><pubDate>Thu, 23 May 2024 07:43:07 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rhodia-notepads&quot;&gt;Rhodia notepads&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;23/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We&amp;#39;ve established that &lt;a href=&quot;https://johnnydecimal.com/22.00.0033/&quot;&gt;I&amp;#39;m a pencil guy&lt;/a&gt;. What do I write on?&lt;/p&gt;
&lt;p&gt;I discovered Rhodia&amp;#39;s notepads years ago and I&amp;#39;ve since come to realise that I can&amp;#39;t write on anything else.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s the ivory paper. This photo doesn&amp;#39;t do it justice, so if you&amp;#39;ve not seen it, go and find one. &lt;a href=&quot;https://milligram.com/products/rhodia-premium-r-pad-number-16-a5&quot;&gt;They&amp;#39;re only about $10&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But make sure you get the ivory variant! The paper isn&amp;#39;t white. And there&amp;#39;s something about it that makes it much easier for my brain to write on. When I go back to white -- alas, Rhodia only makes an A4 dotpad in white -- it&amp;#39;s almost blinding.&lt;/p&gt;
&lt;p&gt;As well as being ivory, the paper really is lovely. And I love the way the top cover folds over the back. A really nice daily notebook: premium feel without breaking the bank. I&amp;#39;ve had dozens over the years.&lt;/p&gt;
&lt;p&gt;For Post-it notes, I find the branded ones are worth the money. And for the love of all that&amp;#39;s good in the world don&amp;#39;t get sticky-note yellow! Tizzy it up a bit.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m also partial to a really cheap notepad. This one (photo, centre) is from Muji and the paper is really thin and crappy. It&amp;#39;s like the toilet paper from high school. There&amp;#39;s about 500 sheets on a pad, glued at the top. It was a dollar and I was robbed.&lt;/p&gt;
&lt;p&gt;But the cheapness means you don&amp;#39;t feel bad about making a ton of quick notes. Most of them don&amp;#39;t last overnight -- they&amp;#39;re just a place to scratch a thought. Then &lt;em&gt;scrunch&lt;/em&gt; and it&amp;#39;s in the bin.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the Rhodia, some very bright Post-its, and the (grey kinda boring) cheap Muji pad on my desk.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0054.01-notepads-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;(And yeah, the paper is grey not ivory. But I use this paper for quick scribbles, not considered thoughts.)&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0053 Building a winter coop</title><link>https://johnnydecimal.com/22.00.0053/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0053/</guid><description>We had a day off today, and built a winter coop for the ladies.</description><pubDate>Wed, 22 May 2024 07:37:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;building-a-winter-coop&quot;&gt;Building a winter coop&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;22/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Canberra winters&lt;sup&gt;&lt;a href=&quot;#user-content-fn-winter&quot; id=&quot;user-content-fnref-winter&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; are beautiful. This is a typical week-ahead forecast.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Screenshot of my weather widget. Every day is the same: low is 0C, high is 16C, and it&apos;s sunny with perhaps a touch of cloud. Glorious.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.01-oz-radar-original-1054x522@3x.jpeg&quot; width=&quot;600&quot; height=&quot;297&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;But those mornings are &lt;em&gt;cold,&lt;/em&gt; and Wendy is in a moult. They spend most mornings in &amp;#39;bush 1&amp;#39;, which is a fine bush but not a particularly warm spot.&lt;/p&gt;
&lt;p&gt;So on our day off, we built them a winter coop. We started with a frame that we&amp;#39;re no longer using.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of our garden. The coop frame is in the foreground. Belinda the chicken is in the background. It&apos;s a sunny morning.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.02-coop1-480x640.jpeg&quot; width=&quot;480&quot; height=&quot;640&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;If you&amp;#39;re lucky, the ladies will come and &amp;#39;help&amp;#39;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the ladies &apos;helping&apos;, i.e. just eating dirt like usual.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.03-ladies-helping-480x640.jpeg&quot; width=&quot;480&quot; height=&quot;640&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Our local Bunnings -- at Canberra airport -- is spectacular. It&amp;#39;s the best hardware store I&amp;#39;ve ever been in.&lt;/p&gt;
&lt;p&gt;British people think that B&amp;amp;Q is a hardware store. I&amp;#39;m sorry, dear motherland, but no. You need to see a proper Bunnings.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of our local Bunnings. It&apos;s a giant warehouse full of hardware stuff.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.04-bunnings-640x480.jpeg&quot; width=&quot;640&quot; height=&quot;480&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;I wrapped the frame in 0.5mm clear PVC ($14.59/metre) to make it like a greenhouse.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the coop in its new spot.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.05-coop-in-place-640x480.jpeg&quot; width=&quot;640&quot; height=&quot;480&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Wendy, predictably, is the first to have a look. She seems to like it, but tomorrow morning will be the test.&lt;/p&gt;
&lt;p&gt;Mealworms will be deployed.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of Wendy in the new coop, which is now also decorated with a few plants.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.06-wendy-having-a-look-640x480.jpeg&quot; width=&quot;640&quot; height=&quot;480&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;This is Wendy, right. Notice how her feathers, usually so splendid, look all ragged. Belinda, to the left, looks much more healthy. And that&amp;#39;s Marie, above.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of Wendy and Belinda from pretty low. Wendy&apos;s feathers are all ragged from her moult.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0053.07-wendy-640x480.jpeg&quot; width=&quot;640&quot; height=&quot;480&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;A lovely day off on a perfect Canberra day.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-winter&quot;&gt;
&lt;p&gt;It&amp;#39;s not actually winter yet, I know. But with any luck this will be the weather until September. &lt;a href=&quot;#user-content-fnref-winter&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0052 &apos;Projects&apos; vs. &apos;events&apos;</title><link>https://johnnydecimal.com/22.00.0052/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0052/</guid><description>More thoughts on the granularity of IDs.</description><pubDate>Tue, 21 May 2024 04:29:39 GMT</pubDate><content:encoded>&lt;h1 id=&quot;projects-vs-events&quot;&gt;&amp;#39;Projects&amp;#39; vs. &amp;#39;events&amp;#39;&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;21/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Here&amp;#39;s another way to think about &lt;a href=&quot;https://johnnydecimal.com/22.00.0050/&quot;&gt;the granularity of IDs&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s arbitrarily divide all of life in to two buckets.&lt;/p&gt;
&lt;h2 id=&quot;projects&quot;&gt;Projects&lt;/h2&gt;
&lt;p&gt;Projects can be small. I&amp;#39;m engaged in battle with our local shopping centre over a dangerous car park exit. That&amp;#39;s a &lt;strong&gt;project&lt;/strong&gt; because it&amp;#39;s this well-defined thing.&lt;/p&gt;
&lt;p&gt;It started when I got angry at almost being killed, and it&amp;#39;ll end when they install a barrier at the car park exit.&lt;/p&gt;
&lt;p&gt;They can be whole-of-life things. &lt;code&gt;House insurance&lt;/code&gt; isn&amp;#39;t a project as such, but it is a defined thing that started (you got old enough to move in to your own place) and it&amp;#39;ll end (you&amp;#39;ll move in to a nursing home or die).&lt;/p&gt;
&lt;p&gt;It&amp;#39;s made up of a bunch of &lt;strong&gt;events&lt;/strong&gt; like &lt;em&gt;renew insurance&lt;/em&gt; or &lt;em&gt;seek better quote.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;In Johnny.Decimal, IDs should line up with your life&amp;#39;s projects.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is why &lt;a href=&quot;https://johnnydecimal.com/22.00.0028/&quot;&gt;we renamed &lt;strong&gt;project&lt;/strong&gt; to &lt;strong&gt;system&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;events&quot;&gt;Events&lt;/h2&gt;
&lt;p&gt;Whereas an &lt;strong&gt;event&lt;/strong&gt; is &lt;em&gt;part of&lt;/em&gt; some broader &lt;strong&gt;project.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Going to get a scan for that achy knee isn&amp;#39;t a project: it&amp;#39;s just one &lt;strong&gt;event&lt;/strong&gt; in the life &lt;strong&gt;project&lt;/strong&gt; of &lt;em&gt;being healthy&lt;/em&gt; or &lt;em&gt;not aching&lt;/em&gt; or whatever.&lt;/p&gt;
&lt;p&gt;And so Lucy didn&amp;#39;t create an ID for the &lt;strong&gt;event&lt;/strong&gt; which was &lt;em&gt;going to get a scan for the achy knee.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;She created a &lt;strong&gt;project,&lt;/strong&gt; &lt;code&gt;12.20 Doctors and tests&lt;/code&gt;, and put it in there. Future events will fill out this project over time.&lt;/p&gt;
&lt;h2 id=&quot;you-can-promote-things&quot;&gt;You can promote things&lt;/h2&gt;
&lt;p&gt;Let&amp;#39;s say that achy knee turns in to some sort of knee replacement surgery and life-long rehabilitation. It might feel like it&amp;#39;s outgrown &lt;code&gt;12.20 Doctors and tests&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Totally cool. Just promote it to its own thing later.&lt;/p&gt;
&lt;h2 id=&quot;err-on-the-side-of-less-granular&quot;&gt;Err on the side of less granular&lt;/h2&gt;
&lt;p&gt;If in doubt, try to roll things together. Less things is less decisions is less ambiguity.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0051 Socks</title><link>https://johnnydecimal.com/22.00.0051/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0051/</guid><description>People sometimes wonder if I&apos;m also neat in real life.</description><pubDate>Mon, 20 May 2024 06:56:24 GMT</pubDate><content:encoded>&lt;h1 id=&quot;socks&quot;&gt;Socks&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;20/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;&amp;quot;Are you also neat in real life?&amp;quot;,&lt;/em&gt; people sometimes ask.&lt;/p&gt;
&lt;p&gt;Well, I just folded the socks.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of my socks. They&apos;re beautifully folded, and arranged in a colour spread like the rainbow. The photo is cropped to a square so it looks kinda abstract.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0051.01-socks-1235x1280.jpeg&quot; width=&quot;600&quot; height=&quot;622&quot;&gt;  &lt;/picture&gt; </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0050 Granularity of IDs</title><link>https://johnnydecimal.com/22.00.0050/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0050/</guid><description>&apos;How big is an ID&apos; is a common question; Lucy answered it differently than I would have, and I like what she did.</description><pubDate>Sun, 19 May 2024 04:06:16 GMT</pubDate><content:encoded>&lt;h1 id=&quot;granularity-of-ids&quot;&gt;Granularity of IDs&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;19/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;While &lt;a href=&quot;https://johnnydecimal.com/22.00.0045/&quot;&gt;I was away&lt;/a&gt; last week, Lucy recorded herself creating her &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;index&lt;/a&gt;. (We&amp;#39;re still recording that section of the &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;workshop&lt;/a&gt;.)&lt;/p&gt;
&lt;p&gt;One of the items she added was a doctor&amp;#39;s referral letter. My natural instinct would have been to create a &lt;strong&gt;very granular&lt;/strong&gt; ID, something like:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;12.20 Referral for scan for achy knee problem&lt;/code&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-health&quot; id=&quot;user-content-fnref-health&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;...or maybe broaden it to the &lt;strong&gt;subject&lt;/strong&gt; rather than the specific &lt;strong&gt;action:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;12.20 Achy knee problem&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This is just how I&amp;#39;ve always done it. But Lucy did this instead:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;12.20 Doctors and tests&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;That&amp;#39;s &lt;strong&gt;much less granular&lt;/strong&gt; than I would have done, and &lt;em&gt;I really like it.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Because I don&amp;#39;t &lt;em&gt;need&lt;/em&gt; a super-specific ID for that scan. In the grand scheme of my life, does every little thing that I do need its own ID? No. I&amp;#39;d be drowning in them.&lt;/p&gt;
&lt;p&gt;Lucy&amp;#39;s answer fits better with an idea that we came up with while recording the workshop: IDs are like the manila folders that we show on &lt;a href=&quot;https://johnnydecimal.com/11.01/#file-your-stuff-in-folders&quot;&gt;the home page&lt;/a&gt;. When you sit down to do &amp;#39;some work&amp;#39;, imagine yourself opening that folder. Ideally, everything you need is in it, and not much more.&lt;/p&gt;
&lt;p&gt;And imagine that they cost about a dollar. So you wouldn&amp;#39;t create them willy-nilly, but nor should creating one be something you consider &lt;em&gt;too&lt;/em&gt; deeply.&lt;/p&gt;
&lt;h2 id=&quot;put-the-date-in-the-scans-filename&quot;&gt;Put the date in the scan&amp;#39;s filename&lt;/h2&gt;
&lt;p&gt;The crucial extra step here, which Lucy did, is to name the scan so that it includes the date at the front:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;2024-05-19 Referral for achy knee scan.pdf&lt;/code&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-date&quot; id=&quot;user-content-fnref-date&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This way, folder &lt;code&gt;12.20&lt;/code&gt; can contain an almost limitless amount of this sort of information without ever feeling cluttered.&lt;/p&gt;
&lt;p&gt;If I&amp;#39;m lucky, this one folder will serve me for the rest of my life.&lt;/p&gt;
&lt;h2 id=&quot;officially-endorsed&quot;&gt;Officially endorsed&lt;/h2&gt;
&lt;p&gt;I really like this approach. I&amp;#39;ll be doing it myself when I rebuild my own systems.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There is a follow-up to this post at &lt;a href=&quot;https://johnnydecimal.com/22.00.0052/&quot;&gt;&lt;code&gt;22.00.0052&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-health&quot;&gt;
&lt;p&gt;Where category &lt;code&gt;12 Health&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-health&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-date&quot;&gt;
&lt;p&gt;I shouldn&amp;#39;t have to tell you by now that &lt;code&gt;yyyy-mm-dd&lt;/code&gt; is the only way you should ever write a date. Should I? &lt;a href=&quot;#user-content-fnref-date&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0049 Which apps do I use?</title><link>https://johnnydecimal.com/22.00.0049/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0049/</guid><description>Peter on Discord wonders &apos;what apps I use to organise yourself, your website, and your business?&apos;</description><pubDate>Sat, 18 May 2024 06:41:58 GMT</pubDate><content:encoded>&lt;h1 id=&quot;which-apps-do-i-use&quot;&gt;Which apps do I use?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;18/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Peter asks on Discord, &lt;a href=&quot;https://discord.com/channels/822215537589354566/822216448268697698/1240989030879854672&quot;&gt;what apps do you use to organise yourself and your website and your business life?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m in-between tools at the moment; part of the &amp;#39;&lt;a href=&quot;https://johnnydecimal.com/22.00.0044/&quot;&gt;organisational bankruptcy&lt;/a&gt;&amp;#39;. But I&amp;#39;ll give a run-down of what I&amp;#39;ve used in the past, and where I&amp;#39;m leaning for the future.&lt;/p&gt;
&lt;h2 id=&quot;notes-apps&quot;&gt;Notes apps&lt;/h2&gt;
&lt;p&gt;I&amp;#39;ve always preferred the really simple style of note-taking app that I think was popularised/invented by the legendary &lt;a href=&quot;https://notational.net&quot;&gt;Notational Velocity&lt;/a&gt;, which was forked to the also-legendary &lt;a href=&quot;https://brettterpstra.com/projects/nvalt/&quot;&gt;nvALT&lt;/a&gt;. The former dates back to 2009.&lt;/p&gt;
&lt;p&gt;They have a list of notes, and a search box. Typing in the search box instantly -- and &lt;em&gt;instantly&lt;/em&gt; is really important -- filters the list of notes that you see to only include those that match the search.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s it. That&amp;#39;s the feature. Anything else is a bonus: any sort of folders, tags, whatever. You don&amp;#39;t need anything else. You just need text search.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of nvALT. At the top is a search bar. Then a list of notes. Then the selected note. Just in one column. That&apos;s it.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0049.01-nvALT-startup.png&quot; width=&quot;397&quot; height=&quot;518&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;I&amp;#39;m not kidding – this is the whole app&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;This works amazingly well with Johnny.Decimal because your numbers provide a really powerful built-in filtering feature. Want to search for &lt;code&gt;melbourne&lt;/code&gt; but only inside your category &lt;code&gt;16 Travel&lt;/code&gt;? Well then search for &lt;code&gt;16. melbourne&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;resophnotes&quot;&gt;ResophNotes&lt;/h3&gt;
&lt;p&gt;There was a clone for Windows: ResophNotes. &lt;a href=&quot;https://duckduckgo.com/?q=resophnotes&amp;ia=images&amp;iax=images&quot;&gt;Slightly different layout&lt;/a&gt;, exactly the same features. Which is to say, no features.&lt;/p&gt;
&lt;p&gt;Alas as of last month (April &amp;#39;24), the website is offline. It had a good run.&lt;/p&gt;
&lt;h3 id=&quot;rip-nvalt&quot;&gt;RIP nvALT&lt;/h3&gt;
&lt;p&gt;Nothing good lasts forever, and nvALT is also no longer maintained. It&amp;#39;s tough being a notes app.&lt;/p&gt;
&lt;h3 id=&quot;bear&quot;&gt;Bear&lt;/h3&gt;
&lt;p&gt;Enter Bear. By now I guess a decade old,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-research&quot; id=&quot;user-content-fnref-research&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; it&amp;#39;s one of the most respected Mac notes apps.&lt;/p&gt;
&lt;p&gt;It has a ton of features but what I love about it is that most of them stay out of the way until you need them. This is important because...&lt;/p&gt;
&lt;h3 id=&quot;i-seek-simplicity&quot;&gt;I seek simplicity&lt;/h3&gt;
&lt;p&gt;This is my job now, and people look to me for recommendations. So part of my new thinking is that I want to be using the simplest apps that &lt;em&gt;anyone can use.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re reading this you&amp;#39;ve probably heard of Obsidian. I don&amp;#39;t use it. Because the first time I opened it I thought, &lt;em&gt;whoa, this is complex,&lt;/em&gt; and I closed it immediately.&lt;/p&gt;
&lt;p&gt;There is no way that your average person is going to use Obsidian. I&amp;#39;d be bad at my job if I suggested that they do so.&lt;/p&gt;
&lt;p&gt;And I believe that my system will be better, more focused, more deeply considered, if I&amp;#39;m not leaning on some obscure Obsidian plug-in to get something done. No. You can do everything you need to do with nvALT. And if you &lt;em&gt;want&lt;/em&gt; to write yourself a plug-in, go nuts. I&amp;#39;m not going to discourage you.&lt;/p&gt;
&lt;p&gt;Currently, Bear is in that sweet-spot. It has an amazing sync service and native, beautiful apps for every Apple platform. It&amp;#39;s very reasonably priced. It&amp;#39;s well supported and has a secure future. It doesn&amp;#39;t lock you in: you can export all of your stuff whenever you want.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-database&quot; id=&quot;user-content-fnref-database&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;You should probably use Bear.&lt;/p&gt;
&lt;h2 id=&quot;to-do-apps&quot;&gt;To-do apps&lt;/h2&gt;
&lt;p&gt;For a long time &lt;a href=&quot;https://theomnishow.omnigroup.com/episode/how-johnny-decimal-noble-uses-omni-software/&quot;&gt;I used OmniFocus&lt;/a&gt;. And really heavily: I replicated my Johnny.Decimal structure entirely in the app, every ID having its own project.&lt;/p&gt;
&lt;p&gt;This works really well. But I don&amp;#39;t do it any more.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sure why. I think I just got sick of having so many &amp;#39;to-dos&amp;#39; that were never getting done. It was making me feel bad.&lt;/p&gt;
&lt;p&gt;I think my job was &lt;em&gt;really&lt;/em&gt; hectic at the time. So I&amp;#39;d come home and have all of these tasks and maybe I just rejected it.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t actually enjoy being task-list driven. I usually have a sense of what needs to be done. Maybe I&amp;#39;ll plan a thing out on &lt;a href=&quot;https://johnnydecimal.com/22.00.0033/&quot;&gt;paper&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;due&quot;&gt;Due&lt;/h3&gt;
&lt;p&gt;One app that I can&amp;#39;t live without is &lt;a href=&quot;https://www.dueapp.com&quot;&gt;Due&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It has one killer feature: it nags you, forever, until you tell it to stop. Over and over. This makes it basically impossible to forget to do a thing.&lt;/p&gt;
&lt;p&gt;I use it sparingly, for what I call &lt;code&gt;P1&lt;/code&gt; tasks in &lt;a href=&quot;https://johnnydecimal.com/22.00.0034/&quot;&gt;this post&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;apple-reminders&quot;&gt;Apple Reminders&lt;/h3&gt;
&lt;p&gt;We&amp;#39;re a HomePod house. The kitchen has a stereo pair of the big ones, and the office and bedroom have a mini each.&lt;/p&gt;
&lt;p&gt;This makes shouting &amp;#39;hey Siri, remind me to do a thing&amp;#39; &lt;em&gt;really&lt;/em&gt; convenient. Mostly for this reason -- I think the app is garbage -- I use Reminders.&lt;/p&gt;
&lt;p&gt;Also see above re: simplest tools. But this &lt;strong&gt;is not&lt;/strong&gt; a recommendation at this point. I need to consider this and get back to you.&lt;/p&gt;
&lt;h3 id=&quot;fantastical&quot;&gt;Fantastical&lt;/h3&gt;
&lt;p&gt;I almost forgot Fantastical! I use this to interact with my reminders more than I do Reminders. Great app, indispensable, worth every penny of the subscription. It&amp;#39;s how I use my calendar, 100%. Never open Apple&amp;#39;s &lt;em&gt;Calendar&lt;/em&gt; ever.&lt;/p&gt;
&lt;h2 id=&quot;this-is-all-up-in-the-air&quot;&gt;This is all up in the air&lt;/h2&gt;
&lt;p&gt;That&amp;#39;ll do for now, because 10% of my daily thinking currently goes towards this problem. I&amp;#39;ll have properly thought out recommendations and strategies for each of these classes of app later this year.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-research&quot;&gt;
&lt;p&gt;I&amp;#39;m not going to research all of this data, this is just off the top of my head. &lt;a href=&quot;#user-content-fnref-research&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-database&quot;&gt;
&lt;p&gt;Some will say that the fact that Bear even &lt;em&gt;uses&lt;/em&gt; its own proprietary database of notes -- vs. storing your stuff as hand-written parchment in your underground bunker -- is a deal-breaker. I think those people have perhaps strayed too far over in to idealism. &lt;a href=&quot;#user-content-fnref-database&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0048 Learning Swift</title><link>https://johnnydecimal.com/22.00.0048/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0048/</guid><description>Boy am I glad I learned JavaScript in 2018.</description><pubDate>Fri, 17 May 2024 05:09:25 GMT</pubDate><content:encoded>&lt;h1 id=&quot;learning-swift&quot;&gt;Learning Swift&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;17/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;ve spent the day diving in to the &lt;a href=&quot;https://swift.org&quot;&gt;Swift&lt;/a&gt; programming language that runs all modern Apple apps.&lt;/p&gt;
&lt;p&gt;So far it&amp;#39;s really similar to JavaScript which is great. Computer languages are a lot like spoken languages: if you already speak Italian, Spanish isn&amp;#39;t far away. But Hungarian or Finnish are totally different.&lt;/p&gt;
&lt;p&gt;Fortunately JavaScript and Swift feel like Mediterranean cousins.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using &lt;em&gt;&lt;a href=&quot;https://www.hackingwithswift.com/read&quot;&gt;Hacking with macOS: SwiftUI Edition&lt;/a&gt;&lt;/em&gt; by Paul Hudson and really enjoying it.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m looking forward to the bit where we start to build a UI; so far we&amp;#39;re just in text-function mode. One step at a time.&lt;/p&gt;
&lt;h2 id=&quot;i-havent-given-this-deep-thought&quot;&gt;I haven&amp;#39;t given this &lt;em&gt;deep&lt;/em&gt; thought...&lt;/h2&gt;
&lt;p&gt;This might be a rash decision. To write an app. But watching Lucy &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;create her index&lt;/a&gt; in Apple Notes the other day really made me realise how much I could do if I had my own thing.&lt;/p&gt;
&lt;p&gt;I think this deserves its own thing. And yes, this means &lt;em&gt;yet another&lt;/em&gt; app. In the crowded PKM market.&lt;/p&gt;
&lt;p&gt;But actually I&amp;#39;m not trying to compete with the Obsidians or the Notions. I made a decision a while ago to focus my efforts on the tools that &lt;em&gt;anyone&lt;/em&gt; can use. Not just the PKM nerds. Obsidian isn&amp;#39;t that.&lt;/p&gt;
&lt;p&gt;I want my app to sit in this space; where someone who has no idea what &amp;#39;PKM&amp;#39; is, but has a bunch of files on their desktop, could start to use it and have it be immediately useful, familiar, comforting.&lt;/p&gt;
&lt;p&gt;That probably means design over features. Simple to start.&lt;/p&gt;
&lt;p&gt;But let&amp;#39;s see what SwiftUI can do first, and then think about app design.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0047 Request for help: how do I learn Mac software development?</title><link>https://johnnydecimal.com/22.00.0047/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0047/</guid><description>Help me get started as quickly as possible.</description><pubDate>Thu, 16 May 2024 05:41:16 GMT</pubDate><content:encoded>&lt;h1 id=&quot;request-for-help-how-do-i-learn-mac-software-development&quot;&gt;Request for help: how do I learn Mac software development?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;16/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Chatting to a friend yesterday made me realise that I really want to write software to help you manage your Johnny.Decimal system.&lt;/p&gt;
&lt;p&gt;It&amp;#39;ll be Mac initially, and iPad/iPhone maybe later. It can&amp;#39;t be web -- not enough system integration -- and I&amp;#39;m sorry if you use Linux or Windows but I&amp;#39;m just one guy and Apple is what I know.&lt;/p&gt;
&lt;p&gt;I can already code to a &lt;em&gt;meh&lt;/em&gt; standard. I know JavaScript. So I don&amp;#39;t need to learn the fundamentals of programming.&lt;/p&gt;
&lt;p&gt;I listen to ATP, so I have a good high level understanding of the state of Mac development. I&amp;#39;d like to learn whatever&amp;#39;s as default and future-proof as possible. So I guess that means Swift UI? (I know this might come with some trade-offs.)&lt;/p&gt;
&lt;p&gt;So! What I&amp;#39;m looking for is a list of the best resources. Including but not limited to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;YouTube channels.&lt;/li&gt;
&lt;li&gt;Courses, paid included.&lt;/li&gt;
&lt;li&gt;Blogs or other personal sites that will tell me what to do.&lt;/li&gt;
&lt;li&gt;Podcasts? Though I don&amp;#39;t see audio as the ideal medium here.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Who&amp;#39;s the Wes Bos of Swift? Who will mainline me information as fast as I can absorb it?&lt;/p&gt;
&lt;p&gt;What&amp;#39;s my fastest path to getting a minimally functional Mac app working?&lt;/p&gt;
&lt;p&gt;Throw me suggestions &lt;a href=&quot;mailto:hello@johnnydecimal.com&quot;&gt;via email&lt;/a&gt; or on &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0047-request-for-help-how-do-i-learn-mac-software-development/1471&quot;&gt;the forum post&lt;/a&gt; associated with this entry, or &lt;a href=&quot;https://hachyderm.io/@johnnydecimal&quot;&gt;on Mastodon&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Thanks! 🙏&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0046 On holiday</title><link>https://johnnydecimal.com/22.00.0046/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0046/</guid><description>Nothing today, I have a day off.</description><pubDate>Wed, 15 May 2024 09:19:29 GMT</pubDate><content:encoded>&lt;h1 id=&quot;on-holiday&quot;&gt;On holiday&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;15/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Today&amp;#39;s a day off. I had lunch with a friend and a lovely walk back in to the city through my old neighbourhood.&lt;/p&gt;
&lt;p&gt;See you all tomorrow. Heading back to Lucy and the chickens.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0045 I cycled to the airport</title><link>https://johnnydecimal.com/22.00.0045/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0045/</guid><description>Fulfilling a life&apos;s dream, I ride my bike to the airport for a domestic flight.</description><pubDate>Mon, 13 May 2024 22:22:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-cycled-to-the-airport&quot;&gt;I cycled to the airport&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;14/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;m heading to Melbourne to see an old friend. Just a short trip, so a tiny bag, enabling me to fulfil a life&amp;#39;s dream: &lt;strong&gt;I&amp;#39;m going to cycle to the airport.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Marie saw me off.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of Johnny just about to leave the house on his bike. He&apos;s wrapped up real warm and there&apos;s a chicken (it&apos;s Marie) in the foreground.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.01-bike-and-chicken-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;A strange dream, you might think. It&amp;#39;s just a small thing, but I love the idea of being able to do something so &lt;em&gt;big&lt;/em&gt; -- fly to Melbourne -- without having to get in the car.&lt;/p&gt;
&lt;p&gt;Also I don&amp;#39;t own a car, so it&amp;#39;ll save me at least $50 on Uber rides.&lt;/p&gt;
&lt;p&gt;There aren&amp;#39;t &lt;em&gt;many&lt;/em&gt; cities you could do this, and there certainly aren&amp;#39;t many capital cities. But Canberra&amp;#39;s a funny little place. A lot of people don&amp;#39;t even realise it&amp;#39;s the capital -- they assume that&amp;#39;s Sydney.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A panorama. You really can&apos;t make much out: to the left/north is the Australian War Memorial, then we pan over Anzac Parade and to the right/south you can see over Lake Burley Griffin to Parliament House.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.02-anzac-parade-pano-640x191.jpeg&quot; width=&quot;600&quot; height=&quot;191&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;At the top of our street you hit Anzac Parade. That&amp;#39;s the Australian War Memorial at the left/north, then you look down the parade and over Old Parliament House to Parliament House at the right/south.&lt;/p&gt;
&lt;p&gt;A tiny panorama doesn&amp;#39;t really do it justice. It&amp;#39;s better on &lt;a href=&quot;https://www.google.com.au/maps/@-35.2831127,149.146465,3a,75y,34.27h,95.01t/data=!3m7!1e1!3m5!1s2oiZNsZV29pEZYzy8pKkeA!2e0!6shttps:%2F%2Fstreetviewpixels-pa.googleapis.com%2Fv1%2Fthumbnail%3Fpanoid%3D2oiZNsZV29pEZYzy8pKkeA%26cb_client%3Dmaps_sv.tactile.gps%26w%3D203%26h%3D100%26yaw%3D133.75037%26pitch%3D0%26thumbfov%3D100!7i16384!8i8192?hl=en&amp;entry=ttu&quot;&gt;street view&lt;/a&gt;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The view over Lake Burley Griffin.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.03-lake-burley-griffin-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;At the bottom of the parade you do a left, turn in past ASIO (our FBI), and you hit Lake Burley Griffin.&lt;/p&gt;
&lt;p&gt;Over the lake there is the &lt;a href=&quot;https://en.wikipedia.org/wiki/Parliamentary_Triangle,_Canberra&quot;&gt;Parliamentary Triangle&lt;/a&gt;. It&amp;#39;s a delightful part of the world; whenever we&amp;#39;re there we can&amp;#39;t quite believe that it&amp;#39;s where we live. It&amp;#39;s like a scene from the original Star Trek, one of those episodes where they land on some utopian world and everyone is young and beautiful and they&amp;#39;re all exercising with a big smile and they&amp;#39;re rolling hoops and wearing lilac leotards and then later you realise actually it&amp;#39;s really sinister because actually everyone&amp;#39;s a lizard and they eat the old people but &lt;em&gt;on the surface&lt;/em&gt; it&amp;#39;s an idyllic paradise.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s what it feels like when you cycle round Lake Burley Griffin.&lt;/p&gt;
&lt;p&gt;Over the way there you&amp;#39;ve got the National Gallery of Australia, the High Court of Australia, Questacon (the science museum), and the National Library of Australia. We work in the library sometimes, it&amp;#39;s lovely and the Wi-Fi is &lt;em&gt;epic.&lt;/em&gt;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of the bike path.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.04-bike-path-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;So then you ride along the lake for a bit...&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Light aircraft parked at the airport.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.05-general-aviation-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;...and you get to the airport. By now my hands and toes are a touch cold -- it&amp;#39;s about 7°C -- but not too bad.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;My bike, locked up.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.06-bike-park-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;The bike gets parked.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Canberra&apos;s airport terminal.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0045.07-cbr-terminal-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;And I&amp;#39;m in one of the loveliest airports you&amp;#39;ve ever been in.&lt;/p&gt;
&lt;p&gt;The flight was on time (actually we&amp;#39;re running early), I&amp;#39;m in 5A on a lovely QantasLink A220 which feels like it&amp;#39;s been recently renovated. Seating is 2+3 so there&amp;#39;s loads of room.&lt;/p&gt;
&lt;p&gt;Whenever we fly Qantas we wonder what Americans would think of Australian domestic flights. No offence, America, but I&amp;#39;ve done a cross-country economy flight on one of your main carriers. We do it better.&lt;/p&gt;
&lt;p&gt;Oh and this is cool! I&amp;#39;ll publish this from the plane, which has Wi-Fi. Better hurry up, we&amp;#39;re coming in to land.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0044 Howcome Johnny is disorganised?</title><link>https://johnnydecimal.com/22.00.0044/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0044/</guid><description>I&apos;m the guy telling you how to be organised. And yesterday I confessed that I wasn&apos;t organised. What&apos;s going on?</description><pubDate>Sun, 12 May 2024 22:40:36 GMT</pubDate><content:encoded>&lt;h1 id=&quot;howcome-johnny-is-disorganised&quot;&gt;Howcome Johnny is disorganised?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;13/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0043/&quot;&gt;Yesterday&lt;/a&gt; I repeated something that I &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;first said&lt;/a&gt; at the start of the year: &lt;strong&gt;some of my own systems are disorganised.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;So here I am, this guy with a site and a blog, and my stuff&amp;#39;s a mess. Seems odd. Why should you trust anything I say?&lt;/p&gt;
&lt;h2 id=&quot;i-didnt-take-my-own-advice&quot;&gt;I didn&amp;#39;t take my own advice&lt;/h2&gt;
&lt;p&gt;The simplest explanation is that, in this instance, I didn&amp;#39;t take my own advice.&lt;/p&gt;
&lt;p&gt;I quit my job &lt;a href=&quot;https://johnnydecimal.com/22.00.0036/&quot;&gt;a year ago&lt;/a&gt; and that&amp;#39;s when this system, &lt;code&gt;D85 Johnny.Decimal business&lt;/code&gt;, started.&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t really know what I was doing; there was no plan for the business. I just quit one day! So I knocked something together out of necessity, as I went. The system just evolved.&lt;/p&gt;
&lt;p&gt;And, to be clear, it&amp;#39;s not a &lt;em&gt;bad&lt;/em&gt; system. It works. We&amp;#39;re here, working, and we can find things. I just know that it can be a lot better.&lt;/p&gt;
&lt;h2 id=&quot;i-hadnt-written-my-own-advice&quot;&gt;I hadn&amp;#39;t &lt;em&gt;written&lt;/em&gt; my own advice&lt;/h2&gt;
&lt;p&gt;It would have been hard to follow the step-by-step procedures that I outline in the &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;workbook&lt;/a&gt; because I hadn&amp;#39;t written it yet!&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s not a bad excuse.&lt;/p&gt;
&lt;h2 id=&quot;also-working-it-out-is-instructive&quot;&gt;Also, working it out is instructive&lt;/h2&gt;
&lt;p&gt;I don&amp;#39;t pretend to have a perfect solution to all of this. My thoughts are evolving; the Johnny.Decimal system evolves; and the very nature of the work that we do evolves.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m just listening to &lt;a href=&quot;https://pod.link/1515786216/episode/635a72aae3bc3da46db0b23cf13196f5&quot;&gt;Cal Newport&amp;#39;s latest podcast&lt;/a&gt;. He&amp;#39;s giving a rundown of the state of productivity advice since the &amp;#39;90s.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s the &amp;#39;sage advice and optimism&amp;#39; era of &lt;a href=&quot;https://en.wikipedia.org/wiki/The_7_Habits_of_Highly_Effective_People&quot;&gt;Stephen Covey&lt;/a&gt;, then the &amp;#39;productivity &lt;a href=&quot;https://en.wikipedia.org/wiki/Leet#Pr0n&quot;&gt;pr0n&lt;/a&gt;&amp;#39; era, defined by David Allen&amp;#39;s &lt;em&gt;&lt;a href=&quot;https://gettingthingsdone.com/what-is-gtd/&quot;&gt;Getting Things Done&lt;/a&gt;®&lt;/em&gt; and Merlin Mann&amp;#39;s site &lt;em&gt;&lt;a href=&quot;http://www.43folders.com&quot;&gt;43 Folders&lt;/a&gt;&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Then in the late 2000s we got sick of working so much and we move in to the era of &amp;#39;lifestyle design&amp;#39;, defined by Tim Ferris&amp;#39; &lt;em&gt;&lt;a href=&quot;https://fourhourworkweek.com&quot;&gt;The 4-hour Workweek&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;And that&amp;#39;s where I&amp;#39;m up to. The point is, this stuff shifts. Whether it needs to or not, who knows. Is it all a fad? To some extent. Is it generational? Probably a bit of that.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m trying to think about the &lt;em&gt;type of system&lt;/em&gt; that I want Johnny.Decimal to be. I don&amp;#39;t actually see myself as a &amp;#39;PKM&amp;#39; nerd. I&amp;#39;d like to help normal people -- who have no idea what that acronym means and don&amp;#39;t care -- to be more organised.&lt;/p&gt;
&lt;p&gt;Because we have no option these days. In the late 2000s you could plausibly get by without using a computer all day. Then they invented the iPhone and everything changed.&lt;/p&gt;
&lt;p&gt;So now you &lt;em&gt;have to&lt;/em&gt; use a computer, for essentially everything, whether you want to or not. I&amp;#39;d like to find a way to navigate that fact without burdening the world with yet more procedures; without it having to be your hobby.&lt;/p&gt;
&lt;p&gt;Most people don&amp;#39;t have a deep passion for knowledge management. They just want to know where they saved that receipt when the thing breaks.&lt;/p&gt;
&lt;p&gt;Anyway. A work in progress.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0043 Started re-organising system D85</title><link>https://johnnydecimal.com/22.00.0043/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0043/</guid><description>I&apos;m re-organising the Johnny.Decimal system that manages &apos;the Johnny.Decimal business&apos;. Post-it notes are on the wall!</description><pubDate>Sun, 12 May 2024 05:16:04 GMT</pubDate><content:encoded>&lt;h1 id=&quot;started-re-organising-system-d85&quot;&gt;Started re-organising system D85&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;12/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;At the start of the year &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;I declared &amp;#39;organisational bankruptcy&amp;#39;&lt;/a&gt;.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-bankrupt&quot; id=&quot;user-content-fnref-bankrupt&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I haven&amp;#39;t had time to do anything about it since then (recording the &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;workshop&lt;/a&gt; is a full-time job), but I started today.&lt;/p&gt;
&lt;p&gt;My scope statement is up.&lt;/p&gt;
&lt;h3 id=&quot;in-scope&quot;&gt;In scope&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Anything to do with the running of Johnny.Decimal as a business.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Specifically I&amp;#39;m going to bring &lt;code&gt;30-39 Coruscade&lt;/code&gt; over from my personal system. That&amp;#39;s the company that the business operates under.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;out-of-scope&quot;&gt;Out of scope&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Anything that is 100% website related. I have a separate system for that, &lt;code&gt;D01 johnnydecimal.com&lt;/code&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;You&amp;#39;re looking at that system: it&amp;#39;s what gives structure to the site.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;But if we create non-text content that then gets published on the site -- a video, say -- that&amp;#39;s not in &lt;code&gt;D01&lt;/code&gt;. That&amp;#39;s part of &lt;code&gt;D85&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And here&amp;#39;s the first bunch of Post-its. These have come from the things I&amp;#39;ve done over the last week, which I&amp;#39;ve been writing down.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of Post-it notes stuck to my wall.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0043.01-Post-it-wall.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Next up I&amp;#39;ll go through our file system and get everything represented there on the wall.&lt;/p&gt;
&lt;p&gt;Note that I&amp;#39;m doing &lt;code&gt;20-29 Discovery&lt;/code&gt; (ref. workbook/workshop) by myself, but when it comes to &lt;code&gt;30-39 Build your areas &amp;amp; categories&lt;/code&gt; I&amp;#39;ll do that with Lucy as this is a system that we both use.&lt;/p&gt;
&lt;p&gt;Of course if she also discovers some stuff and sticks it on the wall, that&amp;#39;s cool.&lt;/p&gt;
&lt;h2 id=&quot;itll-all-be-documented&quot;&gt;It&amp;#39;ll all be documented&lt;/h2&gt;
&lt;p&gt;Here at the very least, and I expect we&amp;#39;ll do some videos for &lt;a href=&quot;http://youtube.com/@johnny.decimal&quot;&gt;the YouTube channel&lt;/a&gt;.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-bankrupt&quot;&gt;
&lt;p&gt;Which, to be explicit, means &amp;#39;my own system is a mess and needs to be started over&amp;#39;. Financially we&amp;#39;re okay, though we&amp;#39;d be better if you &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;gave us money&lt;/a&gt; okthx. ;-) &lt;a href=&quot;#user-content-fnref-bankrupt&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0042 Two (easy) recipes</title><link>https://johnnydecimal.com/22.00.0042/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0042/</guid><description>Favourites from my childhood: vegetable soup, and corned beef pie.</description><pubDate>Sat, 11 May 2024 04:01:43 GMT</pubDate><content:encoded>&lt;h1 id=&quot;two-easy-recipes&quot;&gt;Two (easy) recipes&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;11/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Saturday feels like the day I talk about &lt;a href=&quot;https://johnnydecimal.com/22.00.0035/&quot;&gt;stuff that I do round the house&lt;/a&gt;, so here are a couple of really easy recipes.&lt;/p&gt;
&lt;p&gt;They both come from my mam. I&amp;#39;ve been cooking them both for about 30 years; or, she has, and I used to hang around and help.&lt;/p&gt;
&lt;p&gt;I love cooking. It keeps you busy: gives your hands something to do but allows your brain to wander a bit. It&amp;#39;s great thinking time.&lt;/p&gt;
&lt;p&gt;Anyway, neither of these will tax your skills (or wallet) too much.&lt;/p&gt;
&lt;h2 id=&quot;vegetable-soup&quot;&gt;Vegetable soup&lt;/h2&gt;
&lt;p&gt;It&amp;#39;s getting cold, and that means soup. This is so easy anyone can make it.&lt;/p&gt;
&lt;h3 id=&quot;ingredients&quot;&gt;Ingredients&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;50g knob of butter.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-butter&quot; id=&quot;user-content-fnref-butter&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;One large leek.&lt;/li&gt;
&lt;li&gt;One large head of broccoli.&lt;/li&gt;
&lt;li&gt;Two large carrots.&lt;/li&gt;
&lt;li&gt;Three large potatoes.&lt;/li&gt;
&lt;li&gt;Black pepper.&lt;/li&gt;
&lt;li&gt;Powdered &lt;a href=&quot;https://vegeta.com/au/products/vegeta-gourmet-stock-seasoning-powder/&quot;&gt;vegetable stock&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;instructions&quot;&gt;Instructions&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;In a really big pan (mine might be 5 litres?), heat the butter.&lt;/li&gt;
&lt;li&gt;Chop the leek in to 1cm rounds and fry until soft. Don&amp;#39;t brown.&lt;/li&gt;
&lt;li&gt;Chop the carrot, broccoli including stalk, and peeled potatoes in to chunks. It doesn&amp;#39;t really matter how big. Add to pan.&lt;/li&gt;
&lt;li&gt;Add 2 litres of boiling water.&lt;/li&gt;
&lt;li&gt;Add a really good amount of freshly ground black pepper. I do about 1tbsp of peppercorns but I like it spicy.&lt;/li&gt;
&lt;li&gt;Add 3tsp of the vegetable stock, or adjust to taste (it&amp;#39;s mostly salt).&lt;/li&gt;
&lt;li&gt;Boil gently for at least an hour.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Eat with fresh bread slathered in &lt;a href=&quot;https://tasmaniangourmetonline.com.au/products/meander-valley-cultured-butter-250g&quot;&gt;really good butter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The rest will keep in the fridge for a few days, or it freezes really well.&lt;/p&gt;
&lt;h2 id=&quot;corned-beef-and-potato-pie&quot;&gt;Corned beef and potato pie&lt;/h2&gt;
&lt;p&gt;This has been a favourite as long as I can remember. When I was in my early 20s I had cool jobs where I&amp;#39;d fly all over the world. Mam used to make a pie to take with me. It&amp;#39;d be in my luggage, wrapped in silver foil.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;d land in Nigeria, check in, and eat a slice of pie.&lt;/p&gt;
&lt;p&gt;One of the first web pages I ever made was this recipe. It would have been at &lt;code&gt;http://york.ac.uk/~jen101/pie.html&lt;/code&gt; or similar. 1995! Lost like tears in rain, alas.&lt;/p&gt;
&lt;h3 id=&quot;ingredients-1&quot;&gt;Ingredients&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;2 frozen puff pastry sheets. If you can find the stuff made with butter vs. vegetable oil, obviously it&amp;#39;s better.&lt;/li&gt;
&lt;li&gt;One 340g tin of &lt;a href=&quot;https://www.coles.com.au/product/hamper-corned-beef-lite-canned-meat-340g-8281413&quot;&gt;corned beef&lt;/a&gt;. (The &amp;#39;lite&amp;#39; variety works great.)&lt;/li&gt;
&lt;li&gt;One medium onion.&lt;/li&gt;
&lt;li&gt;Three potatoes.&lt;/li&gt;
&lt;li&gt;Black pepper.&lt;/li&gt;
&lt;li&gt;An egg.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;instructions-1&quot;&gt;Instructions&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;In an 8&amp;quot; shallow pie dish, blind bake the pastry base at 180C for about 15 minutes.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-blind&quot; id=&quot;user-content-fnref-blind&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;li&gt;Boil the peeled, chopped potato. Drain.&lt;/li&gt;
&lt;li&gt;Chop the onion: half quite fine, half a little larger.&lt;/li&gt;
&lt;li&gt;Add the chopped onion, corned beef, and a good helping of black pepper to the pan with the boiled potatoes. Mash roughly.&lt;/li&gt;
&lt;li&gt;Add the beefy-potato-mush to the pie. Top with the other pastry sheet.&lt;/li&gt;
&lt;li&gt;Bake at 180C for about half an hour. I find turning the top oven element on at the beginning puffs the pastry a little better; then I switch back to regular fan oven.&lt;/li&gt;
&lt;li&gt;Near the end, beat the egg and brush over the top.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It&amp;#39;ll be thermonuclear so let it cool a touch before eating. Best with mushy peas and gravy.&lt;/p&gt;
&lt;p&gt;I think I prefer this cold the next day. But I&amp;#39;ve always been a cold-savoury person. I like the way that everything congeals. I could eat a kilo of this for lunch the day after (with a bit of hot English mustard).&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photo of a cooked pie.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0042-pie.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-butter&quot;&gt;
&lt;p&gt;At least, that&amp;#39;s how much Lucy thinks I put in. Let&amp;#39;s just say I&amp;#39;m liberal with my weights when it comes to butter. &lt;a href=&quot;#user-content-fnref-butter&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-blind&quot;&gt;
&lt;p&gt;I don&amp;#39;t have ceramic weights or anything. I find covering the pastry in baking paper -- really flatten it on, get a good seal -- does the job well enough. I remove it half way through the blind bake. &lt;a href=&quot;#user-content-fnref-blind&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0040 I went to a regional expo</title><link>https://johnnydecimal.com/22.00.0040/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0040/</guid><description>I went to the CBR expo; didn&apos;t eat Grease Monkey; and got conflicting advice. It was very regional.</description><pubDate>Thu, 09 May 2024 05:15:30 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-went-to-a-regional-expo&quot;&gt;I went to a regional expo&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;9/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I cycled up to the inaugural &lt;del&gt;Canberra&lt;/del&gt; CBR Small Business Expo today.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-cbr&quot; id=&quot;user-content-fnref-cbr&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; Here is my report.&lt;/p&gt;
&lt;h2 id=&quot;i-got-lucky-crystal-show&quot;&gt;I got lucky: crystal show!&lt;/h2&gt;
&lt;p&gt;Who doesn&amp;#39;t love sharing a conference centre with a bunch of pseudo-scientific woo.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: a printed sign for the &apos;crystal show&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.01-crystal-show-480x640.jpeg&quot; width=&quot;480&quot; height=&quot;640&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;And it turns out that the &amp;#39;Canberra Crystal Show&amp;#39; was just a guy selling a bunch
of crystals. So, a shop.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s a shame that the people who think crystals &amp;quot;...can help one attain &amp;#39;Lemurian awareness&amp;#39; -- the balancing, nurturing, loving, spiritual and sensuous consciousness...&amp;quot; have ruined what would otherwise be a perfectly lovely rock.&lt;/p&gt;
&lt;h2 id=&quot;its-all-pretty-regional&quot;&gt;It&amp;#39;s all pretty &amp;#39;regional&amp;#39;&lt;/h2&gt;
&lt;p&gt;Lucy and I have this term for things that are a bit, well ... &lt;em&gt;regional.&lt;/em&gt; You know. Not quite big-city-lights. Like, you&amp;#39;re not going to stumble across David Letterman at this thing.&lt;/p&gt;
&lt;p&gt;We find &amp;#39;regional&amp;#39; things tremendously endearing. The whole of Canberra -- the capital of Australia, I will remind you -- is pretty regional. This expo was &lt;em&gt;super&lt;/em&gt; regional.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: a CBR expo A-frame in a car park.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.02-expo-frame-480x640.jpeg&quot; width=&quot;480&quot; height=&quot;640&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt; &lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: a sign telling you where to go. It&apos;s a pretty shabby sign.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.03-expo-sign-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt; &lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: one of the conference buildings. It has signage: the word CONFERENCE. The N is wonky.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.04-conference-sign-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;i-met-the-minister-for-something&quot;&gt;I met the Minister for Something&lt;/h2&gt;
&lt;p&gt;May I present &lt;a href=&quot;https://www.parliament.act.gov.au/members/ninth-assembly-members/brindabella/gentleman-mick&quot;&gt;Mick Gentleman&lt;/a&gt;, Minister for something to do with business, they said. It&amp;#39;s not really clear what?&lt;/p&gt;
&lt;p&gt;Anyway, he was available, so he gave a little welcome speech and I asked him for a selfie. He was very obliging.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: a selfie of me and Mick.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.05-mick-gentleman-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;That&amp;#39;s the &lt;a href=&quot;https://greasys.com.au&quot;&gt;Grease Monkey&lt;/a&gt; chicken van over my shoulder.
When I first started travelling to Canberra (as a weekly
&lt;a href=&quot;https://en.wikipedia.org/wiki/Fly-in_fly-out&quot;&gt;FIFO&lt;/a&gt; from Melbourne) we&amp;#39;d go to
Grease Monkey every week.&lt;/p&gt;
&lt;p&gt;Every subsequent week we&amp;#39;d say, shall we try somewhere else tonight? And we&amp;#39;d say, yeah. Then we&amp;#39;d finish work and go to Grease Monkey.&lt;/p&gt;
&lt;p&gt;I got sushi today because if I got Grease Monkey for lunch Lucy would have given me the stink-eye when I got home.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-lucy&quot; id=&quot;user-content-fnref-lucy&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;conflicting-advice&quot;&gt;Conflicting advice&lt;/h2&gt;
&lt;p&gt;I saw a talk given by Emily of &lt;a href=&quot;https://www.ivysocial.com.au&quot;&gt;Ivy Social&lt;/a&gt;. I went in to the session thinking, &lt;em&gt;I&amp;#39;d already cancelled my Facebook account by the time Emily started high school, there&amp;#39;s nothing Emily can teach me about social media.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I was wrong. It was a great session and I wrote a bunch of stuff down.&lt;/p&gt;
&lt;p&gt;One of her key messages was: &lt;strong&gt;be authentic.&lt;/strong&gt; I really liked Emily.&lt;/p&gt;
&lt;p&gt;The next guy&amp;#39;s talk was about how small business can use AI tools. He explained how you could just give Meta AI a web page and ask it to write you a month&amp;#39;s worth of blog posts and social media.&lt;/p&gt;
&lt;p&gt;I wasn&amp;#39;t sure how authentic that was. I wanted to shout &amp;quot;nobody will read this turgid dross!&amp;quot; from the back of the room but I was eating &lt;del&gt;a fried chicken burger&lt;/del&gt; my sushi.&lt;/p&gt;
&lt;p&gt;He was one of these older blokes who can&amp;#39;t actually explain anything very well. &amp;quot;Yeah then we just load up AI and tell her what we want&amp;quot;, he said, and yes he called the AI &amp;quot;her&amp;quot;.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know who invited him. Maybe I&amp;#39;ll have a word with Mick.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Photo: the guy talking crap about AI, from the back of the room.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0040.06-ai-nonsense-guy-640x480.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;He said that &amp;#39;prompt engineers&amp;#39; get paid $300k. I really don&amp;#39;t think they do.&lt;/p&gt;
&lt;p&gt;Anyway. I really liked Emily.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-cbr&quot;&gt;
&lt;p&gt;I feel sorry for cities that don&amp;#39;t have a natural three-letter acronym. For example, I&amp;#39;m from Sunderland. What do you do with that? &lt;a href=&quot;#user-content-fnref-cbr&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-lucy&quot;&gt;
&lt;p&gt;Lucy loves Grease Monkey. I&amp;#39;d never get it without her. &lt;a href=&quot;#user-content-fnref-lucy&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0041 How I feel about AI</title><link>https://johnnydecimal.com/22.00.0041/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0041/</guid><description>A conversation with me from the late 1980s.</description><pubDate>Thu, 09 May 2024 05:15:30 GMT</pubDate><content:encoded>&lt;h1 id=&quot;how-i-feel-about-ai&quot;&gt;How I feel about AI&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;10/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;em&gt;The phone rings.&lt;/em&gt;&lt;br&gt;
&lt;em&gt;&lt;strong&gt;Hello, this is John Noble from the late 1980s.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Hi John, it&amp;#39;s you in 2024. They call us Johnny now. What are you up to?&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Oh hi. I&amp;#39;m just messing about with ELIZA on my Amiga 500. It&amp;#39;s an AI, you can ask it questions and stuff!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Cool. Honestly I thought you&amp;#39;d be a bit more surprised that I called you.&lt;/p&gt;
&lt;p&gt;Anyway, I remember &lt;a href=&quot;https://web.njit.edu/~ronkowit/eliza.html&quot;&gt;ELIZA&lt;/a&gt;. Hey I&amp;#39;ve got news. We have actual AI now!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;No way! Real AI?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Well, kinda. They call it &amp;#39;AI&amp;#39; but there&amp;#39;s nothing intelligent about it. Setting that technicality aside, it&amp;#39;s pretty amazing.&lt;/p&gt;
&lt;p&gt;You can talk to it and it&amp;#39;s basically indistinguishable from a human. You can ask it almost anything and it&amp;#39;ll give you a pretty good answer. It can translate language essentially flawlessly, instantaneously, and you can speak that text out loud and have the translation read back to you. &lt;a href=&quot;https://www1.racgp.org.au/newsgp/gp-opinion/ai-can-diagnose-just-as-well-as-human-doctors-but&quot;&gt;Some studies have shown&lt;/a&gt; that it&amp;#39;s as good as your GP in diagnosing medical issues. It&amp;#39;s being used to &lt;a href=&quot;https://www.nature.com/articles/d41586-020-00018-3&quot;&gt;design new antibacterials&lt;/a&gt;, which we really need. It can &lt;a href=&quot;https://www.apa.org/monitor/2023/07/psychology-embracing-ai&quot;&gt;make therapy more accessible&lt;/a&gt;. It can &lt;a href=&quot;https://www.edsurge.com/news/2023-08-14-a-new-way-to-personalize-learning-thanks-to-ai&quot;&gt;enhance education by personalizing learning experiences&lt;/a&gt; for students. It&amp;#39;s &lt;a href=&quot;https://www.forbes.com/sites/robertreiss/2024/04/26/transforming-the-customer-experience-into-the-human-experience/?sh=3a369f206fdc&quot;&gt;revolutionizing customer service&lt;/a&gt; with chatbots that offer instant assistance. In fields like agriculture, &lt;a href=&quot;https://www3.weforum.org/docs/WEF_Artificial_Intelligence_for_Agriculture_Innovation_2021.pdf&quot;&gt;AI-driven solutions optimize crop yields&lt;/a&gt; and reduce resource usage. It&amp;#39;s also contributing to environmental conservation through &lt;a href=&quot;https://www.sciencedaily.com/releases/2024/04/240424182455.htm&quot;&gt;predictive analytics&lt;/a&gt; to combat climate change. Additionally, &lt;a href=&quot;https://www.mckinsey.com/capabilities/operations/our-insights/adopting-ai-at-speed-and-scale-the-4ir-push-to-stay-competitive&quot;&gt;AI-driven robotics are advancing manufacturing efficiency&lt;/a&gt; and safety standards.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s so good, I wrote the first half of that paragraph myself and I asked ChatGPT to finish it off with &amp;#39;more very positive things that AI can do&amp;#39; and it did that, instantly, for free.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Wow! That is amazing. So how does everybody feel about it?&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;We all hate it.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Oh. That doesn&amp;#39;t make sense. The technology sounds extraordinary.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Yeah the technology is. But it&amp;#39;s been rammed down our throats and we&amp;#39;re all sick of it already.&lt;/p&gt;
&lt;p&gt;I use this platform called Thinkific to host my course videos. I spend hours and hours thinking about how to teach people these skills that I have; meticulously crafting these lessons so that each flows cohesively from the next; so that the message is clear, so that the viewer is taken on a journey from concept to concept.&lt;/p&gt;
&lt;p&gt;But now there&amp;#39;s this massive button that you can&amp;#39;t turn off that wants to create your course for you &amp;#39;with AI&amp;#39;. As if you, the cretin, have signed up for this teaching platform but actually you&amp;#39;ve no idea how or what to teach. It&amp;#39;s demeaning. And so the internet is being filled with this dreck, this tedious, banal slop, to the point where real human content is becoming hard to find.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Right. That seems like a sha--&lt;/strong&gt;&lt;/em&gt; And then you&amp;#39;ve got these companies that basically steal all of your data to make these new AIs. Because they need to be trained on actual human data.&lt;/p&gt;
&lt;p&gt;The problem is that we&amp;#39;ve structured society so that in order to make anything, you eventually need it to be worth hundreds of billions of dollars. So rather than having normal companies that pay normal prices for things and treat people like humans, you&amp;#39;ve got these absurd structures whose only purpose is to pay back their investors, at all costs. So they&amp;#39;ll just shaft their users in service of these billions of dollars.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;I can sense your frust--&lt;/strong&gt;&lt;/em&gt; So the whole world has been taken over by these assholes and what should have been an amazing, transformational technology -- I haven&amp;#39;t even mentioned the internet yet have I? that&amp;#39;s a whole other thing -- anyway so it feels like what should have been transformational is just being ruined because a bunch of dudes have to be absurdly, offensively rich at everyone else&amp;#39;s expense. It&amp;#39;s not like they can even spend the money, they just want it so they can say that they have it. And so everything&amp;#39;s screwed and it&amp;#39;s only getting worse.&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;Sorry. Are you still there?&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Yeah. Look, is there anything I can do from the late 1980s?&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Yeah. There are these thing called emoji. In October 2010 with the release of Unicode 6.0 there&amp;#39;s a new one: it&amp;#39;s called &amp;#39;sparkles&amp;#39;.&lt;/p&gt;
&lt;p&gt;I need you to find whoever designed that emoji and...&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0039 One star</title><link>https://johnnydecimal.com/22.00.0039/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0039/</guid><description>I propose the abolition of the simple 1-5 star system.</description><pubDate>Wed, 08 May 2024 04:33:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;one-star&quot;&gt;One star&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;8/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The workbook received a one-star review today. One star means that you couldn&amp;#39;t like a thing less. &lt;strong&gt;You couldn&amp;#39;t imagine it being worse.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The review?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Your templates won&amp;#39;t download with Mac Safari&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Our reviewer -- let&amp;#39;s call him Robert&lt;sup&gt;&lt;a href=&quot;#user-content-fn-robert&quot; id=&quot;user-content-fnref-robert&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; -- purchased the 120-page book at 11:09 and had one-starred it by 11:20 because he couldn&amp;#39;t download the templates. Which are at the back of the book.&lt;/p&gt;
&lt;p&gt;He hasn&amp;#39;t even read it.&lt;/p&gt;
&lt;h2 id=&quot;a-better-ratings-system&quot;&gt;A better ratings system&lt;/h2&gt;
&lt;p&gt;Years ago, eBay removed the ability to negatively review a purchase. Then YouTube removed the display of &amp;#39;thumbs-downs&amp;#39; on a video. (You can still mash the thumbs-down button if it makes you feel better. I hope it doesn&amp;#39;t.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I propose the abolition of the simple 1-5 star system. It serves nobody well.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Instead, you should have to click a link that describes, in words, how you feel. Here&amp;#39;s how they translate.&lt;/p&gt;
&lt;h3 id=&quot;️&quot;&gt;&lt;code&gt;⭐️&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;I could not imagine how this product could possibly be worse. Everything about it is pure crap. It has no redeeming qualities.&lt;/p&gt;
&lt;p&gt;I wish a pox on the creator and their family. If I ever meet them I&amp;#39;ll spit on their shoe. I hate myself for spending money on it.&lt;/p&gt;
&lt;h3 id=&quot;️-1&quot;&gt;&lt;code&gt;⭐️⭐&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;This product is pretty bad, but is nevertheless serviceably useful. I&amp;#39;ll use it begrudgingly if I need to, until it breaks, at which point I&amp;#39;ll find a better model to replace it.&lt;/p&gt;
&lt;h3 id=&quot;️️️&quot;&gt;&lt;code&gt;⭐️⭐️⭐️&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;This product does what I expected it to do. Not much more, not much less.&lt;/p&gt;
&lt;p&gt;If every product was like this life would be like living in Zürich: banal, but tolerable.&lt;/p&gt;
&lt;h3 id=&quot;️️️️&quot;&gt;&lt;code&gt;⭐⭐️⭐️⭐️️&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;This product is pretty good! It&amp;#39;s about how I expect most products to be.&lt;/p&gt;
&lt;p&gt;If I made a product and it was like this I&amp;#39;d be pretty happy with myself, but I&amp;#39;d strive to do better next time.&lt;/p&gt;
&lt;h3 id=&quot;️️️️️&quot;&gt;&lt;code&gt;⭐️⭐️⭐️⭐️⭐️&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;The phone rings&lt;/em&gt;&lt;br&gt;
&amp;quot;Hello?&amp;quot;&lt;br&gt;
&amp;quot;Hey Alex, it&amp;#39;s Johnny. You need to come over here and see this thing. Now.&amp;quot;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-robert&quot;&gt;
&lt;p&gt;Because that&amp;#39;s his name. &lt;a href=&quot;#user-content-fnref-robert&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0038 More than 100 customers?</title><link>https://johnnydecimal.com/22.00.0038/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0038/</guid><description>Discord user PMunch asks a structural question. I answer with a video.</description><pubDate>Tue, 07 May 2024 08:36:47 GMT</pubDate><content:encoded>&lt;h1 id=&quot;more-than-100-customers&quot;&gt;More than 100 customers?&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;7/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WebvlogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;User &lt;code&gt;PMunch&lt;/code&gt; &lt;a href=&quot;https://discord.com/channels/822215537589354566/822216448268697698/1235936521652277370&quot;&gt;asks on Discord&lt;/a&gt;:&lt;sup&gt;&lt;a href=&quot;#user-content-fn-discord&quot; id=&quot;user-content-fnref-discord&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Basically I&amp;#39;m worried about space&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There&amp;#39;s more, but you can read it in the Discord thread. In summary: &lt;strong&gt;we have more than 100 customers. How does that work?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I never pretend that Johnny.Decimal is perfect, and one of the ways that the standard implementation &amp;#39;fails&amp;#39; is when you have more than &lt;em&gt;n&lt;/em&gt; number of something. More than 10 &lt;em&gt;categories of thing,&lt;/em&gt; for example.&lt;/p&gt;
&lt;p&gt;Or more than 100 of pretty much anything. One of my design principles is that you &lt;em&gt;don&amp;#39;t&lt;/em&gt; have more than 100 of anything.&lt;/p&gt;
&lt;p&gt;So, we need to adapt. What I&amp;#39;ll do eventually is document these patterns formally, so I can give them names and refer to them.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve done that for the first pattern I talk about: &lt;a href=&quot;https://johnnydecimal.com/13.01/&quot;&gt;multiple systems [13.01]&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Until then, here&amp;#39;s me thinking out loud. I&amp;#39;d like to do more of these: maybe one a week? &lt;a href=&quot;https://johnnydecimal.com/21.01/&quot;&gt;Send me&lt;/a&gt; your questions.&lt;/p&gt;
  
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-discord&quot;&gt;
&lt;p&gt;&lt;a href=&quot;http://discord.gg/KYWzAJhmPv&quot;&gt;Invitation&lt;/a&gt; if you need it. &lt;a href=&quot;#user-content-fnref-discord&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0037 Perfect albums</title><link>https://johnnydecimal.com/22.00.0037/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0037/</guid><description>What&apos;s the perfect album? I submit two.</description><pubDate>Mon, 06 May 2024 06:19:43 GMT</pubDate><content:encoded>&lt;h1 id=&quot;perfect-albums&quot;&gt;Perfect albums&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;6/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;On &lt;a href=&quot;https://listen.hemisphericviews.com/110&quot;&gt;this week&amp;#39;s Hemispheric Views&lt;/a&gt; the gents &lt;a href=&quot;https://johnnydecimal.com/22.00.0018/&quot;&gt;once again&lt;/a&gt; cause the community to respond. This time: what&amp;#39;s the &lt;em&gt;perfect&lt;/em&gt; album?&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll submit two.&lt;/p&gt;
&lt;h2 id=&quot;dire-straits-brothers-in-arms-1985&quot;&gt;Dire Straits&amp;#39; &lt;em&gt;Brothers in Arms&lt;/em&gt; (1985)&lt;/h2&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Brothers in Arms album cover.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0037.01-direstraits-brothersinarms-620x620@2x.png&quot; width=&quot;310&quot; height=&quot;310&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;&lt;a href=&quot;https://songwhip.com/dire-straits/brothers-in-arms-remastered-1996&quot;&gt;Links to listen on all the
services&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This album arguably got me in to music. I heard &lt;em&gt;Walk of Life&lt;/em&gt; on Newcastle&amp;#39;s Metro 97.1FM&lt;sup&gt;&lt;a href=&quot;#user-content-fn-rebrand&quot; id=&quot;user-content-fnref-rebrand&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; somewhere in the late 80s. I would have been about 14.&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t know what it was -- sacrilege! Dire Straits are from Newcastle, total local heroes -- so I called the station. The lady told me, and that was it. Now 14-year-old me likes music.&lt;/p&gt;
&lt;p&gt;Yeah yeah so this is dad rock. It&amp;#39;s an absolute classic though, nothing wrong from start to end. And it&amp;#39;s stood the test of time. We still listen to it, often.&lt;/p&gt;
&lt;p&gt;Fun fact: this was the first ever CD with the &lt;code&gt;DDD&lt;/code&gt; mastering symbol on the back. The three letters were either &lt;code&gt;A&lt;/code&gt; or &lt;code&gt;D&lt;/code&gt; for analog &amp;amp; digital and they indicated how the album had been recorded, mixed, and mastered.&lt;/p&gt;
&lt;p&gt;Most CDs were &lt;code&gt;AAD&lt;/code&gt;, very few were &lt;code&gt;ADD&lt;/code&gt;, and this was the first &lt;code&gt;DDD&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&quot;if-i-only-listen-to-one-track-it-should-be&quot;&gt;If I only listen to one track it should be...&lt;/h3&gt;
&lt;p&gt;The title track, &lt;a href=&quot;https://songwhip.com/dire-straits/brothers-in-arms&quot;&gt;#9 &lt;em&gt;Brothers in Arms&lt;/em&gt;&lt;/a&gt;. If it doesn&amp;#39;t melt your heart you might not have one.&lt;/p&gt;
&lt;h2 id=&quot;destroyers-kaputt-2011&quot;&gt;Destroyer&amp;#39;s &lt;em&gt;Kaputt&lt;/em&gt; (2011)&lt;/h2&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The Kaputt album cover.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0037.02-destroyer-kaputt-620x620@2x.png&quot; width=&quot;310&quot; height=&quot;310&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;&lt;a href=&quot;https://www.cookiemelbourne.com.au&quot;&gt;Cookie&lt;/a&gt; rooftop, Melbourne. 2011 or thereabouts. A sunny afternoon with friends. The DJ plays the track &lt;em&gt;Kaputt,&lt;/em&gt; I am instantly in love, I ask them what it is, my life is changed.&lt;/p&gt;
&lt;p&gt;And I really mean changed. This album set my musical taste on a whole new trajectory. I discovered a love for, what? Shoegazey-lofi-jazzy-soundscapey-lushness? I dunno, this isn&amp;#39;t a Pitchfork review.&lt;/p&gt;
&lt;p&gt;Just listen to the album. And if you like it, you should immediately then listen to The Radio Dept.&amp;#39;s &lt;a href=&quot;https://songwhip.com/the-radio-dept/clingingtoascheme&quot;&gt;Clinging to a Scheme&lt;/a&gt;, which could easily be on this page but I have actual work to do so a link&amp;#39;s all you&amp;#39;re getting.&lt;/p&gt;
&lt;p&gt;But really, listen to that as well. The two are partners in my mind. One always follows the other.&lt;/p&gt;
&lt;h3 id=&quot;if-i-only-listen-to-one-track-it-should-be-1&quot;&gt;If I only listen to one track it should be...&lt;/h3&gt;
&lt;p&gt;The title track, &lt;a href=&quot;https://songwhip.com/destroyer/kaputt-2&quot;&gt;#6 &lt;em&gt;Kaputt&lt;/em&gt;&lt;/a&gt;. I am in awe of talent like this.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-rebrand&quot;&gt;
&lt;p&gt;I see &lt;a href=&quot;https://www.chroniclelive.co.uk/news/history/gallery/metro-radio-rebranded-after-half-28479420&quot;&gt;the cretins rebranded&lt;/a&gt; to &lt;em&gt;Hits Radio North East,&lt;/em&gt; which I refuse to link to. &lt;a href=&quot;#user-content-fnref-rebrand&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0036 Quitaversary</title><link>https://johnnydecimal.com/22.00.0036/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0036/</guid><description>One year ago today, I decided to quit my job.</description><pubDate>Sun, 05 May 2024 01:20:55 GMT</pubDate><content:encoded>&lt;h1 id=&quot;quitaversary&quot;&gt;Quitaversary&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;5/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;On Sunday 7th May 2023 I went to bed. Lucy was already there. I remember lying silently for a few minutes. Then I asked her a question.&lt;/p&gt;
&lt;p&gt;&amp;quot;Can I quit my job tomorrow?&amp;quot;&lt;/p&gt;
&lt;h2 id=&quot;i-was-an-it-consultant&quot;&gt;I Was An IT Consultant&lt;/h2&gt;
&lt;p&gt;That felt like a confession worthy of title case. All my life I&amp;#39;ve been an IT Consultant. Not a bad way to make a living, and &lt;a href=&quot;https://bookshop.org/p/books/so-good-they-can-t-ignore-you-why-skills-trump-passion-in-the-quest-for-work-you-love-cal-newport/15549573?ean=9781455509126&quot;&gt;like Cal Newport says&lt;/a&gt;: do what you&amp;#39;re good at. I was good at it.&lt;/p&gt;
&lt;p&gt;And some of the jobs were great. Maybe I&amp;#39;ll write about some of my past jobs one day. But the job I had last May was &lt;em&gt;not&lt;/em&gt; great.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A cartoon. It&apos;s very sombre; grey, brown tones. There&apos;s an office block with dozens of windows. In one of them, Johnny stares out, clearly despondent, trying to escape. (Artist: Lucy)&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0036.01-johnny-at-work-600x814.jpg&quot; width=&quot;300&quot; height=&quot;407&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Johnny at his old job&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;It was so not-great, I felt bad taking the money. It was so &lt;em&gt;so&lt;/em&gt; not-great, I felt like it was damaging my reputation. And I can&amp;#39;t just &amp;#39;turn up&amp;#39; at work: if you&amp;#39;re paying me to do a job, I am going to do a stellar job. On this project, that really just wasn&amp;#39;t possible.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The state of modern IT infrastructure projects isn&amp;#39;t the point of this post. Let me know if you want to hear me rant about that later, though. I would be &lt;strong&gt;hap-py&lt;/strong&gt; to do that.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;At the same time, &lt;a href=&quot;https://forum.johnnydecimal.com&quot;&gt;my little forum&lt;/a&gt; was starting to see a bit of action. The sort of thing that makes you think, huh, have I got &lt;em&gt;a thing?&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&quot;when-youre-46-and-you-have-a-thing-its-time-to-do-something-with-that-thing&quot;&gt;When you&amp;#39;re 46(?), and you have &lt;em&gt;a thing,&lt;/em&gt; it&amp;#39;s time to do something with that thing&lt;/h2&gt;
&lt;p&gt;46? 47? Honestly when you get to this age you stop counting. Late 40s.&lt;/p&gt;
&lt;p&gt;So when you&amp;#39;re in your late 40s and all you&amp;#39;ve ever wanted to do is not work for someone else, and you realise that you&amp;#39;ve got this &lt;em&gt;thing,&lt;/em&gt; then it might be time to do something with that thing.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve looked for &amp;#39;the thing&amp;#39; for years. Friends and I have had weekly meetings where we try to come up with &amp;#39;the thing&amp;#39;. The problem is that I have &lt;strong&gt;absolutely no desire whatsoever&lt;/strong&gt; to be the boss of a big thing. The CEO of some company. Responsibility. Power. Staff. Stress.&lt;/p&gt;
&lt;p&gt;I just don&amp;#39;t care. I&amp;#39;m not that guy. I want what they sometimes disparagingly call a &amp;#39;lifestyle business&amp;#39;. Something that pays the bills, probably won&amp;#39;t make you rich, but doesn&amp;#39;t consume your entire life.&lt;/p&gt;
&lt;p&gt;Well here I am with this realisation. This little website that I&amp;#39;ve kept going for &lt;a href=&quot;https://web.archive.org/web/20160110022633/http://johnnydecimal.com/&quot;&gt;about a decade now&lt;/a&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-whois&quot; id=&quot;user-content-fnref-whois&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; &lt;em&gt;is my thing.&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&quot;anyway-so-i-say-to-lucy-can-i-quit-my-job&quot;&gt;Anyway so I say to Lucy, &amp;quot;can I quit my job?&amp;quot;&lt;/h2&gt;
&lt;p&gt;And after a long chat discussing the pros (I don&amp;#39;t go to that place any more) and the cons (food costs money) we decide, yeah, I&amp;#39;ll quit.[^notaquitter] To spend time on the thing.&lt;/p&gt;
&lt;p&gt;It happened fast.&lt;/p&gt;
&lt;p&gt;I told my consulting company&lt;sup&gt;&lt;a href=&quot;#user-content-fn-smallco&quot; id=&quot;user-content-fnref-smallco&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; on Monday morning. Two weeks notice.&lt;/p&gt;
&lt;p&gt;They told &amp;#39;the customer&amp;#39; -- whose project was the shambles to be escaped -- on Monday afternoon.&lt;/p&gt;
&lt;p&gt;On Tuesday morning my account manager gave me a little &lt;em&gt;shush and come with me&lt;/em&gt; wave from down the corridor. We went downstairs.&lt;/p&gt;
&lt;p&gt;&amp;quot;Alan is having you offboarded&amp;quot;, he tells me. Alan&lt;sup&gt;&lt;a href=&quot;#user-content-fn-alan&quot; id=&quot;user-content-fnref-alan&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; was the Program Director. He wasn&amp;#39;t there; he hid somewhere else that day. (I never saw him again.)&lt;/p&gt;
&lt;p&gt;And sure enough, by midday on Tuesday I had handed back the customer&amp;#39;s laptop and access card. So now I find myself at my SmallConsultingCo and we&amp;#39;re all wondering what I do for the next 8½ days.&lt;/p&gt;
&lt;p&gt;&amp;quot;Rather than me sit here and pretend to work,&amp;quot; I say, &amp;quot;why don&amp;#39;t you pay me out until the end of this week. And I&amp;#39;ll go home now, and we&amp;#39;re done.&amp;quot;&lt;/p&gt;
&lt;p&gt;And they say yes.&lt;/p&gt;
&lt;p&gt;So at about 3pm on Tuesday I walk in to the garden. Lucy&amp;#39;s there with the chickens. &amp;quot;I&amp;#39;m finished&amp;quot;, I say. &amp;quot;I&amp;#39;m done.&amp;quot;&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Another cartoon. This one is bright and cheerful. It shows Johnny in a garden with flowers and chickens.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0036.02-johnny-decimal-600x814.jpg&quot; width=&quot;300&quot; height=&quot;407&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Johnny in the garden with chickens&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;we-had-no-plan-and-so-for-a-while-i-used-microsoft-teams&quot;&gt;We had no plan and so for a while I used Microsoft Teams&lt;/h2&gt;
&lt;p&gt;A sentence I hoped never to write.&lt;/p&gt;
&lt;p&gt;Given the disaster I had just witnessed, &lt;em&gt;surely,&lt;/em&gt; I thought, &lt;em&gt;helping large organisations be more organised is the way.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;And so I started looking at developing a Teams app. Now I don&amp;#39;t know if you&amp;#39;ve ever looked at developing a Teams app.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Do not.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The state of Microsoft Teams development isn&amp;#39;t the point of this post. Let me know if you want to hear me rant about that later, though. I would be &lt;strong&gt;hap-py&lt;/strong&gt; to do that.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;The state of disorganisation inside &amp;#39;the enterprise&amp;#39; -- the pure raw chaos that is today&amp;#39;s workplace, the sheer immensity of the challenge that would be making it sane again, the almost incomprehensible extent to which it&amp;#39;s broken and the fact that the people ostensibly in charge of your organisation&amp;#39;s data have &lt;strong&gt;no idea&lt;/strong&gt; what to do and have essentially given up -- isn&amp;#39;t the point of this post. Let me know if you want to hear me rant about that later, though. I would be &lt;strong&gt;hap-py&lt;/strong&gt; to do that.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This feels like a natural place to end. Because the next part of this story is where we &lt;em&gt;did&lt;/em&gt; find a thing to make that &lt;em&gt;was&lt;/em&gt; useful, and I&amp;#39;ll tell that another day if I run out of more interesting things to write.&lt;/p&gt;
&lt;h1 id=&quot;suffice-to-say&quot;&gt;Suffice to say, 🥳&lt;/h1&gt;
&lt;p&gt;It was one of the best decisions of my life.&lt;/p&gt;
&lt;p&gt;Thank you. Because we can afford to buy food because of your support. That sounds cheesy but it&amp;#39;s totally true. Whether you&amp;#39;ve bought one of my things or just spread the word or just been a friend online or &lt;em&gt;whatever:&lt;/em&gt; you make this possible.&lt;/p&gt;
&lt;p&gt;This is my job now. One year ago I couldn&amp;#39;t have imagined it.[^notaquitter]: By the way, I&amp;#39;ve quit &lt;em&gt;very&lt;/em&gt; few jobs. I believe that if you say you&amp;#39;ll do a thing, you should stay and do the thing. In this case, there was no thing worth completing.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-whois&quot;&gt;
&lt;p&gt;That&amp;#39;s the earliest scrape that the archive has, but the site was &lt;a href=&quot;https://www.whois.com/whois/johnnydecimal.com&quot;&gt;registered on 2012-01-23&lt;/a&gt;. &lt;a href=&quot;#user-content-fnref-whois&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-smallco&quot;&gt;
&lt;p&gt;A really nice little crew; this thing wasn&amp;#39;t their fault. &lt;a href=&quot;#user-content-fnref-smallco&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-alan&quot;&gt;
&lt;p&gt;Names have been changed to protect the incompetent. &lt;a href=&quot;#user-content-fnref-alan&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0035 Floors chores</title><link>https://johnnydecimal.com/22.00.0035/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0035/</guid><description>On the power of routines. Saturday is &apos;floors chores&apos; in this house, no matter what.</description><pubDate>Sat, 04 May 2024 04:32:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;floors-chores&quot;&gt;Floors chores&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;4/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;On Saturday morning, I dust and vacuum the house.&lt;/p&gt;
&lt;p&gt;Without fail. Every week. For &lt;em&gt;years&lt;/em&gt; now.&lt;/p&gt;
&lt;p&gt;We call it the &amp;#39;floors chores&amp;#39; and it&amp;#39;s just one of my jobs. I&amp;#39;ve come to love it: we eat breakfast,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-eggs&quot; id=&quot;user-content-fnref-eggs&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; I clean the kitchen, then I put on my noise cancelling AirPods and vacuum while listening to &lt;a href=&quot;https://atp.fm&quot;&gt;ATP&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Routines are powerful but they&amp;#39;re hard to establish. We treasure the floors chores because it means our house is always clean. By now it&amp;#39;s effortless.&lt;/p&gt;
&lt;p&gt;It would be ideal if we could reach this state with our work. In his latest book &lt;em&gt;Slow Productivity,&lt;/em&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-newport&quot; id=&quot;user-content-fnref-newport&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; Cal Newport advocates for the formation of rituals:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;...form your own personalized rituals around the work you find most important.&amp;quot;&lt;br&gt;
– &lt;em&gt;Slow Productivity&lt;/em&gt;, p. 163.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;strong&gt;So why are they so hard to establish?&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;picture-your-work-day&quot;&gt;Picture your work day&lt;/h2&gt;
&lt;p&gt;And by &amp;#39;work&amp;#39; I just mean whatever it is that you want to get done.&lt;/p&gt;
&lt;p&gt;If we assign shapes and colours to tasks, where shapes are analagous to &lt;strong&gt;categories&lt;/strong&gt; and colours to &lt;strong&gt;areas&lt;/strong&gt; (in Johnny.Decimal parlance), our days mostly look like this.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Random shapes - boxes, blocks, triangles, circles - in various colours. I did this in a word processor so they&apos;ve just been typed out; two lines, going from left to right. There&apos;s no order to the shapes or the colours.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0035.01-shapes-chaos-1248x214@2x.png&quot; width=&quot;600&quot; height=&quot;103&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;The types of work you do flow like words on the page, from left to right, then on to the next row.&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;p&gt;Chaos! None the wonder you can&amp;#39;t concentrate. Every switch is a switch in mental state; in the knowledge that you&amp;#39;re holding in working memory; in the files and apps you need open to perform the task.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This is not the best way to work.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s reimagine. Here&amp;#39;s the same shapes, rearranged. And let&amp;#39;s introduce some line breaks; perhaps they&amp;#39;re &lt;em&gt;actual&lt;/em&gt; breaks in your day?&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The same shapes, but rearranged so that each line is now a single colour. On each line, the same shapes have been grouped together. Each line starts with the larger, &apos;heavier&apos; shapes, and tapers off to the lighter ones.&quot; class=&quot; astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0035.02-shapes-calm-690x488@2x.png&quot; width=&quot;332&quot; height=&quot;235&quot;&gt; &lt;figcaption class=&quot;astro-3zw7efbj&quot;&gt;Similar shapes have been moved together, and we&amp;#39;ve moved all of the &amp;#39;heavy&amp;#39; stuff to the front; maybe it&amp;#39;s harder work that you should do while your brain is fresh?&lt;/figcaption&gt; &lt;/picture&gt; 
&lt;h2 id=&quot;work-in-categories&quot;&gt;Work in categories&lt;/h2&gt;
&lt;p&gt;I think we usually behave like the first diagram because we haven&amp;#39;t sufficiently categorised our work to &lt;em&gt;enable&lt;/em&gt; us to behave like the second.&lt;/p&gt;
&lt;p&gt;And this calls back to &lt;a href=&quot;https://johnnydecimal.com/22.00.0034/&quot;&gt;yesterday&amp;#39;s post&lt;/a&gt; and my desire to eliminate &amp;#39;due dates&amp;#39;.&lt;/p&gt;
&lt;p&gt;Imagine establishing a routine such that you know, as sure as I know that I&amp;#39;ll do the floors chores next Saturday morning, that on the first Sunday morning of the month you tackle all of those heavy blue boxes.&lt;/p&gt;
&lt;p&gt;And say they represent all of your home finances: paying your bills, checking account balances, updating your subscriptions, transferring your health insurance, finding a better savings account.&lt;/p&gt;
&lt;p&gt;If you &lt;strong&gt;knew&lt;/strong&gt; that you did that every month, &lt;strong&gt;you&amp;#39;d never need to be reminded to do it.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;And you&amp;#39;d never get that slighly panicked feeling: &lt;em&gt;oh crap, did I forget to pay the credit card this month?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;How nice might that be?&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-eggs&quot;&gt;
&lt;p&gt;Usually (but not always) a boiled egg with soldiers. &lt;a href=&quot;#user-content-fnref-eggs&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-newport&quot;&gt;
&lt;p&gt;Review to follow. &lt;a href=&quot;#user-content-fnref-newport&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0034 The classes of to-do</title><link>https://johnnydecimal.com/22.00.0034/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0034/</guid><description>As in, what _types_ of to-do are there.</description><pubDate>Fri, 03 May 2024 01:15:53 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-classes-of-to-do&quot;&gt;The classes of to-do&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;3/31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As in, what &lt;em&gt;types&lt;/em&gt; of to-do are there.&lt;/p&gt;
&lt;h2 id=&quot;observations&quot;&gt;Observations&lt;/h2&gt;
&lt;p&gt;This text should be considered an RFC, v0.1. In non-nerd terms: I&amp;#39;d like your feedback, and this is a very early draft.&lt;/p&gt;
&lt;p&gt;I would potentially like to define these &amp;#39;classes of to-do&amp;#39; as a standard in the context of Johnny.Decimal.&lt;/p&gt;
&lt;p&gt;We use terms MUST, SHOULD, etc. as per &lt;a href=&quot;https://www.rfc-editor.org/rfc/rfc2119&quot;&gt;RFC2119&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We classify these by priority: 4 is lower than 1. This aligns with most service desk ticketing systems: a &amp;#39;priority 1&amp;#39; is the highest priority incident.&lt;/p&gt;
&lt;p&gt;If I say &amp;#39;we&amp;#39;ll discuss this later&amp;#39; I might mean in a later article.&lt;/p&gt;
&lt;h2 id=&quot;priority-4-p4-somedaymaybetickler-file&quot;&gt;Priority 4 (&lt;code&gt;P4&lt;/code&gt;): someday/maybe/&amp;#39;tickler file&amp;#39;&lt;/h2&gt;
&lt;p&gt;These things aren&amp;#39;t really &amp;#39;to-dos&amp;#39; at all. They&amp;#39;re ideas of things that you might like to do, &lt;em&gt;maybe,&lt;/em&gt; some day.&lt;/p&gt;
&lt;p&gt;Sometimes these are unrealistic. The other day I wrote a task, &amp;#39;buy an old Volvo&amp;#39;. I&amp;#39;m almost certainly never going to buy an old Volvo, and I&amp;#39;m certainly not going to buy one in the next five years.&lt;/p&gt;
&lt;p&gt;So why even write this down? Because it forms part of your story. These are the things that tell you who you want to be. Remembering them guides you through life. They keep you on some sort of track.&lt;/p&gt;
&lt;p&gt;They&amp;#39;re good, in other words; don&amp;#39;t stop writing them down. You will actually do some vanishingly small percentage of these things, and it doesn&amp;#39;t matter if you don&amp;#39;t do the rest.&lt;/p&gt;
&lt;p&gt;But you MUST NOT allow these &amp;#39;tasks&amp;#39; to clutter the things you actually need to do. They MUST, therefore, be in a separate task system.&lt;/p&gt;
&lt;p&gt;And I don&amp;#39;t mean that they should be somehow tagged-flagged-foldered-filtered away from your actual to-dos while being stored &lt;em&gt;in the same task system.&lt;/em&gt; No. They MUST be kept &lt;em&gt;in a separate system.&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Definition: a &amp;#39;task system&amp;#39; is an isolated system where one or more tasks -- i.e. to-do-like items -- is kept. &amp;#39;Post-it notes&amp;#39; is one task system. &amp;#39;Apple Reminders&amp;#39; is another. &amp;#39;A text file&amp;#39; is another.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We use the term &amp;#39;task system&amp;#39; vs. &amp;#39;to-do system&amp;#39; to move away from the term &amp;#39;to-do&amp;#39;. Not everything you write down is something you must, one day, do.&lt;/p&gt;
&lt;h2 id=&quot;p3-should-donice-to-do&quot;&gt;&lt;code&gt;P3&lt;/code&gt;: Should do/nice to do&lt;/h2&gt;
&lt;p&gt;You should eat more vegetables. You should floss. You should update your blog software more frequently. You should cancel that subscription that you don&amp;#39;t use. You should prepare that recipe that you saved two years ago. You should buy someone flowers when it isn&amp;#39;t their birthday.&lt;/p&gt;
&lt;p&gt;But if you do not, nothing catastrophic happens. Life goes on -- with inconveniences or minor costs that your inaction has introduced, perhaps -- but, nevertheless.&lt;/p&gt;
&lt;p&gt;These things &lt;em&gt;are&lt;/em&gt; actions: they are things &amp;#39;to do&amp;#39;. You should do them. So they SHOULD exist in your primary task system.&lt;/p&gt;
&lt;p&gt;However, they MUST NOT ever nag you with an alert or alarm. If a &amp;#39;should do&amp;#39; task interrupts your focus, your system is broken.&lt;/p&gt;
&lt;p&gt;Therefore these tasks MUST NOT have a &amp;#39;due date&amp;#39;. They&amp;#39;re not allowed to make you feel bad if you don&amp;#39;t do them. &lt;em&gt;You&lt;/em&gt; look at them on &lt;em&gt;your&lt;/em&gt; schedule.&lt;/p&gt;
&lt;h3 id=&quot;so-how-does-this-stuff-ever-get-done&quot;&gt;So how does this stuff ever get done?&lt;/h3&gt;
&lt;p&gt;P3 tasks are quality-of-life improvements. If you did more of them, life would be incrementally better.&lt;/p&gt;
&lt;p&gt;The problem with our current handling of P3 tasks is that they pop up and interrupt us &lt;em&gt;all the time,&lt;/em&gt; while we&amp;#39;re really not in the mood to do them. So if we did everything that our task manager told us to do, when it told us to do it, we&amp;#39;d be all over the place. It&amp;#39;d be a productivity shambles.&lt;/p&gt;
&lt;p&gt;I think we know this, if only subconsciously. That&amp;#39;s why we &lt;em&gt;don&amp;#39;t&lt;/em&gt; do so many of these things when previous-us decided that we should.&lt;/p&gt;
&lt;p&gt;The other problem is that it&amp;#39;s easily possible to have &lt;em&gt;hundreds&lt;/em&gt; of P3 tasks. They can quickly overwhelm the rest of your system.&lt;/p&gt;
&lt;p&gt;The solution is to implement strategies to deal with this problem, which we&amp;#39;ll get to later.&lt;/p&gt;
&lt;h3 id=&quot;project-subtasks&quot;&gt;Project subtasks&lt;/h3&gt;
&lt;p&gt;Note that many if not most subtasks that are in service of the completion of a larger project are &amp;#39;should do&amp;#39; tasks. The vast majority of your work does not deserve the privilege of interrupting you while you are doing something else.&lt;/p&gt;
&lt;p&gt;You know it&amp;#39;s the job. You know you need to do it: writing it down is more of a memory/planning thing than a reminder/nagging thing.&lt;/p&gt;
&lt;h2 id=&quot;p2-to-do&quot;&gt;&lt;code&gt;P2&lt;/code&gt;: To do&lt;/h2&gt;
&lt;p&gt;Now we&amp;#39;re in to the stuff that you really actually should do. Not kidding.&lt;/p&gt;
&lt;p&gt;Pay your rent: you get kicked out, eventually, if you don&amp;#39;t. Cancel an annual subscription that will renew for $500. Submit your timesheets before 2pm on Friday or you eventually get a formal warning. Renew your driver&amp;#39;s licence or you&amp;#39;re catching the bus.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-bus&quot; id=&quot;user-content-fnref-bus&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;These tasks SHOULD live in the same task system as your P3 tasks. Because as we&amp;#39;ll see, P1 tasks SHOULD &lt;em&gt;also&lt;/em&gt; live in their own system, and if P3 and P2 don&amp;#39;t co-exist then we&amp;#39;ve got 4 task systems and that&amp;#39;s obviously silly.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ll summarise all of this with a table, later.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;P2 tasks are essentially P3 tasks but in this case you MAY set a due date. Although with good processes and habits, which we&amp;#39;ll discuss later, I think we can mostly avoid due dates.&lt;/p&gt;
&lt;p&gt;Because the problem is the same as we described just above: every interruption knocks you off what you were doing. If we can design a system with very few interruptions -- one where &lt;em&gt;we&lt;/em&gt; choose what to do, and when to do it, and where we trust ourselves to actually do that -- then I think peace and harmony will prevail.&lt;/p&gt;
&lt;h2 id=&quot;p1-catastrophic-if-not-done&quot;&gt;&lt;code&gt;P1&lt;/code&gt;: Catastrophic if not done&lt;/h2&gt;
&lt;p&gt;The highest priority task is that which results in catastrophe if not done.&lt;/p&gt;
&lt;p&gt;When next door was on holiday, I fed their cat twice a day. If I don&amp;#39;t feed the cat, it dies.&lt;/p&gt;
&lt;p&gt;When I put bread in the oven, if I don&amp;#39;t take it out approximately 25 minutes later, a day&amp;#39;s effort is wasted, the house fills with acrid smoke, and in the worst case it sets on fire.&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t buy tickets within an hour of them going on sale, they sell out.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a subtle subclass of P1 tasks that might be useful:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Completion-catastrophic: the cat needs to be fed twice a day but it isn&amp;#39;t &lt;em&gt;really&lt;/em&gt; critical when. Morning and evening will do.&lt;/li&gt;
&lt;li&gt;Time-catastrophic: the bread really does have to come out in 25 minutes.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I believe that this class of tasks SHOULD exist in their own task system. We naturally do this anyway: we set a timer on our phone or we ask our home assistant to &amp;#39;remind me in 20 minutes&amp;#39;. We write something on a sticky note and leave it in a prominent place.&lt;/p&gt;
&lt;p&gt;We&amp;#39;d never trust these things to our main task system because we know they&amp;#39;d get lost there.&lt;/p&gt;
&lt;p&gt;Also I think having a separate place for these items really drives home their importance. When you see a notification from &lt;em&gt;that app,&lt;/em&gt; you know it&amp;#39;s time to stop messing around. When your phone alarm goes off and it says &amp;#39;take bread out of oven&amp;#39; you never dismiss it and keep doing what you were doing. You &lt;em&gt;know&lt;/em&gt; it needs to be done &lt;em&gt;now.&lt;/em&gt;# Scheduled things&lt;/p&gt;
&lt;p&gt;Orthogonal to this -- I&amp;#39;ll draw this up as a diagram later -- are things that are scheduled.&lt;/p&gt;
&lt;p&gt;It should go without saying that something that is scheduled -- a meeting, an appointment -- must happen &lt;em&gt;at that time.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Here I consider a &amp;#39;scheduled&amp;#39; task to involve someone else who isn&amp;#39;t you. They often require you to be somewhere, even if that somewhere is virtual, e.g. a Zoom meeting.&lt;/p&gt;
&lt;p&gt;You&amp;#39;d be an ass if you just didn&amp;#39;t turn up to stuff when you said you would.&lt;/p&gt;
&lt;p&gt;Scheduling your &lt;em&gt;own&lt;/em&gt; time is a separate thing which we will discuss later.These thoughs form the basis of how we&amp;#39;ll be re-structuring Lucy&amp;#39;s life in the workshop. There&amp;#39;ll be more on this topic in future posts.&lt;/p&gt;
&lt;p&gt;I&amp;#39;d love your feedback. &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0034-the-classes-of-to-do/1420&quot;&gt;This forum post&lt;/a&gt; is probably the best place.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-bus&quot;&gt;
&lt;p&gt;This one might be a P1 if you live somewhere rural and you absolutely depend on your car for transport. All of these scenarios are situation-dependent. &lt;a href=&quot;#user-content-fnref-bus&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0033 I love pencils</title><link>https://johnnydecimal.com/22.00.0033/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0033/</guid><description>I fell in love with writing again after discovering that I much prefer pencils over pens.</description><pubDate>Wed, 01 May 2024 23:19:31 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-love-pencils&quot;&gt;I love pencils&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This post is the second of at least 31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I have a gorgeous fountain pen: a &lt;a href=&quot;https://www.jetpens.com/Pilot-Vanishing-Point-Fountain-Pen-Black-Matte-18k-Fine-Nib/pd/7246&quot;&gt;Pilot &amp;#39;Vanishing Point&amp;#39;&lt;/a&gt;. Mine&amp;#39;s black and has developed a Leica-like patina such that the underlying brass shows through.&lt;/p&gt;
&lt;p&gt;I love it. And I never use it. Because I rediscovered pencils.&lt;/p&gt;
&lt;p&gt;Pencils are easier. They&amp;#39;re more adaptable. They smell better and I think they&amp;#39;re prettier. They&amp;#39;re cheaper; you can have a collection of pencils. I have at least 30, mostly sourced from the wonderful (Australian) site &lt;a href=&quot;https://pencilly.com.au&quot;&gt;Pencilly&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I spent a hundred-ish dollars on my ridiculous pencil collection. About the price of one fountain pen.&lt;/p&gt;
&lt;p&gt;Pencils are objectively better than pens. Fight me.&lt;/p&gt;
&lt;h2 id=&quot;a-few-of-my-favourites&quot;&gt;A few of my favourites&lt;/h2&gt;
&lt;p&gt;Here&amp;#39;s the daily drivers.&lt;/p&gt;
&lt;h3 id=&quot;mitsubishi-9850-hb&quot;&gt;Mitsubishi 9850 HB&lt;/h3&gt;
&lt;p&gt;If I could only have one, this would be it. The lead is perfect for daily writing, and it has an eraser. It&amp;#39;s cheap and available. &lt;a href=&quot;https://www.penaddict.com/blog/2022/11/21/mitsubishi-9850-hb-pencil-review&quot;&gt;It&amp;#39;s the best all-rounder&lt;/a&gt;...&lt;/p&gt;
&lt;h3 id=&quot;colleen-2020-super-drawing&quot;&gt;Colleen 2020 Super Drawing&lt;/h3&gt;
&lt;p&gt;...but not my favourite. That&amp;#39;s the discontinued Colleen 2020. &lt;a href=&quot;https://timoweaver.com/guide/2022/12/12/wooden-pencil-masterlist.html#colleen-2020-super-drawing&quot;&gt;This guy doesn&amp;#39;t love it&lt;/a&gt; but for me it&amp;#39;s just a beautiful writing instrument.&lt;/p&gt;
&lt;p&gt;These are not readily available, and they&amp;#39;re a couple of dollars each. I have a supply that should last me a good few years, but as a result I don&amp;#39;t use it every day.&lt;/p&gt;
&lt;h3 id=&quot;blackwing-pearl&quot;&gt;Blackwing Pearl&lt;/h3&gt;
&lt;p&gt;The pencil snobs just turned up their noses. Blackwing! Isn&amp;#39;t that a little &lt;em&gt;common?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I hate snobbery. And I love this pencil. Actually this is the reason I rediscovered pencils. Me and Lucy were on holiday in NYC, staying at the &lt;a href=&quot;https://arlohotels.com/midtown/&quot;&gt;Arlo&lt;/a&gt;, and they had these in the cutesy little lobby shop.&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t buy any at the time -- we travel light, and aren&amp;#39;t souvenir collectors -- but the memory stayed with me, and I ordered a set when we got home. This was the realisation: that pencils aren&amp;#39;t dull. Every pencil isn&amp;#39;t the cheap thing you were given at school.&lt;/p&gt;
&lt;p&gt;Pencils can be beautiful things. Crafted. Designed.&lt;/p&gt;
&lt;p&gt;And it turns out the &lt;a href=&quot;https://blackwing602.com/products/blackwing-pearl-set-of-12&quot;&gt;Pearl&lt;/a&gt; -- my preferred of their standard range thanks to its slightly-harder-than-the-darker-one lead -- is a terrific daily pencil.&lt;/p&gt;
&lt;p&gt;I have them scattered all over the house. I Blu Tack them to the back of notebooks. I use them down to the nub. A+ pencil.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(Also, snobs, I use Global knives and I love my Lodge pan. Up yours.)&lt;/em&gt;&lt;/p&gt;
&lt;h3 id=&quot;caran-dache-swiss-wood&quot;&gt;Caran d&amp;#39;Ache Swiss Wood&lt;/h3&gt;
&lt;p&gt;This one&amp;#39;s a little &lt;em&gt;fancy&lt;/em&gt; and &lt;a href=&quot;https://pencilly.com.au/product/caran-dache-swiss-wood/&quot;&gt;so is the price&lt;/a&gt;. But they last &lt;em&gt;forever&lt;/em&gt; thanks to their you-must-be-joking-if-you-think-that&amp;#39;s-HB-it&amp;#39;s-more-like-2H lead.&lt;/p&gt;
&lt;p&gt;So they&amp;#39;re great for finer work, such as writing on tiny little Post-it notes.&lt;/p&gt;
&lt;p&gt;Oh and they&amp;#39;re made of Swiss beech wood and they smell amazing. Also I&amp;#39;m a sucker for Swiss iconography.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of the four pencils.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0033.01-pencils-1177x511.jpeg&quot; width=&quot;600&quot; height=&quot;260&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;on-doing-one-thing-at-a-time&quot;&gt;On doing-one-thing-at-a-time&lt;/h1&gt;
&lt;p&gt;The index card experiment continues and I&amp;#39;m loving it.&lt;/p&gt;
&lt;p&gt;Here&amp;#39;s today&amp;#39;s story of not doing one thing at a time and having it bite me in the arse. There&amp;#39;s an issue with &lt;a href=&quot;https://astro.build&quot;&gt;Astro&lt;/a&gt;, which I use to build this site. One of its plugins is turning &amp;quot;curly quotes&amp;quot; in to &amp;quot;incorrect&amp;quot; curly quotes.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m working round it by running a regex, &lt;code&gt;grep -r &amp;#39;\w&amp;gt;&amp;quot;\w&amp;#39; ./dist&lt;/code&gt;, over the built site. If this picks up any bad quotes I just go in and hand-fix them. But when I add this to my &lt;code&gt;build&lt;/code&gt; step in &lt;code&gt;package.json&lt;/code&gt;, it breaks the Netlify build.&lt;/p&gt;
&lt;p&gt;Long story short, I didn&amp;#39;t realise this because here&amp;#39;s what I did:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Fixed some quotes.&lt;/li&gt;
&lt;li&gt;Did a build.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git push&lt;/code&gt; to send it to Netlify to build for prod.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;...at which point I should have &lt;strong&gt;waited&lt;/strong&gt; and just watched it complete and then checked it. But what did I do instead?&lt;/p&gt;
&lt;p&gt;I immediately switched to doing something else. So I come back later, check my site, the quotes &lt;em&gt;aren&amp;#39;t&lt;/em&gt; fixed (the build failed at Netlify), and now I have to context-switch back to that and figure out why and fix it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;It would have taken less time if I&amp;#39;d stared vacantly at the build process for one minute and seen it fail.&lt;/strong&gt;&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0032 Index cards to the rescue</title><link>https://johnnydecimal.com/22.00.0032/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0032/</guid><description>In resetting my organisation system, I need to get away from the computer.</description><pubDate>Tue, 30 Apr 2024 23:43:30 GMT</pubDate><content:encoded>&lt;h1 id=&quot;index-cards-to-the-rescue&quot;&gt;Index cards to the rescue&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;This post is the first of at least 31 daily posts as part of &lt;a href=&quot;https://weblog.anniegreens.lol/weblog-posting-month-2024&quot;&gt;WeblogPoMo2024&lt;/a&gt;. Expect (and forgive) more words and less editing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;m not claiming to have ADHD, but in a way we all suffer from some of the symptoms because of the nature of technology.&lt;/p&gt;
&lt;p&gt;I grew up in the late 80s/90s. Changing mental state was a much slower process. If I was watching the telly, to change the show I had to get up. And then there were only three other shows to choose from. Or I could change the movie I was watching,[^robocop] but that involved ejecting a cassette. Or I could change the CD, but I have to go to the shelf and pick a new one. And so on.&lt;/p&gt;
&lt;p&gt;Now, I can be on my laptop reconciling the monthly Stripe payments for Johnny.Decimal -- a tedious task that requires deep focus -- and with &lt;em&gt;one keyboard shortcut&lt;/em&gt; (Cmd-Tab) I&amp;#39;m in my social media, or Discord, or my news feed, or I have a blank browser tab with literally the entire internet available to me.&lt;/p&gt;
&lt;p&gt;No part of my body above the wrist need move for my &lt;em&gt;entire focus&lt;/em&gt; to switch and be ruined. Needless to say this is catastrophic for my productivity and sense of calm.In continuing the &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;re-organising of my own life&lt;/a&gt;, which has been on hold as we completed the workshop, I realised that I needed to get away from the computer.&lt;/p&gt;
&lt;p&gt;My computer notes are a shambles. Wherever I look: Bear, which is my main system; Apple Notes, which I use to share some things with Lucy. The thought of re-planning &lt;em&gt;inside that chaos&lt;/em&gt; has put me off even starting.&lt;/p&gt;
&lt;p&gt;In planning the &lt;a href=&quot;https://johnnydecimal.com/14.22/&quot;&gt;workshop&lt;/a&gt; I wrote everything I did for about a week on pieces of 4×4cm coloured paper.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-origami&quot; id=&quot;user-content-fnref-origami&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; This is just big enough to write a task; if you can&amp;#39;t fit a task on a sheet, the task is too large and needs to be broken up.&lt;/p&gt;
&lt;p&gt;Then I used these coloured notes to help myself stay focused. You should know by now that &lt;a href=&quot;https://neuroscience.stanford.edu/news/why-multitasking-does-more-harm-good&quot;&gt;multitasking is a myth&lt;/a&gt;. So my paper stack was just that: a single stack. With one thing on top. The thing I&amp;#39;m doing &lt;em&gt;now.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That thing might be mundane -- hang out the laundry -- or complex -- reconcile your Stripe payments. It doesn&amp;#39;t matter. The key is to do one thing until it&amp;#39;s finished. The paper then went on the spike.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of my desk with the 4x4cm cards as described.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0032.01-desk-4x4-notes-1280x960.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;I put these paper squares on my laptop&lt;sup&gt;&lt;a href=&quot;#user-content-fn-monitor&quot; id=&quot;user-content-fnref-monitor&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; so they were front-of-mind.
There&amp;#39;s the thing I&amp;#39;m doing now, written right there.&lt;/p&gt;
&lt;p&gt;This worked reasonably well. Obviously it&amp;#39;s easy to just ignore the paper and do something else, but I found myself feeling bad when I did this. I know I&amp;#39;m only cheating myself.&lt;/p&gt;
&lt;p&gt;And so this is where we are again. But this time I&amp;#39;m slightly tweaking the strategy.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I&amp;#39;ve cracked out the 5×7&amp;quot; index cards.&lt;/strong&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-merlin&quot; id=&quot;user-content-fnref-merlin&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;This is all in service of me entirely re-organising two systems:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;My personal life.&lt;/li&gt;
&lt;li&gt;Johnny.Decimal as a business. (The website is its own system; it&amp;#39;s fine.)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each card has the category of work written at the top. These categories are not deeply considered: this whole thing is a stopgap. They may or may not be categories in the final, designed systems. It doesn&amp;#39;t matter: it&amp;#39;s crucial not to get stuck in &lt;a href=&quot;https://en.wikipedia.org/wiki/Analysis_paralysis&quot;&gt;analysis paralysis&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;interlude&quot;&gt;Interlude&lt;/h2&gt;
&lt;p&gt;We just broke for breakfast: a fried egg on toast with homemade Szechuan chilli sauce and spring onions. So before I got up from the computer I wrote a new note -- &lt;code&gt;Egg&lt;/code&gt; -- and stuck it on the &lt;code&gt;Personal, fun&lt;/code&gt; card and moved that card to the top of the stack.&lt;/p&gt;
&lt;p&gt;As soon as I got to the kitchen I went to pick up my phone to play a podcast! Pure habit; I&amp;#39;m not bored, I prepare a fried egg in about 4 minutes. But that&amp;#39;s what it&amp;#39;s got to. I can&amp;#39;t do something for 4 minutes without some sort of &lt;del&gt;entertainment&lt;/del&gt; distraction.&lt;/p&gt;
&lt;p&gt;I stopped myself. I spent the time a) making breakfast and b) allowing my mind to linger on this post, which is what I&amp;#39;d interrupted to make the egg. I came up with the idea of typing these paragraphs.&lt;/p&gt;
&lt;p&gt;I have to try &lt;strong&gt;really hard&lt;/strong&gt; to do one thing at a time.&lt;/p&gt;
&lt;h2 id=&quot;back-to-the-cards&quot;&gt;Back to the cards&lt;/h2&gt;
&lt;p&gt;Years ago -- I have a note, &lt;code&gt;25.04&lt;/code&gt;, dated &lt;code&gt;2013-03-05&lt;/code&gt; -- I had the idea of an iPad app which mimicked the &lt;a href=&quot;https://en.wikipedia.org/wiki/Flight_progress_strip&quot;&gt;flight progress strips&lt;/a&gt; that air traffic controllers use to track aeroplanes. You&amp;#39;d use it to track your daily work.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I&amp;#39;ve pasted the text of the note at the bottom of this post, if you&amp;#39;re morbidly curious. Note how this 11-year-old issue is exactly the one I&amp;#39;m describing here.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The idea is simple: whatever&amp;#39;s at the top is what you&amp;#39;re doing. It&amp;#39;s the flight &amp;#39;coming in to land&amp;#39;. You use this strip to track the small details of the task; they&amp;#39;re not meant be permanent.&lt;/p&gt;
&lt;p&gt;This task then either:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;completes, or&lt;/li&gt;
&lt;li&gt;requires you to wait for a while.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Either way, another task rises to the top. If you need to come back to this task, move its note &amp;#39;down&amp;#39;. If it&amp;#39;s complete, discard it.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A photograph of my desk with the index cards as described.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0032.02-desk-index-cards-1280x960.jpeg&quot; width=&quot;600&quot; height=&quot;450&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;So that&amp;#39;s what I&amp;#39;m trying with these index cards. I just started two hours ago
so I&amp;#39;ll refine this over the next few days, but for now here are the rules.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The stack of cards is that: a stack. There is only ever one thing on top: don&amp;#39;t fan them out so you can see more than one card.&lt;/li&gt;
&lt;li&gt;Each card has a category written at the top-left, e.g. &lt;code&gt;Johnny.Decimal, comms &amp;amp; content&lt;/code&gt;. I&amp;#39;ve put a coloured mark at the top-right to group cards by broader area (just scribbled with a pen).&lt;/li&gt;
&lt;li&gt;Each thing to do is written on a tiny sticky note, e.g. &lt;code&gt;Blog this idea&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;On each card, the sticky note at the top-left is the thing that I am doing. It is the &lt;strong&gt;only&lt;/strong&gt; thing that I am doing.&lt;/li&gt;
&lt;li&gt;The closer a note is to the top-left, the closer it is to becoming active. New notes go at the lower-right.&lt;/li&gt;
&lt;li&gt;Completed notes are moved to a &lt;code&gt;Completed&lt;/code&gt; card just because it&amp;#39;s nice to see what you did.&lt;/li&gt;
&lt;li&gt;If it&amp;#39;s not on a card, I&amp;#39;m not doing it.&lt;/li&gt;
&lt;li&gt;Exception: relaxing. I don&amp;#39;t need to track time relaxing.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So that&amp;#39;s it for now, I&amp;#39;ll run this today and see how it works. More tomorrow!# &lt;code&gt;25.04&lt;/code&gt; iPad ATC app&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This is the contents of this note, copy/pasted as-is. So we&amp;#39;re looking back in time 11 years.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;overview&quot;&gt;Overview&lt;/h2&gt;
&lt;p&gt;When we&amp;#39;re working, we have a bunch of stuff going on. We need to keep track of what we&amp;#39;re doing, and need to be able to switch between different tasks without getting &amp;quot;lost&amp;quot;.&lt;/p&gt;
&lt;p&gt;A lot of people use task management systems - to-do lists of varying complexity, basically - which are great at tracking our high level tasks. What they&amp;#39;re not so good for is tracking the &amp;quot;here and now&amp;quot;.&lt;/p&gt;
&lt;p&gt;Invariably, for this, we switch to sticky notes, or scribbled pages in a notebook. These systems work, but they have their drawbacks. The notes you write aren&amp;#39;t searchable, you run out of space on a page, or you lose them in a pile of other crap on your desk. Pages in a notebook can&amp;#39;t be re-arranged.&lt;/p&gt;
&lt;p&gt;Most importantly, these systems don&amp;#39;t really allow us to see, at a glance, what we&amp;#39;re working on &lt;em&gt;right now&lt;/em&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;What was that thing I was doing ten minutes ago that I had to stop because I got that important call?... I don&amp;#39;t remember... let me leaf through my notebook... ah! Yes. There it is. Now, where did I write the email address of that guy I need to speak to? Aah crap, it&amp;#39;s on the notepad I left on the kitchen bench!&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The iPad app I will describe solves these problems.&lt;/p&gt;
&lt;h2 id=&quot;the-app-in-a-nutshell&quot;&gt;The app, in a nutshell&lt;/h2&gt;
&lt;p&gt;The simplest way of describing the app would be to say that it&amp;#39;s a bit like a &amp;quot;sticky note&amp;quot; app on steroids.&lt;/p&gt;
&lt;p&gt;Boring, right? There are already heaps of sticky note apps! Wait. Listen.&lt;/p&gt;
&lt;h2 id=&quot;core-features&quot;&gt;Core features&lt;/h2&gt;
&lt;p&gt;This is what makes this app different from the rest:&lt;/p&gt;
&lt;h3 id=&quot;what-youre-working-on-now-goes-at-the-top-and-is-bigger&quot;&gt;What you&amp;#39;re working on now goes at the top, and is bigger&lt;/h3&gt;
&lt;p&gt;Say you&amp;#39;ve got five things on the go. You can&amp;#39;t really be working on five things at the same time - you&amp;#39;re working on one thing, and four things are waiting for your attention.&lt;/p&gt;
&lt;p&gt;The thing you&amp;#39;re working on should be bigger: centre stage. The app resizes your notes so that, as you drag the thing you&amp;#39;re working on &lt;em&gt;now&lt;/em&gt; to the top, it gets bigger and the rest get smaller.&lt;/p&gt;
&lt;p&gt;When you switch to another task, you drag its note to the top; the topmost note is relegated, slides down, and becomes smaller.&lt;/p&gt;
&lt;p&gt;The lower on the screen the note, the less important it is &lt;em&gt;right now&lt;/em&gt;, and the smaller it becomes. You can move notes around whenever you like to represent your current priorities.&lt;/p&gt;
&lt;h3 id=&quot;inspiration-for-this-app-flight-progress-strips&quot;&gt;Inspiration for this app: flight progress strips&lt;/h3&gt;
&lt;p&gt;It occurred to me that a nice analogy for this app is the old &amp;quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Flight_progress_strip&quot;&gt;flight progress strips&lt;/a&gt;&amp;quot; that air traffic controllers used to use. (I presume it&amp;#39;s all computerised now.)&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://farm4.staticflickr.com/3194/2934964414_2c2e9d227e_z.jpg&quot;&gt;Flickr image: flight progress strips&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;They&amp;#39;re clean, they only show you exactly what you need to know, you slide them around the board to re-order them according to priority, and when the flight has landed you push it away.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Aah, still in use! From Wikipedia: &amp;quot;While it has been supplemented by more technologically advanced methods of flight tracking since its introduction, it is still used in modern ATC as a quick way to annotate a flight, to keep a legal record of the instructions that were issued, to allow other controllers to see instantly what is happening and to pass this information to other controllers who go on to control the flight.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Think of the notes in my app as flight progress strips. I may even design the app so that it superficially resembles this sort of system.&lt;/p&gt;
&lt;h3 id=&quot;at-a-glance-what-am-i-doing-today-and-what-do-i-do-next&quot;&gt;At a glance &amp;quot;what am I doing today&amp;quot;, and &amp;quot;what do I do next?&amp;quot;&lt;/h3&gt;
&lt;p&gt;I had the idea for this app when I was at work and I finished something important. I knew that I had a bunch of other important stuff to do - that I&amp;#39;d been working on that morning - but because my brain was so busy, I couldn&amp;#39;t think what it all was.&lt;/p&gt;
&lt;p&gt;I realised that I wanted to be able to glance at a dashboard of my stuff to remind myself what I had to be thinking about.&lt;/p&gt;
&lt;p&gt;I think this is why people like sticky notes so much: they&amp;#39;re &lt;em&gt;just there&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;This app gives you the simplicity of that view, while allowing you much more flexibility than a sticky note.&lt;/p&gt;
&lt;h3 id=&quot;all-the-important-information-right-there&quot;&gt;All the important information, right there&lt;/h3&gt;
&lt;p&gt;Where sticky notes fail us is in their inability to record multiple pieces of information. They&amp;#39;re just too small. That&amp;#39;s when we resort to the notebook, but then that doesn&amp;#39;t give us the at-a-glance view.&lt;/p&gt;
&lt;p&gt;What if you could attach smart bits of information to a sticky note?&lt;/p&gt;
&lt;h3 id=&quot;my-example-working-in-it&quot;&gt;My example: working in IT&lt;/h3&gt;
&lt;p&gt;I work in IT, so for any given task (&amp;quot;install the software on the server&amp;quot;, say), I have a bunch of information that I want close to hand:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The server name(s)&lt;/li&gt;
&lt;li&gt;The email address of the guy I&amp;#39;m installing the software for&lt;/li&gt;
&lt;li&gt;The software license key&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Let&amp;#39;s say I start to install the software, but it takes ten minutes so while it&amp;#39;s doing it I switch to another task. When I come back to the install, it&amp;#39;s asking me for the license key. Now, where was that? Did I write it in my notebook, or was it in an email?&lt;/p&gt;
&lt;p&gt;You get the idea. In this situation, my app helps me like so:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I finish the other task and think, okay, what now?&lt;/li&gt;
&lt;li&gt;I glance at my iPad and see that the &amp;quot;install software on the server&amp;quot; note is in the middle of the screen, and reasonably big - because it was at the top ten minutes ago, but then I switched to another task and dragged &lt;em&gt;it&lt;/em&gt; to the top: the &amp;quot;install&amp;quot; note got moved down a bit as a result. (There&amp;#39;s probably a bunch of other stuff below &lt;em&gt;it&lt;/em&gt;, that I was working on an hour ago.)&lt;/li&gt;
&lt;li&gt;I think, ah yes, I&amp;#39;ll finish that software install. I drag its note to the top.&lt;/li&gt;
&lt;li&gt;I need to log in to the server. What was its name? There it is - right in the note.&lt;/li&gt;
&lt;li&gt;I log on and need to enter the license key. Where is it? There it is - right in the note.&lt;/li&gt;
&lt;li&gt;I finish the install and want to mail the guy to tell him it&amp;#39;s finished. What was his email address? Of course, there it is - right in the note. I tap it and a new mail window appears to allow me to compose the email on my iPad.&lt;/li&gt;
&lt;li&gt;I&amp;#39;m done with this task. I drag it off to the side as it&amp;#39;s complete and I want it out of my view. More on this later.&lt;/li&gt;
&lt;li&gt;The remaining items re-fill the screen; I scan around, pick what to do next, and move it to the top if it isn&amp;#39;t already there.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;you-can-only-have-a-few-things-on-the-screen&quot;&gt;You can only have a few things on the screen&lt;/h3&gt;
&lt;p&gt;Because this specifically isn&amp;#39;t a &amp;quot;to-do&amp;quot; application, and as such isn&amp;#39;t meant for tracking what you need to do tomorrow, or next week, you can only have a few things on the screen: the things you&amp;#39;re &lt;em&gt;actively working on, now&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m thinking five, six, maybe seven &lt;em&gt;max&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Track your to-dos somewhere else. When you start actually doing them, use my app.&lt;/p&gt;
&lt;h3 id=&quot;completed-stuff-disappears-but-is-still-there&quot;&gt;Completed stuff disappears, but is still there&lt;/h3&gt;
&lt;p&gt;One of the enormous benefits of using a computer to do this sort of thing is that the information never really disappears.&lt;/p&gt;
&lt;p&gt;When I finish my server install, I drag its note off to the side to indicate that it&amp;#39;s complete and I don&amp;#39;t need to see it any more. But, of course, if next week I need to install the same software again, or if I need to log on to the server again to check something, or whatever, I can quickly find that old note and the information I need is right there.&lt;/p&gt;
&lt;p&gt;You can&amp;#39;t do that with a sticky note, because you threw it in the bin.&lt;/p&gt;
&lt;h3 id=&quot;the-app-is-simple-and-clean&quot;&gt;The app is simple and clean&lt;/h3&gt;
&lt;p&gt;The idea of the app isn&amp;#39;t that it becomes your notebook. We don&amp;#39;t want a screen full of prose: we want a quick visual indicator of what we need to be doing, and a place to quickly store short snippets of relevant information.&lt;/p&gt;
&lt;p&gt;The main display (mockup below) shows only the &amp;quot;headline&amp;quot; title of each note. If you want to add additional information, there&amp;#39;s a special place for that - a pop-out drawer, or whatever.&lt;/p&gt;
&lt;p&gt;We use data indicators to try to make the additional data smart. (&amp;quot;Show me all the notes where I had Alex Garner as a contact.&amp;quot;)&lt;/p&gt;
&lt;h2 id=&quot;design-principles&quot;&gt;Design principles&lt;/h2&gt;
&lt;p&gt;Clean, clean, clean.&lt;/p&gt;
&lt;p&gt;No yellow sticky notes. No faux-cork background. No skeuomorphic pins.&lt;/p&gt;
&lt;p&gt;Helvetica. White. Square. Sparse. Beautiful.&lt;/p&gt;
&lt;h3 id=&quot;mock-it-up-yourself-at-home&quot;&gt;Mock it up yourself at home!&lt;/h3&gt;
&lt;p&gt;I ran a version of this system on my Mac for a while. It works really well - try this at home, kids!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Create a new Desktop just for this purpose. Make sure no other apps show on it.&lt;/li&gt;
&lt;li&gt;Open TextEdit. Hide as much of the window as you can - get rid of the ruler and ... can&amp;#39;t you hide the font toolbar any more? I was sure you used to be able to. Anyway, pretend it isn&amp;#39;t there.&lt;/li&gt;
&lt;li&gt;You want as plain a white window as you can get.&lt;/li&gt;
&lt;li&gt;Set your font to Helvetica. Make it big (48).&lt;/li&gt;
&lt;li&gt;Type whatever it is you&amp;#39;re working on (&amp;quot;Do the server installation&amp;quot;).&lt;/li&gt;
&lt;li&gt;Make another one. Type something else. Move them around. Make the text on those you move lower on the screen smaller, and vice versa.&lt;/li&gt;
&lt;li&gt;To add bits of information, put them at the bottom in regular sized (12) text.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;The note ends here.[^robocop]: Usually &lt;em&gt;Robocop.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-origami&quot;&gt;
&lt;p&gt;I think it&amp;#39;s origami paper? I picked up the pack in a stationery store in Singapore just because it looked pretty. &lt;a href=&quot;#user-content-fnref-origami&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-monitor&quot;&gt;
&lt;p&gt;Helpfully, in this unique case, perched on a laptop stand. My monitor is in for repair. &lt;a href=&quot;#user-content-fnref-monitor&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-merlin&quot;&gt;
&lt;p&gt;Paging Merlin Mann. &lt;a href=&quot;#user-content-fnref-merlin&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0031 JD IDs as a shortcut</title><link>https://johnnydecimal.com/22.00.0031/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0031/</guid><description>How to use your JD IDs to navigate your file system quicker.</description><pubDate>Mon, 25 Mar 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;jd-ids-as-a-shortcut&quot;&gt;JD IDs as a shortcut&lt;/h1&gt;
&lt;p&gt;Here&amp;#39;s a quick tip that I use all the time.&lt;/p&gt;
&lt;p&gt;You&amp;#39;re saving (or opening) a file. Up pops the trusty system dialog box. And you&amp;#39;re nowhere near the folder you need.&lt;/p&gt;
&lt;p&gt;Type the Johnny.Decimal ID of that folder in the &amp;#39;Search&amp;#39; box there. Make sure &amp;#39;This Mac&amp;#39; is selected next to &amp;#39;Search&amp;#39;.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of a macOS Finder open/save dialog. The &apos;search&apos; field at the upper right is highlighted.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0031-cleanshot-1588x886@2x.png&quot; width=&quot;794&quot; height=&quot;443&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;And there you go. Instant navigation to any folder, wherever it happens to be.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0030 play.jdcm.al shutting down</title><link>https://johnnydecimal.com/22.00.0030/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0030/</guid><description>A programming notice.</description><pubDate>Sat, 02 Mar 2024 23:45:46 GMT</pubDate><content:encoded>&lt;h1 id=&quot;playjdcmal-shutting-down&quot;&gt;play.jdcm.al shutting down&lt;/h1&gt;
&lt;p&gt;A few years ago I set up &lt;code&gt;play.johnnydecimal.com&lt;/code&gt; as a &amp;#39;playground&amp;#39; site. I intended to post less well-formed ideas there.&lt;/p&gt;
&lt;p&gt;Well, I never did! Or not much. But it&amp;#39;s still hanging around. Until today: I&amp;#39;m taking it down.&lt;/p&gt;
&lt;p&gt;I hate breaking links, so the domain will always redirect to this post. And if there was something on that site that you did want to read:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;You probably shouldn&amp;#39;t, but&lt;/li&gt;
&lt;li&gt;it&amp;#39;s all at &lt;a href=&quot;https://github.com/johnnydecimal/johnnydecimal-2020-play/&quot;&gt;github.com/johnnydecimal/johnnydecimal-2020-play&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Let me know if you can&amp;#39;t find what you&amp;#39;re looking for.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0029 People and organisations</title><link>https://johnnydecimal.com/22.00.0029/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0029/</guid><description>Some things are not better sorted by number.</description><pubDate>Thu, 22 Feb 2024 19:57:47 GMT</pubDate><content:encoded>&lt;h1 id=&quot;people-and-organisations&quot;&gt;People and organisations&lt;/h1&gt;
&lt;p&gt;Some things are &lt;em&gt;not&lt;/em&gt; better sorted by number.&lt;/p&gt;
&lt;p&gt;For some things, the alphabet is the best way. &amp;#39;People and organisations&amp;#39; fit in to this category.Let&amp;#39;s say I want to store information related to friends. I keep a list of books we&amp;#39;ve loaned each other. I save a friend&amp;#39;s passport details when we go on a trip together. I write a list of gifts I want to buy them.&lt;/p&gt;
&lt;p&gt;So we have a category &lt;code&gt;12 People&lt;/code&gt;. Would this make sense?&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;10-19 Life admin
   12 People
      12.01 Susan Schuzensutz
      12.02 Barry Barfelschwacker
      12.03 Fred Flopagolopolous
      ...
      12.63 Joe Lunchbox
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Quickly, find Kate Krapolodou in the list. Hmm. Not optimal.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Instead, organise these people alphabetically.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;You can still give them a number: just &lt;em&gt;append&lt;/em&gt; it to their name. We still just start at &lt;code&gt;.01&lt;/code&gt; and go up by sequence:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;10-19 Life admin
   12 People
      Barfelschwacker, Barry [12.02]
      Flopagolopolous, Fred [12.03]
      Lunchbox, Joe [12.63]
      Schuzensutz, Susan [12.01]
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And now when &lt;code&gt;Krapolodou, Kate&lt;/code&gt; is somewhere in the middle of that list, she&amp;#39;s easy to find.&lt;/p&gt;
&lt;p&gt;You might never use these numbers to refer to your friends. (And if you do, perhaps don&amp;#39;t tell them.)&lt;/p&gt;
&lt;p&gt;But they&amp;#39;re there if you ever need them.The same principle applies to organisations. Your gas company, the electricity company: if your system organises them in a category together, you may find this sort-by-alphabet technique to be more natural.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0028 &apos;Project&apos; is now &apos;system&apos;</title><link>https://johnnydecimal.com/22.00.0028/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0028/</guid><description>An update to a fundamental Johnny.Decimal term.</description><pubDate>Tue, 06 Feb 2024 01:25:55 GMT</pubDate><content:encoded>&lt;h1 id=&quot;project-is-now-system&quot;&gt;&amp;#39;Project&amp;#39; is now &amp;#39;system&amp;#39;&lt;/h1&gt;
&lt;p&gt;Until now, I have used the word &amp;#39;project&amp;#39; as a term to mean &lt;em&gt;the thing that you&amp;#39;re organising&lt;/em&gt; and/or &lt;em&gt;the result of doing the organising.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;For example, the Workbook&amp;#39;s cover sheet reads:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A guide to setting up a single-project system and working the Decimal way&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is imprecise and confusing. What if you&amp;#39;re not organising a project? This results in me having to qualify it, for example:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Yours might not feel like &amp;#39;a project&amp;#39; in the typical sense.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;precision&quot;&gt;Precision&lt;/h2&gt;
&lt;p&gt;In defining this system, I believe that precision and clarity matters.&lt;/p&gt;
&lt;p&gt;I want to help you to be more organised. If you&amp;#39;re confused about what I mean, that&amp;#39;s just going to get in the way.&lt;/p&gt;
&lt;p&gt;And if we all use different terms when we discuss things on the forum, we&amp;#39;re going to be talking across each other.&lt;/p&gt;
&lt;h2 id=&quot;new-definitions&quot;&gt;New definitions&lt;/h2&gt;
&lt;p&gt;With a lot of &lt;a href=&quot;https://forum.johnnydecimal.com/t/jd-what-is-a-project/1181/1&quot;&gt;community consultation&lt;/a&gt; and &lt;a href=&quot;https://johnnydecimal.com/img/_new/22.00.0028.07-whiteboard-1280x960.jpeg&quot;&gt;intense whiteboarding&lt;/a&gt; here at JDHQ, we&amp;#39;ve come up with the following definitions of terms.&lt;/p&gt;
&lt;p&gt;The site and Workbook will be updated to reflect these new terms. (This will improve clarity, but nothing fundamental has changed.)&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll add a new page to the main site with the definitions minus the background contained in this post.&lt;/p&gt;
&lt;h1 id=&quot;the-johnnydecimal-system&quot;&gt;The Johnny.Decimal System&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;Is a collection of methods, tools, and behaviours as documented at johnnydecimal.com.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;The Johnny.Decimal system&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;The system&lt;/code&gt; (for short)&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A block diagram showing &apos;The Johnny.Decimal System&apos; in a green block.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.01-diagrams-the-jd-system-1164x300@2x.png&quot; width=&quot;582&quot; height=&quot;150&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;your-johnnydecimal-system&quot;&gt;Your Johnny.Decimal system&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;Is your implementation of this system, customised to suit whatever it is that you&amp;#39;re organising.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Your Johnny.Decimal system&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Your system&lt;/code&gt; (for short)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We considered the repeated use of the term &lt;em&gt;system&lt;/em&gt; here but it&amp;#39;s just too natural a word to ignore.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s a very &amp;#39;active&amp;#39; word: a system is a machine, an organism. It has components. It evolves.&lt;/p&gt;
&lt;p&gt;And &lt;em&gt;your&lt;/em&gt; system is just an implementation of &lt;em&gt;the&lt;/em&gt; system. They&amp;#39;re the same system.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A block diagram showing &apos;Your Johnny.Decimal system&apos; in orange, contained within &apos;The Johnny.Decimal system&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.02-diagrams-your-jd-system-1164x588@2x.png&quot; width=&quot;582&quot; height=&quot;294&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;Your system is shown &amp;#39;breaking out&amp;#39; of the bottom of the Johnny.Decimal system to indicate that it&amp;#39;s customisable.&lt;/p&gt;
&lt;p&gt;You don&amp;#39;t have to follow my &amp;#39;rules&amp;#39; to the letter (although I think you should).&lt;/p&gt;
&lt;h1 id=&quot;components&quot;&gt;Components&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;Johnny.Decimal systems are made up of components.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Components&lt;/code&gt; or &lt;code&gt;system components&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The diagram now has yellow boxes representing &apos;components&apos; contained within the orange block which is &apos;your system&apos;. One of these is &apos;the index&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.03-diagrams-components-1164x1380@2x.png&quot; width=&quot;582&quot; height=&quot;690&quot;&gt;  &lt;/picture&gt; 
&lt;p&gt;The list of components is not restricted, but the following are all common components:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The index (see below).&lt;/li&gt;
&lt;li&gt;File system.&lt;/li&gt;
&lt;li&gt;Notes (either an app or on paper).&lt;/li&gt;
&lt;li&gt;Tasks, to-dos, and reminders.&lt;/li&gt;
&lt;li&gt;Email.&lt;/li&gt;
&lt;li&gt;Calendar.&lt;/li&gt;
&lt;li&gt;Bookmarks and other saved links.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;the-index&quot;&gt;The index&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;The index is a specific component of your system; it serves to link all other components together in to a cohesive whole.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;The index&lt;/code&gt; or &lt;code&gt;your index&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&quot;your-stuff&quot;&gt;Your stuff&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;Your stuff is the real-world thing that you&amp;#39;re organising with Johnny.Decimal.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t specify the thing you&amp;#39;re organising -- because you can organise anything you want.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s your home life, or your job, or a work project, or a community group, or your university study, or &lt;em&gt;anything else.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Your stuff&lt;/code&gt; (yes, really)&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Within the orange box of &apos;your system&apos; there are purple shapes representing &apos;your stuff&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.04-diagrams-your-stuff-1164x1380@2x.png&quot; width=&quot;582&quot; height=&quot;690&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;collection-of-systems&quot;&gt;Collection of systems&lt;/h1&gt;
&lt;p&gt;You may need more than one system to manage everything in your life.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;We refer to this as your collection of systems.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Defined terms:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Collection of Johnny.Decimal systems&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Collection of systems&lt;/code&gt; (for short)&lt;/li&gt;
&lt;/ul&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;The diagram now shows two Johnny.Decimal systems. They are contained within another orange box denoting your &apos;collection of systems&apos;.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.05-diagrams-collection-of-systems-1164x1380@2x.png&quot; width=&quot;582&quot; height=&quot;690&quot;&gt;  &lt;/picture&gt; 
&lt;h1 id=&quot;domain&quot;&gt;Domain&lt;/h1&gt;
&lt;p&gt;&lt;em&gt;Domains group together systems which have one or more shared components.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;For example, when you go to work, everything might be on the company&amp;#39;s systems: your index, your file system, your email; &lt;em&gt;everything.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;#39;Work&amp;#39; is its own domain in this situation.&lt;/p&gt;
&lt;p&gt;But if you use your personal phone&amp;#39;s notes app to keep notes related to the system at work, that app just became a &lt;em&gt;shared component.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;#39;Work&amp;#39; is no longer its own domain; it has merged with your &amp;#39;home&amp;#39; domain.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;Blue ellipses now represent domains. The first contains three systems with a shared component. Two more each contain a single system.&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0028.06-diagrams-domains-1164x1380@2x.png&quot; width=&quot;582&quot; height=&quot;690&quot;&gt;  &lt;/picture&gt; 
&lt;h2 id=&quot;extended-naming&quot;&gt;Extended naming&lt;/h2&gt;
&lt;p&gt;This is relevant when we consider the extended naming of your systems.&lt;/p&gt;
&lt;p&gt;A system which is the only system in a domain can be uniquely identified by the &lt;a href=&quot;https://johnnydecimal.com/12.05/#area-category-id-acid&quot;&gt;standard &lt;code&gt;AC.ID&lt;/code&gt; notation&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;11.01&lt;/code&gt; can only refer to an item in one system.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When a domain contains two or more systems, this is no longer the case:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;11.01&lt;/code&gt; could refer to an item in two or more systems.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;When a domain contains two or more systems, each system SHOULD&lt;sup&gt;&lt;a href=&quot;#user-content-fn-should&quot; id=&quot;user-content-fnref-should&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; use the &lt;a href=&quot;https://johnnydecimal.com/12.05/#system-area-category-id-sysacid&quot;&gt;extended &lt;code&gt;SYS.AC.ID&lt;/code&gt; notation&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&quot;a-note-on-the-word-project&quot;&gt;A note on the word &amp;#39;project&amp;#39;&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve said it elsewhere, but it bears repeating.&lt;/p&gt;
&lt;p&gt;I consider &amp;#39;a project&amp;#39; to be a very large thing. In the Workbook we use the analogy of &lt;em&gt;painting the kitchen.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;People colloquially call &lt;em&gt;painting the kitchen&lt;/em&gt; &amp;#39;a project&amp;#39;.&lt;/p&gt;
&lt;p&gt;It is crucial to understand that &lt;em&gt;painting the kitchen&lt;/em&gt; can be handled within &lt;strong&gt;a single Johnny.Decimal ID.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;It is &lt;strong&gt;not&lt;/strong&gt; what we used to call a project; what we now call a system. You don&amp;#39;t need ten areas and a hundred categories and ten thousand IDs to paint the kitchen.&lt;/p&gt;
&lt;p&gt;So let&amp;#39;s &lt;em&gt;remodel the kitchen.&lt;/em&gt; Does that need its own system (née project) yet? &lt;strong&gt;No.&lt;/strong&gt; It could still fit in a bunch of IDs; at most, it&amp;#39;s its own category.&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s &lt;em&gt;rebuild the house.&lt;/em&gt; Full system? &lt;strong&gt;Nope!&lt;/strong&gt; Definitely a category; potentially an area.&lt;/p&gt;
&lt;p&gt;So what does it take to &amp;#39;fill&amp;#39; an entire system? I say you need to &lt;em&gt;build a farm.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;One area builds you the house. Another might deal with
connecting your plot to the local infrastructure: a category each for roads,
electricity, and water. One more for setting up a working farm, and we&amp;#39;re
done with room to spare.&lt;/p&gt;
&lt;h2 id=&quot;think-big&quot;&gt;Think big&lt;/h2&gt;
&lt;p&gt;I tell you this to encourage you to &lt;strong&gt;think big.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Design broad categories. Design &lt;em&gt;very&lt;/em&gt; broad areas.&lt;/p&gt;
&lt;p&gt;Your entire life can &lt;em&gt;easily&lt;/em&gt; fit in a single Johnny.Decimal system.&amp;gt; Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/jd-what-is-a-project/1181/51&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Internal ID: &lt;code&gt;D85.61.11&lt;/code&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-should&quot;&gt;
&lt;p&gt;As per &lt;a href=&quot;https://datatracker.ietf.org/doc/html/rfc2119#section-3&quot;&gt;RFC2119&lt;/a&gt;, I use SHOULD to mean that I recommend that you do, but that it is not &lt;em&gt;strictly&lt;/em&gt; necessary. &lt;a href=&quot;#user-content-fnref-should&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0027 Pricing is hard</title><link>https://johnnydecimal.com/22.00.0027/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0027/</guid><description>I am no salesman.</description><pubDate>Sun, 04 Feb 2024 07:15:26 GMT</pubDate><content:encoded>&lt;h1 id=&quot;pricing-is-hard&quot;&gt;Pricing is hard&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;As we record the Johnny.Decimal Workshop, I&amp;#39;m thinking about how to price it. I wanted to record my thoughts somewhere that I could link to them later.Pricing things is hard.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&amp;#39;m not a salesman. It&amp;#39;s the part of my new job that I enjoy the least.&lt;/p&gt;
&lt;p&gt;When we released the &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;Workbook&lt;/a&gt; I had no idea what it was worth. How could I? What baseline could I possibly have? It&amp;#39;s a PDF that we&amp;#39;d written.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s simultaneously worth nothing (it&amp;#39;s a digital good with &lt;a href=&quot;https://link.springer.com/chapter/10.1007/978-3-030-78237-5_6&quot;&gt;zero marginal cost&lt;/a&gt;) and everything (it&amp;#39;s how we pay our rent).&lt;/p&gt;
&lt;p&gt;So it&amp;#39;s an equation. Basic maths. Price × sales. Higher price, fewer sales, and vice versa. Where&amp;#39;s the sweet spot?&lt;/p&gt;
&lt;h2 id=&quot;doing-it-wrong&quot;&gt;Doing it wrong&lt;/h2&gt;
&lt;p&gt;I treasure my audience. Lucy and I call you &amp;#39;the Johnny.Decimal family&amp;#39;. We really do.&lt;/p&gt;
&lt;p&gt;So when I price a thing high, my best supporters buy it immediately, and then if I lower the price ... that feels bad.&lt;/p&gt;
&lt;p&gt;This happened, obviously. There&amp;#39;s nothing I can do about it now, other than learn the lesson.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#1: Turn it up, not down.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;unfortunately-discounts-work&quot;&gt;Unfortunately, discounts work&lt;/h2&gt;
&lt;p&gt;I &lt;em&gt;hate&lt;/em&gt; the bullshit where someone says that some thing is &amp;#39;worth&amp;#39; some amount and if you get this one thing and this other thing then really the &amp;#39;value&amp;#39; is $499 but &lt;em&gt;unbelievably&lt;/em&gt; you get it for $4.99!&lt;/p&gt;
&lt;p&gt;I refuse to play that particular game, but people do love a deal. It&amp;#39;s just human nature.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#2: Price it higher, but always have a deal.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This feels a bit sleazy, but I need to get over it. Make the base price higher, but &lt;a href=&quot;https://www.mentalfloss.com/article/74828/why-are-hotel-rack-rates-so-exorbitantly-high&quot;&gt;nobody actually pays it&lt;/a&gt;: there&amp;#39;s always an offer.&lt;/p&gt;
&lt;p&gt;And it aligns with &lt;strong&gt;#1:&lt;/strong&gt; you can easily &lt;strong&gt;turn it up&lt;/strong&gt; by adjusting the coupon discount.&lt;/p&gt;
&lt;h2 id=&quot;lower-price--higher-volume--lower-stress&quot;&gt;Lower price × higher volume = lower stress&lt;/h2&gt;
&lt;p&gt;When the Workbook was $37, some days I&amp;#39;d wake up to zero sales. (~80% of my sales occur while I&amp;#39;m asleep here in Australia.)&lt;/p&gt;
&lt;p&gt;That&amp;#39;s terrifying.&lt;/p&gt;
&lt;p&gt;So when I dropped it to $19, the overall earnings didn&amp;#39;t necessarily go up, but the chance of any given day being disastrous certainly went down.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#3: I prefer volume over price.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This sits nicely with me. I&amp;#39;d prefer to be more affordable, and this means I get to help more people.&lt;/p&gt;
&lt;p&gt;(The alternative is to go high-end. The price of entry for some of my competitors &lt;em&gt;starts&lt;/em&gt; at multiple-hundreds of dollars. Good on them, but that&amp;#39;s not for me.)&lt;/p&gt;
&lt;h2 id=&quot;sales-are-spiky&quot;&gt;Sales are spiky&lt;/h2&gt;
&lt;p&gt;What are you people &lt;em&gt;doing&lt;/em&gt; out there?&lt;/p&gt;
&lt;p&gt;If my best day last week was 100%, my worst was 19%. The sales graph is super spiky and as far as I can tell there&amp;#39;s no pattern.&lt;/p&gt;
&lt;div class=&quot;special-pre-follows&quot;&gt;&lt;/div&gt;
&lt;pre&gt;&lt;code&gt;
 │▓
 │▓
S│▓         ▓
a│▓         ▓
l│▓   ▓     ▓
e│▓   ▓     ▓
s│▓ ▓ ▓ ▓   ▓
 │▓ ▓ ▓ ▓ ▓ ▓
 │▓ ▓ ▓ ▓ ▓ ▓
 └────────────
  ThFrSaSuMoTu
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;em&gt;(Indulge me my passion for pointless ASCII graphs.)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;So you&amp;#39;ll have a great week -- the first week of January was a record-breaker -- and you&amp;#39;ll think, mad!, we&amp;#39;ve cracked it.&lt;/p&gt;
&lt;p&gt;And then the next week will be crap.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s been long enough now that I&amp;#39;ve learned to ignore it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#4: View sales month-by-month not day-by-day.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;#5: Don&amp;#39;t respond to yesterday. It was random.&lt;/strong&gt;&lt;/p&gt;
&lt;h1 id=&quot;an-experiment&quot;&gt;An experiment&lt;/h1&gt;
&lt;p&gt;This header was going to read &amp;#39;this isn&amp;#39;t science&amp;#39; and then I realised, no -- it&amp;#39;s the very &lt;em&gt;definition&lt;/em&gt; of science: I don&amp;#39;t know the answer, and I&amp;#39;m testing hypotheses with experiments.&lt;/p&gt;
&lt;p&gt;And so if you see prices change, or you wonder &lt;em&gt;why he did that,&lt;/em&gt; the answer is ... experiment. It&amp;#39;s just some guy with no expertise trying to figure it out.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s not nefarious, and it&amp;#39;s certainly not personal.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0027-pricing-is-hard/1210&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0026 Just use Buttondown, stupid</title><link>https://johnnydecimal.com/22.00.0026/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0026/</guid><description>Use the tools built for the job.</description><pubDate>Mon, 15 Jan 2024 04:36:51 GMT</pubDate><content:encoded>&lt;h1 id=&quot;just-use-buttondown-stupid&quot;&gt;Just use Buttondown, stupid&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://buttondown.email/refer/jen729w&quot;&gt;Buttondown&lt;/a&gt;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-referral&quot; id=&quot;user-content-fnref-referral&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; is a &lt;em&gt;great&lt;/em&gt; email service. It&amp;#39;s &amp;#39;one guy&amp;#39;, Justin, though I think he has a small support team now. But it&amp;#39;s not the corporate behemoth that is, say, Mailchimp.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-intuit&quot; id=&quot;user-content-fnref-intuit&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;A happy user, I was about to hit a subscriber number threshold and I thought I could save a tiny amount of money.&lt;/p&gt;
&lt;p&gt;I also thought it&amp;#39;d be &lt;em&gt;simpler&lt;/em&gt; if I managed my email list myself.&lt;/p&gt;
&lt;h2 id=&quot;massive-lol&quot;&gt;Massive LOL&lt;/h2&gt;
&lt;p&gt;As we say in Australia, &amp;quot;&lt;a href=&quot;https://www.collinsdictionary.com/submission/25573/Yeah+nah&quot;&gt;yeah nah&lt;/a&gt;&amp;quot;.&lt;/p&gt;
&lt;p&gt;I started managing the list manually in Airtable. To send mail I have a &lt;a href=&quot;https://gist.github.com/johnnydecimal/e7b1a03e26b79239363b5ddebef4f3c1&quot;&gt;clunky shell script&lt;/a&gt; which calls &lt;a href=&quot;https://aws.amazon.com/ses/&quot;&gt;Amazon&amp;#39;s Simple Email Service&lt;/a&gt;. Running this script is terrifying: I&amp;#39;m always sure I&amp;#39;m going to send something out twice, or to the wrong group of addresses.&lt;/p&gt;
&lt;p&gt;To get on or off the list you fill in &lt;a href=&quot;https://johnnydecimal.com/20-29-communication/21-send-and-receive/21.02-mailing-list/#the-form&quot;&gt;my web form&lt;/a&gt; and that goes to &lt;a href=&quot;https://www.netlify.com/platform/core/forms/&quot;&gt;Netlify Forms&lt;/a&gt;: a fine service, but it turns out it costs money over a certain fairly low number of submissions and that the difference is more than I&amp;#39;d just have given Justin for the higher-subscriber-level plan! 🤦&lt;/p&gt;
&lt;p&gt;And then I &lt;em&gt;still&lt;/em&gt; have to take that submission and manually add it to Airtable, making sure I don&amp;#39;t add duplicates,&lt;sup&gt;&lt;a href=&quot;#user-content-fn-airtable&quot; id=&quot;user-content-fnref-airtable&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt; that I properly remove unsubscriptions, and so on.&lt;/p&gt;
&lt;p&gt;I soon came to a stark realisation: &lt;strong&gt;I am an idiot.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;2024-is-the-year-of-simplification&quot;&gt;2024 is the Year of Simplification&lt;/h2&gt;
&lt;p&gt;As per my &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;previous posts&lt;/a&gt;, I&amp;#39;m starting over. This includes everything: and therefore includes the systems by which I manage my email lists.&lt;/p&gt;
&lt;p&gt;It&amp;#39;s too early to say for sure but I&amp;#39;m pretty certain that &amp;#39;simplify where possible&amp;#39; will be a theme for the year.&lt;/p&gt;
&lt;p&gt;To that end, I am returning to the warm embrace of Buttondown. I never should have left. I&amp;#39;m sorry, Justin.&lt;/p&gt;
&lt;h2 id=&quot;will-be-adding-a-bunch-of-addresses&quot;&gt;Will be adding a bunch of addresses&lt;/h2&gt;
&lt;p&gt;If you&amp;#39;ve signed up to the list since the start of December, I&amp;#39;ll be adding your address to Buttondown some time in the next day or so.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve turned off the &amp;#39;welcome to the list&amp;#39; notifications, so you shouldn&amp;#39;t actually notice. But if you do, and you ask, I&amp;#39;ll point you here for an explanation.&lt;/p&gt;
&lt;h1 id=&quot;update-on-jding-jd&quot;&gt;Update on JD&amp;#39;ing JD&lt;/h1&gt;
&lt;p&gt;Nothing much has happened since &lt;a href=&quot;https://johnnydecimal.com/22.00.0025/&quot;&gt;the last post&lt;/a&gt;. January in Australia is like August in Italy: &lt;em&gt;everyone&lt;/em&gt; is on holiday.&lt;/p&gt;
&lt;p&gt;Lucy&amp;#39;s family have been here and so we haven&amp;#39;t really started work properly yet. They pop in again tomorrow for the last time, so Wednesday might be the day we switch our brains back on.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0026-just-use-buttondown-stupid/1154&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-referral&quot;&gt;
&lt;p&gt;That&amp;#39;s a referral link. Per Buttondown: &amp;quot;For every paying customer you refer to us, you get a 25% lifetime commission on their payments to us, and they get $9 off their first month of Buttondown.&amp;quot; &lt;a href=&quot;#user-content-fnref-referral&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-intuit&quot;&gt;
&lt;p&gt;Now owned by Intuit, of tax software fame, who bought them for &lt;a href=&quot;https://en.wikipedia.org/wiki/Mailchimp#:~:text=On%20September%2013%2C%202021%2C%20Intuit%20confirmed%20it%20would%20acquire%20Mailchimp%20for%20approximately%20$12%20billion%20in%20cash%20and%20stock.&quot;&gt;&lt;em&gt;TWELVE THOUSAND MILLION DOLLARS&lt;/em&gt;&lt;/a&gt; for the love of god. I mean when sending email is worth $12bn you need to wonder where your data is going. &lt;a href=&quot;#user-content-fnref-intuit&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-airtable&quot;&gt;
&lt;p&gt;A feature curiously missing from Airtable: the ability to show duplicate entries in a table. Trivial in Excel, so I ended up copy-pasting my entire database in and out to do just that. I mean seriously. &lt;a href=&quot;#user-content-fnref-airtable&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0025 Systems, data, and knowledge</title><link>https://johnnydecimal.com/22.00.0025/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0025/</guid><description>Thinking out loud about where data can be, and what it is.</description><pubDate>Thu, 04 Jan 2024 03:47:03 GMT</pubDate><content:encoded>&lt;h1 id=&quot;systems-data-and-knowledge&quot;&gt;Systems, data, and knowledge&lt;/h1&gt;
&lt;p&gt;In &lt;a href=&quot;https://johnnydecimal.com/22.00.0024/&quot;&gt;the previous post&lt;/a&gt; I said that I was going to &amp;#39;list all the things&amp;#39; to consider.&lt;/p&gt;
&lt;p&gt;So I went for a walk this morning&lt;sup&gt;&lt;a href=&quot;#user-content-fn-olympus&quot; id=&quot;user-content-fnref-olympus&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; and realised that doing so would be jumping ahead to &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;Workbook&lt;/a&gt; section &lt;code&gt;20-29 Discovery&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not ready for that yet.&lt;/p&gt;
&lt;p&gt;Because there is &lt;em&gt;so much&lt;/em&gt; in my life, I would hardly know where to start discover&lt;em&gt;ing&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;So let&amp;#39;s step back.&lt;/p&gt;
&lt;h2 id=&quot;where-do-i-even-look&quot;&gt;Where do I even look?&lt;/h2&gt;
&lt;p&gt;Johnny.Decimal was conceived as a way to organise your files. But as technology progresses, we need to think more broadly.&lt;/p&gt;
&lt;p&gt;If you want to organise your digital life, you need to look at &lt;strong&gt;systems, data, and knowledge.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;systems&quot;&gt;Systems&lt;/h2&gt;
&lt;p&gt;So of course your &lt;strong&gt;file system&lt;/strong&gt; is one system. But here&amp;#39;s a bunch of others I can think of, in no particular order:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Email.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Any sort of physical note.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Any other physical artefact.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Digital notes. I bet you have more than one app?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Databases, e.g. Airtable.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Social media. Forum, Discord, Mastodon. At work this might be Teams or Slack. Instagram or TikTok if that&amp;#39;s your thing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To-do/reminders.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Calendar.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bookmarks and other management of online history. All of your open browser tabs that you don&amp;#39;t dare close.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Music, photos, TV, movies (typically managed by another application).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;All of your &lt;em&gt;different&lt;/em&gt; file systems: your local drives; cloud drives; external drives.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Backups.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apps that store data in their own sandbox: very common now on Apple&amp;#39;s platforms. This includes the &lt;a href=&quot;https://forum.johnnydecimal.com/t/new-user-index-confusion-thoughts/1105/7&quot;&gt;per-app folders in your iCloud Drive&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Any other app that has its own data store.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;e.g. my beloved &lt;a href=&quot;https://bear.app&quot;&gt;Bear&lt;/a&gt;, which manages your notes in an internal database: they&amp;#39;re not &lt;code&gt;.txt&lt;/code&gt; files in a file-system folder.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-bear&quot; id=&quot;user-content-fnref-bear&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bookmark-like data in other applications, e.g. Maps.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Contacts.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Private messages and group chats, probably across multiple apps.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Passwords and other security keys, e.g. SSH.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Code repositories, as they&amp;#39;re often distributed (e.g. GitHub) and might not live in your base &lt;code&gt;~/Documents&lt;/code&gt; folder.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I have mine at &lt;code&gt;~/dev&lt;/code&gt; so that it doesn&amp;#39;t synchronise up to iCloud.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-node_modules&quot; id=&quot;user-content-fnref-node_modules&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That&amp;#39;s what I came up with just by looking at the open applications on my Mac right now. There will be more.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-sendmemore&quot; id=&quot;user-content-fnref-sendmemore&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;4&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;If you don&amp;#39;t mind me saying so: holy shit! &lt;strong&gt;Life got complex.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&quot;data-and-knowledge&quot;&gt;Data and knowledge&lt;/h2&gt;
&lt;p&gt;These are similar, and possibly even the same thing: I need to give this more consideration.&lt;/p&gt;
&lt;p&gt;But for now we can say that your &lt;strong&gt;systems&lt;/strong&gt; serve to &lt;em&gt;contain&lt;/em&gt; &lt;strong&gt;data and knowledge.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Here I define &lt;strong&gt;data&lt;/strong&gt; as a large thing that takes work to [re]create. A photograph is data. A PDF is data. An Excel spreadsheet is data.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Knowledge&lt;/strong&gt; is something that originated in your brain&lt;sup&gt;&lt;a href=&quot;#user-content-fn-orsomeone&quot; id=&quot;user-content-fnref-orsomeone&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;5&lt;/a&gt;&lt;/sup&gt; that you could -- assuming you haven&amp;#39;t forgotten it -- recall and write down. It&amp;#39;s smaller than data. It&amp;#39;s someone&amp;#39;s birthday; a recipe; places you&amp;#39;d like to go for dinner; a memory to take the bins out on Thursday.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t know what to do with this yet, or whether the data/knowledge split is required or useful.&lt;/p&gt;
&lt;h1 id=&quot;this-is-why-i-cant-just-tell-you-what-to-do&quot;&gt;This is why I can&amp;#39;t just tell you what to do&lt;/h1&gt;
&lt;p&gt;If I wanted to, I could probably prescriptively, definitively tell you how to manage your file system.&lt;/p&gt;
&lt;p&gt;It should be clear that I can&amp;#39;t do this for &amp;#39;all of the systems and data and knowledge&amp;#39; in your life. It&amp;#39;s just too much. It changes too often.&lt;/p&gt;
&lt;p&gt;New systems are introduced all the time. We each use different systems for different reasons.&lt;/p&gt;
&lt;p&gt;Instead, I need to give you the tools and techniques to be able to integrate these systems into your life as needed.&lt;/p&gt;
&lt;h1 id=&quot;my-scope&quot;&gt;My scope&lt;/h1&gt;
&lt;p&gt;Okay, this is what we came here for. Can I define my scope yet?&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1019&quot; id=&quot;user-content-fnref-1019&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;6&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;I think so. Here&amp;#39;s what I plan to discover and organise.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;All of the systems and data and knowledge in my life.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;🤯&lt;/p&gt;
&lt;p&gt;I better get on with it! See you next time.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-olympus&quot;&gt;
&lt;p&gt;With Lucy&amp;#39;s voice recorder, an &lt;a href=&quot;https://duckduckgo.com/?q=olympus+ws-650s&amp;t=osx&amp;iax=images&amp;ia=images&quot;&gt;Olympus WS-650S&lt;/a&gt;, now discontinued. The modern version might be the &lt;a href=&quot;https://duckduckgo.com/?q=olympus+ws-882&amp;t=osx&amp;ia=web&quot;&gt;WS-882&lt;/a&gt;. I love walking with this thing: no distractions. You talk, it records. Leave the phone at home. &lt;a href=&quot;#user-content-fnref-olympus&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-bear&quot;&gt;
&lt;p&gt;You can trivially export your notes any time you like, which is why I&amp;#39;m not worried about lock-in. &lt;a href=&quot;#user-content-fnref-bear&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-node_modules&quot;&gt;
&lt;p&gt;Otherwise the many &lt;em&gt;many&lt;/em&gt; thousands of files in &lt;code&gt;node_modules&lt;/code&gt; cause sync headaches. &lt;a href=&quot;#user-content-fnref-node_modules&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-sendmemore&quot;&gt;
&lt;p&gt;Over time I will refine and categorise this list. If you can think of others, let me know. &lt;a href=&quot;#user-content-fnref-sendmemore&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 4&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-orsomeone&quot;&gt;
&lt;p&gt;Or someone else&amp;#39;s. &lt;a href=&quot;#user-content-fnref-orsomeone&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 5&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-1019&quot;&gt;
&lt;p&gt;Ref. Workbook section &lt;code&gt;10-19 Define your project&lt;/code&gt;. &lt;a href=&quot;#user-content-fnref-1019&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 6&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0024 Starting the JD&apos;ing process</title><link>https://johnnydecimal.com/22.00.0024/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0024/</guid><description>Starting my own journey of re-organisation.</description><pubDate>Wed, 03 Jan 2024 03:51:34 GMT</pubDate><content:encoded>&lt;h1 id=&quot;starting-the-jding-process&quot;&gt;Starting the JD&amp;#39;ing process&lt;/h1&gt;
&lt;p&gt;It&amp;#39;s the 3rd January. I &lt;a href=&quot;https://johnnydecimal.com/22.00.0023/&quot;&gt;decided to reset my life yesterday&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m exhausted already and I haven&amp;#39;t even started. Just the &lt;em&gt;thought&lt;/em&gt; of it is exhausting. So let&amp;#39;s recognise that -- I see you, fear -- and move on.&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t just pretend that this feeling doesn&amp;#39;t exist. Don&amp;#39;t pretend that what you&amp;#39;re about to do isn&amp;#39;t going to be difficult.&lt;/p&gt;
&lt;p&gt;Following the rough theme of the &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;Workbook&lt;/a&gt;, I&amp;#39;m going to &lt;strong&gt;define my scope&lt;/strong&gt; first. To help me do that, I&amp;#39;m going to brain-dump everything that I can think of. Here, now.&lt;/p&gt;
&lt;p&gt;(Even if I wasn&amp;#39;t writing this post, I often write notes to myself in this voice; as in, I type out a note as if I were talking to myself. It&amp;#39;s me, talking to me. I find this helps as it&amp;#39;s less boring, and allows me to recall things more easily.)&lt;/p&gt;
&lt;h2 id=&quot;what-prompted-this&quot;&gt;What prompted this?&lt;/h2&gt;
&lt;p&gt;I was chatting to one of my best friends and he reminded me about a video we made about ~15 years ago. I &lt;em&gt;think&lt;/em&gt; I have a copy of it somewhere; I recall seeing it recently. As in, some time this decade. But I couldn&amp;#39;t lay my hands on it now.&lt;/p&gt;
&lt;p&gt;That&amp;#39;s annoying.&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sentimental, but this video is precious. It would be silly to lose it.&lt;/p&gt;
&lt;p&gt;So let&amp;#39;s fix it by reorganising my entire life.&lt;/p&gt;
&lt;h2 id=&quot;think-about-your-goals&quot;&gt;Think about your &lt;em&gt;goals&lt;/em&gt;&lt;/h2&gt;
&lt;p&gt;This got me thinking. If you&amp;#39;re reading this, you want to be better organised.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Your reason might influence how you do this: how long you take, the methods you use, how well you do it, who else you involve. We&amp;#39;re all different: I can give you tools, but I can&amp;#39;t tell you what to want.&lt;/p&gt;
&lt;p&gt;So, just think about that. Write it down. &lt;em&gt;Why&lt;/em&gt; do you want to be organised? What do you want to achieve? What do you care about? What do you &lt;em&gt;not&lt;/em&gt; care about?&lt;/p&gt;
&lt;h3 id=&quot;my-goals&quot;&gt;My goals&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;I&lt;/em&gt; want to be organised because:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;It frustrates me when I know that a thing exists and I don&amp;#39;t know where it is.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This frustration can quickly derail my mental state. It&amp;#39;s an excuse to give up.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&amp;#39;ve applied this system to various jobs and home projects and I&amp;#39;ve felt the relief that it brings. But my own &amp;#39;personal life&amp;#39; has barely had any attention, and the worse it&amp;#39;s got the less I&amp;#39;ve cared.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;This has become a vicious cycle.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;So now I&amp;#39;m in a position where I&amp;#39;m Johnny.Decimal and my own personal stuff is a mess. This is silly.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Doing this will teach me more about the system.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;So I should pay attention to the process, and meticulously document my findings. 👋&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I need to know what to do next. More on this &lt;a href=&quot;#what-do-i-do-next&quot;&gt;below&lt;/a&gt;. This one&amp;#39;s really important.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I don&amp;#39;t care about:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Being a digital hoarder. I don&amp;#39;t have to keep everything I&amp;#39;ve ever done.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I have a feeling for what&amp;#39;s important and what isn&amp;#39;t. I&amp;#39;m going to listen to this voice and let it guide me.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Being perfect. I know that I can be a perfectionist and that this stops me from doing things. So I will recognise that and not allow it to derail me.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I like the aphorism &amp;#39;don&amp;#39;t let &lt;em&gt;perfect&lt;/em&gt; be the enemy of &lt;em&gt;good.&lt;/em&gt;&amp;#39;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-perfect&quot; id=&quot;user-content-fnref-perfect&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;decision&quot;&gt;Decision&lt;/h3&gt;
&lt;p&gt;I just made a decision:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;In this round of organisation, I either organise it, or I delete it.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;There will be no more folders called &lt;code&gt;archive of stuff from 2014 from USB drive&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I can leave these less-important potentially more-difficult decisions until the end: but they must be made.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;what-do-i-do-next&quot;&gt;What do I do next?&lt;/h2&gt;
&lt;p&gt;I run my own business now: Johnny.Decimal. So figuring out &lt;em&gt;what to do next&lt;/em&gt; is a) daunting and b) life-alteringly important.&lt;/p&gt;
&lt;p&gt;Late 2023 was &amp;#39;easy&amp;#39; from this perspective: finish the Workbook; make sure it&amp;#39;s selling enough to pay the rent; make sure people are happy with it and that there are no major issues. ✅&lt;/p&gt;
&lt;p&gt;January 2024 is a blank canvas. I have a decade&amp;#39;s worth of ideas, and the time to pursue them. But I have to choose, and be focused.&lt;/p&gt;
&lt;p&gt;So my new organisational system needs to enable this. Note that I don&amp;#39;t have any idea &lt;em&gt;how&lt;/em&gt; it&amp;#39;s going to do this yet: I&amp;#39;m just stating my intent.&lt;/p&gt;
&lt;h1 id=&quot;all-the-things&quot;&gt;All the things&lt;/h1&gt;
&lt;p&gt;Okay, so what are all the things? This is just going to be a bullet list of stuff to consider.&lt;/p&gt;
&lt;p&gt;In the Workbook I exhort you to go for walks and to give this the consideration it deserves. So here I will commit to myself: for the next 24 hours I will try to think about little else but this.&lt;/p&gt;
&lt;h2 id=&quot;my-job-for-the-next-24h&quot;&gt;My job for the next 24h&lt;/h2&gt;
&lt;p&gt;Until &lt;em&gt;at least&lt;/em&gt; 2024-01-04 15:00&lt;sup&gt;&lt;a href=&quot;#user-content-fn-date&quot; id=&quot;user-content-fnref-date&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt;, and until I think that this list is finished:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;I will not check my social media.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I will check my mail once, tomorrow morning.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-mail&quot; id=&quot;user-content-fnref-mail&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;3&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I will go for walks or a bike ride.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I will not listen to podcasts while I do this.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I&amp;#39;ll just think about this, as much as I can.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;the-list-will-be-in-a-new-post&quot;&gt;The list will be in a new post&lt;/h2&gt;
&lt;p&gt;I might as well post this one as-is. See you tomorrow.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-perfect&quot;&gt;
&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Perfect_is_the_enemy_of_good&quot;&gt;Perfect is the enemy of good, Wikipedia&lt;/a&gt; &lt;a href=&quot;#user-content-fnref-perfect&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-date&quot;&gt;
&lt;p&gt;You should have a quick way to insert a date/time. It&amp;#39;s so handy. I use &lt;a href=&quot;https://www.alfredapp.com/help/features/snippets/&quot;&gt;Alfred&amp;#39;s &amp;#39;Snippets&amp;#39; feature&lt;/a&gt; triggered by &lt;code&gt;;;jptime&lt;/code&gt;. (&amp;#39;jp&amp;#39; because before I knew it as ISO-8601 I knew it as &amp;#39;the way that Japanese people wrote the time&amp;#39;.) &lt;a href=&quot;#user-content-fnref-date&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-mail&quot;&gt;
&lt;p&gt;Sometimes people have account issues with the Workbook and I don&amp;#39;t like to leave them waiting. &lt;a href=&quot;#user-content-fnref-mail&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 3&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0023 Johnny.Decimal&apos;ing Johnny.Decimal</title><link>https://johnnydecimal.com/22.00.0023/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0023/</guid><description>I declare &apos;organisational bankruptcy&apos;.</description><pubDate>Tue, 02 Jan 2024 03:54:37 GMT</pubDate><content:encoded>&lt;h1 id=&quot;johnnydecimaling-johnnydecimal&quot;&gt;Johnny.Decimal&amp;#39;ing Johnny.Decimal&lt;/h1&gt;
&lt;p&gt;It&amp;#39;s 2024 and I am declaring &amp;#39;organisational bankruptcy&amp;#39;. Here&amp;#39;s the plan.&lt;/p&gt;
&lt;h2 id=&quot;hard-reset&quot;&gt;Hard reset&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m going to reset my entire life:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;All of my files, including my personal stuff and all Johnny.Decimal related projects.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This includes my archived stuff, all of the &amp;#39;hard drives in the tin in the garage&amp;#39;, anything that I&amp;#39;ve kept from an old computer. Some of this goes back to 2012.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My &amp;#39;to-do&amp;#39; system, which currently is a bunch of stuff in a bunch of places: at least 3 different applications, as well as paper scattered all over my desk.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;My email, and how I manage it day-to-day.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;Everything&lt;/em&gt; else.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;#39;ll discover it as I go: I haven&amp;#39;t started, other than to type out this blog post.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;in-public-less-structured&quot;&gt;In public, less structured&lt;/h2&gt;
&lt;p&gt;I&amp;#39;m going to do this all &amp;#39;live&amp;#39;: here on the blog, on &lt;a href=&quot;https://hachyderm.io/@johnnydecimal/111684183794711482&quot;&gt;Mastodon&lt;/a&gt;, YouTube, and possibly via podcast.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll document as I go, rather than spending too much time thinking through how to present it &amp;#39;neatly&amp;#39;. So my organisation process will be presented more as a stream-of-consciousness vs. Lucy&amp;#39;s more structured approach (see &lt;a href=&quot;#meanwhile-lucy-is-doing-the-same&quot;&gt;below&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;I&amp;#39;m going to record how much time I spend on each of these things so you know how long this sort of thing takes.&lt;/p&gt;
&lt;p&gt;If in doubt, I&amp;#39;ll over-share. You can always choose to ignore it. Feedback is welcome.&lt;/p&gt;
&lt;h1 id=&quot;meanwhile-lucy-is-doing-the-same&quot;&gt;Meanwhile, Lucy is doing the same&lt;/h1&gt;
&lt;p&gt;Lucy is also organising her life, but she&amp;#39;s following the &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;Workbook&lt;/a&gt; as if she wasn&amp;#39;t one of its co-authors.&lt;/p&gt;
&lt;p&gt;While she did edit the Workbook, she has very little practical experience with Johnny.Decimal.&lt;/p&gt;
&lt;p&gt;We&amp;#39;ll be using Lucy&amp;#39;s efforts to record &lt;strong&gt;the Johnny.Decimal Workshop.&lt;/strong&gt; Our hope is that &lt;em&gt;she&lt;/em&gt; can be the stand-in for &lt;em&gt;you:&lt;/em&gt; we hope that her experience will mirror yours; her questions answer yours.&lt;/p&gt;
&lt;p&gt;This will be a video course to accompany the Workbook. As with the Workbook, we&amp;#39;ll think hard about how to present this: it&amp;#39;ll be neat, concise, well recorded, and structured to help you succeed.&lt;/p&gt;
&lt;p&gt;This will be released as a paid course as soon as it&amp;#39;s finished, some time in Q1 2024.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0023-johnny-decimaling-johnny-decimal/1121&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0022 Taming Outlook</title><link>https://johnnydecimal.com/22.00.0022/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0022/</guid><description>On trying to manage work email.</description><pubDate>Tue, 21 Nov 2023 21:08:29 GMT</pubDate><content:encoded>&lt;h1 id=&quot;taming-outlook&quot;&gt;Taming Outlook&lt;/h1&gt;
&lt;p&gt;The &lt;a href=&quot;https://johnnydecimal.com/12.01/&quot;&gt;managing email&lt;/a&gt; page &lt;del&gt;has&lt;/del&gt; had a screenshot of Outlook under the heading I can fix your email.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-disappeared&quot; id=&quot;user-content-fnref-disappeared&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;While I&amp;#39;ve changed my mind about your email -- I think email is just broken and probably beyond fixing, especially at work -- a few people have asked exactly how I get Outlook looking like that.&lt;/p&gt;
&lt;p&gt;I have good news and bad news.&lt;/p&gt;
&lt;p&gt;Good news: I&amp;#39;ve documented it here, in a video.&lt;/p&gt;
&lt;p&gt;Bad news: this is all going away, thanks to the &amp;quot;&lt;a href=&quot;https://support.microsoft.com/en-us/office/getting-started-with-the-new-outlook-for-windows-656bb8d9-5a60-49b2-a98b-ba7822bc7627&quot;&gt;new Outlook&lt;/a&gt;&amp;quot;. Microsoft are simplifying all of their products for &lt;em&gt;reasons,&lt;/em&gt; and my first look at this new Outlook tells me that it basically doesn&amp;#39;t have any features.&lt;/p&gt;
&lt;p&gt;They&amp;#39;ve turned Outlook in to Hotmail, because they assume their customers are idiots.&lt;/p&gt;
&lt;p&gt;So, with that said, here&amp;#39;s the video.&lt;/p&gt;
&lt;div class=&quot;video-container&quot;&gt;&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube-nocookie.com/embed/AIPXi8LF9g4?si=dHGQQh0v1_tzxp1U&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0022-taming-outlook/1048&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-disappeared&quot;&gt;
&lt;p&gt;Note that this page has been rewritten since this blog post was written. &lt;a href=&quot;#user-content-fnref-disappeared&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0021 Test the Johnny.Decimal GPT</title><link>https://johnnydecimal.com/22.00.0021/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0021/</guid><description>I trained a GPT (barely).</description><pubDate>Tue, 21 Nov 2023 20:57:17 GMT</pubDate><content:encoded>&lt;h1 id=&quot;test-the-johnnydecimal-gpt&quot;&gt;Test the Johnny.Decimal GPT&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve been training a GPT at OpenAI, home of ChatGPT. It&amp;#39;s amazing. The structured nature of Johnny.Decimal lends itself to this very well.&lt;/p&gt;
&lt;p&gt;You can try it out here.&lt;/p&gt;
&lt;article class=&quot;link-preview astro-ogavuj4r&quot;&gt;&lt;div class=&quot;link-preview__content astro-ogavuj4r&quot;&gt;&lt;header class=&quot;astro-ogavuj4r&quot;&gt;&lt;a class=&quot;link-preview__title astro-ogavuj4r&quot; href=&quot;https://chat.openai.com/g/g-j7o133XOW-johnny-decimal-architect&quot;&gt;ChatGPT - Johnny.Decimal Architect&lt;/a&gt; &lt;small class=&quot;link-preview__domain astro-ogavuj4r&quot;&gt;chatgpt.com&lt;/small&gt;&lt;/header&gt;&lt;small class=&quot;link-preview__description astro-ogavuj4r&quot;&gt;Johnny.Decimal system generator&lt;/small&gt;&lt;/div&gt;&lt;img src=&quot;https://chatgpt.com/backend-api/estuary/content?id=file-viZoo3dIAmR7V35vQO3ZO1Ae&amp;gizmo_id=g-j7o133XOW&amp;ts=493250&amp;p=gpp&amp;cid=1&amp;sig=12da688d56ddbb52f3a948ac96b9020c62d566419f888b73cdaf3a113ebfaa73&amp;v=0&quot; alt=&quot;&quot; width=&quot;1200&quot; height=&quot;630&quot; class=&quot;astro-ogavuj4r&quot;&gt;&lt;/article&gt;
&lt;h2 id=&quot;notes&quot;&gt;Notes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Requires a GPT Plus subscription.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Will disappear at some point: I&amp;#39;m going to turn this in to some sort of a product, honestly.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;But y&amp;#39;all are family so help me test now and I&amp;#39;ll sort you out later. ❤️️&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Suggested prompts. Works great with &amp;#39;generate me an area to...&amp;#39;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Generate an area to manage my small business&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Generate an area to manage my knitting hobby, and provide a bash prompt that will create the folders in my file system&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;example&quot;&gt;Example&lt;/h2&gt;
&lt;p&gt;Prompt: &lt;strong&gt;create a simple area for my knitting hobby, and give me a bash script to create folders&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Output:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;50-59 Knitting Projects
   51 Pattern Library
      51.01 Cardigans
      51.02 Afghans
      51.03 Mittens
   52 Yarn Stock
      52.01 Alpaca
      52.02 Merino
      52.03 Bamboo
   53 Accessories &amp;amp; Tools
      53.01 Circular Needles
      53.02 Crochet Hooks
      53.03 Gauges &amp;amp; Counters
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The bash script:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#!/bin/bash

# Directory for knitting projects
baseDir=&amp;quot;Knitting_Projects&amp;quot;

# Creating base and subdirectories
mkdir -p &amp;quot;$baseDir/51_Pattern_Library&amp;quot; &amp;quot;$baseDir/52_Yarn_Stock&amp;quot; &amp;quot;$baseDir/53_Accessories_Tools&amp;quot;

# Creating subdirectories for each category
mkdir -p &amp;quot;$baseDir/51_Pattern_Library/51.01_Cardigans&amp;quot; &amp;quot;$baseDir/51_Pattern_Library/51.02_Afghans&amp;quot; &amp;quot;$baseDir/51_Pattern_Library/51.03_Mittens&amp;quot;
mkdir -p &amp;quot;$baseDir/52_Yarn_Stock/52.01_Alpaca&amp;quot; &amp;quot;$baseDir/52_Yarn_Stock/52.02_Merino&amp;quot; &amp;quot;$baseDir/52_Yarn_Stock/52.03_Bamboo&amp;quot;
mkdir -p &amp;quot;$baseDir/53_Accessories_Tools/53.01_Circular_Needles&amp;quot; &amp;quot;$baseDir/53_Accessories_Tools/53.02_Crochet_Hooks&amp;quot; &amp;quot;$baseDir/53_Accessories_Tools/53.03_Gauges_Counters&amp;quot;

echo &amp;quot;Folders for Knitting Projects have been successfully created.&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The bash script needs work: as of this post, it insists on replacing spaces with underscores.&lt;/p&gt;
&lt;h1 id=&quot;roadmap&quot;&gt;Roadmap&lt;/h1&gt;
&lt;p&gt;This is great for inspiration, but I see the end goal as an app/executable that you point at your file system -- the messy one that you have today -- and it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Detects the names of your existing files and folders, ignoring all the cruft that isn&amp;#39;t actually &lt;em&gt;your stuff.&lt;/em&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Generates a new Johnny.Decimal structure for you using the GPT.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Validates the structure, i.e. confirms the numbers are all consistent.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Confirms that you like it, trying again if not.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Creates those folders in your file system.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Although honestly I&amp;#39;ve given this about half an hour&amp;#39;s thought at this point.&lt;/p&gt;
&lt;p&gt;Thoughts?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0021-test-the-johnny-decimal-gpt/1047&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0020 Renaming a category is &apos;free&apos;</title><link>https://johnnydecimal.com/22.00.0020/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0020/</guid><description>On renaming your categories.</description><pubDate>Tue, 14 Nov 2023 02:01:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;renaming-a-category-is-free&quot;&gt;Renaming a category is &amp;#39;free&amp;#39;&lt;/h1&gt;
&lt;p&gt;In the process of sending out some stickers, Lucy just had to create a new category in &lt;code&gt;D85 Johnny.Decimal business&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;It naturally fits in to our &lt;code&gt;30-39 Marketing&lt;/code&gt; area, but then we need a new category. And in this situation, we don&amp;#39;t really know what the &lt;em&gt;future&lt;/em&gt; of that category will be.&lt;/p&gt;
&lt;p&gt;Because it&amp;#39;s not just going to be stickers. That&amp;#39;s a really narrow category, which is usually a red flag.&lt;/p&gt;
&lt;p&gt;I can&amp;#39;t know what &lt;em&gt;else&lt;/em&gt; might go in there, because it doesn&amp;#39;t exist yet. And I don&amp;#39;t want to sit and think about that, because I have better things to do.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m stuck: a mental block. The worst.&lt;/p&gt;
&lt;p&gt;But, I realised: &lt;strong&gt;renaming a category has no cost!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The category name doesn&amp;#39;t appear in any files. You can just ... change it. Expand it. Whenever you want, later.&lt;/p&gt;
&lt;p&gt;It doesn&amp;#39;t matter. There are no consequences.&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s interesting and might influence how you create things.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Discuss this &lt;a href=&quot;https://forum.johnnydecimal.com/t/22-00-0020-renaming-a-category-is-free/1030&quot;&gt;on the forum&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0019 Site content refresh</title><link>https://johnnydecimal.com/22.00.0019/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0019/</guid><description>A programming notice.</description><pubDate>Mon, 13 Nov 2023 02:03:35 GMT</pubDate><content:encoded>&lt;h1 id=&quot;site-content-refresh&quot;&gt;Site content refresh&lt;/h1&gt;
&lt;p&gt;A conversation with a reader made me realise that this site had been written for the wrong audience.&lt;/p&gt;
&lt;p&gt;As an ex-IT-project-manager myself, I&amp;#39;d always assumed that I should write for people at work. You have to write for &lt;em&gt;someone,&lt;/em&gt; and that&amp;#39;s what I picked.&lt;/p&gt;
&lt;p&gt;Wrong! I think most of you are at home. Or you&amp;#39;re &lt;em&gt;starting&lt;/em&gt; at home, and taking this to work later.&lt;/p&gt;
&lt;p&gt;So I&amp;#39;m in the process of re-writing these pages with that in mind. I want the system to be more relatable to more people.&lt;/p&gt;
&lt;p&gt;Nothing about the system changes: it&amp;#39;s just how I present it, and the examples that I use.&lt;/p&gt;
&lt;p&gt;Until it&amp;#39;s finished, accept my apologies if feels a bit disjointed.&lt;/p&gt;
&lt;h2 id=&quot;progress&quot;&gt;Progress&lt;/h2&gt;
&lt;h3 id=&quot;done&quot;&gt;Done ✅&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/11.01/&quot;&gt;11.01 Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/11.02/&quot;&gt;11.02 Areas &amp;amp; categories&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://johnnydecimal.com/11.03/&quot;&gt;11.03 IDs&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;to-do&quot;&gt;To-do 🚧&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Everything else: I&amp;#39;ll update the pages in order from 11.04 onwards.&lt;/li&gt;
&lt;/ul&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0018 Defaults</title><link>https://johnnydecimal.com/22.00.0018/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0018/</guid><description>My &apos;default apps&apos;.</description><pubDate>Thu, 09 Nov 2023 19:08:01 GMT</pubDate><content:encoded>&lt;h1 id=&quot;defaults&quot;&gt;Defaults&lt;/h1&gt;
&lt;p&gt;The Hemispheric Views podcast that &lt;a href=&quot;https://listen.hemisphericviews.com/096&quot;&gt;I was on&lt;/a&gt; the other week had a fun &lt;a href=&quot;https://listen.hemisphericviews.com/097&quot;&gt;Duel of the Defaults&lt;/a&gt; episode last week.&lt;/p&gt;
&lt;p&gt;Do you use the default stuff that comes with the computer, or something else?&lt;/p&gt;
&lt;p&gt;I definitely feel like mine has tended more to the default over the last five years. Here it is.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Mail Client: Mail.app.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Mail Server: &lt;a href=&quot;https://migadu.com&quot;&gt;Migadu&lt;/a&gt;. Love Migadu, 💯&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Notes: &lt;a href=&quot;https://bear.app&quot;&gt;Bear&lt;/a&gt;, sorry @canion.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To-Do: Scrap of paper and pencil; Reminders for longer-term, remind-me-on-a-day.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Though I never use Reminders.app: stuff gets in there via Siri or Fantastical, and Fantastical tells me it&amp;#39;s due.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;iPhone Photo Shooting: Camera, from the Home Screen button.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I wish I could turn off the swipe, I only do it by accident and I realise when my phone sets on fire in my pocket.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Photo Management: Photos.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It&amp;#39;s just a decade of chaos in there worth 200GB of my iCloud storage. Mostly photos of whiteboards.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Calendar: Fantastical/iCloud.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Cloud file storage: iCloud, and the Synology under the desk.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;RSS: NetNewsWire sync&amp;#39;d with iCloud.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Contacts: Contacts.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Which I brought to the first iPhone from my Nokia, and have never deleted a single one, and they&amp;#39;re all immaculately tagged with the label and the international number format, and I have 1,690 -- the vast, vast majority of which I have &lt;em&gt;no idea&lt;/em&gt; who they are any more; but if I&amp;#39;ve ever met you, you&amp;#39;re in there.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Browser: Safari, even for development; I switched to its dev tools last year, they&amp;#39;re terrific.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Chat: iMessage/Discord.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Bookmarks: Safari, although I don&amp;#39;t really keep bookmarks.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The trick is to set your history to never expire (&lt;em&gt;Safari &amp;gt; Settings &amp;gt; General &amp;gt; Remove history items: Manually&lt;/em&gt;), and then every site you&amp;#39;ve ever visited will autocomplete, so why bother with bookmarks?&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Read It Later: &lt;code&gt;null&lt;/code&gt;, don&amp;#39;t use; is that -1 points, @canion?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Word Processing: Pages, or VSCode because I need Vim keybindings.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Spreadsheets: Excel.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sorry Numbers but nah.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Presentations: &lt;a href=&quot;https://ia.net/presenter&quot;&gt;iA Presenter&lt;/a&gt;. Lush OMG.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Worth downloading for the video that plays when it launches; the only video in all of history that I ask to play again the next time.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div id=&quot;pencil&quot;&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Shopping Lists: A &lt;a href=&quot;https://fieldnotesbrand.com&quot;&gt;Field Notes&lt;/a&gt; notebook and a &lt;a href=&quot;https://www.penaddict.com/blog/2022/11/21/mitsubishi-9850-hb-pencil-review&quot;&gt;Mitsubishi 9850&lt;/a&gt; pencil.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Meal Planning: I keep recipes in &lt;a href=&quot;https://mela.recipes&quot;&gt;Mela.app&lt;/a&gt; which is &lt;em&gt;amazing&lt;/em&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Budgeting &amp;amp; Personal Finance: &lt;code&gt;null&lt;/code&gt; unless you count my bank&amp;#39;s iPhone app?&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;News: after doom-scrolling Covid for the entirety of 2020 I stopped reading all news as of 2021. I haven&amp;#39;t been to a news site since then. It&amp;#39;s one of the best things I&amp;#39;ve ever done for my mental health.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Of course, I get news. I see Lucy&amp;#39;s screen; she tells me things; people send me links; we put the radio on. This isn&amp;#39;t a religious thing ... I just don&amp;#39;t browse it, myself.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Music: Apple Music.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Typing this listening to Texas&amp;#39; 1989 (?!!?!) - album &amp;#39;Southside&amp;#39; because it was suggested.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Podcasts: Overcast.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Passwords: 1Password.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There&amp;#39;s now &lt;del&gt;98&lt;/del&gt; 99 of these that &lt;a href=&quot;https://defaults.rknight.me&quot;&gt;Robb Knight has collected here&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0017 Notion template (experiment)</title><link>https://johnnydecimal.com/22.00.0017/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0017/</guid><description>A Notion template.</description><pubDate>Mon, 23 Oct 2023 16:17:33 GMT</pubDate><content:encoded>&lt;h1 id=&quot;notion-template-experiment&quot;&gt;Notion template (experiment)&lt;/h1&gt;
&lt;p&gt;I&amp;#39;ve been experimenting with Notion as a way to keep your index. I love it so far.&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re interested there&amp;#39;s &lt;a href=&quot;https://discord.com/channels/822215537589354566/1165295392829755472&quot;&gt;a Discord thread here&lt;/a&gt;, I&amp;#39;d love feedback. The templates are linked there along with a couple of overview videos.&lt;/p&gt;
&lt;p&gt;All very sketchy at this point. Use at your own risk blah blah.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0016 The freelancer problem</title><link>https://johnnydecimal.com/22.00.0016/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0016/</guid><description>We start to investigate the &apos;freelancer problem&apos; (video).</description><pubDate>Sun, 17 Sep 2023 16:20:05 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-freelancer-problem&quot;&gt;The freelancer problem&lt;/h1&gt;
&lt;p&gt;&lt;a href=&quot;https://forum.johnnydecimal.com/t/the-freelancer-system/905&quot;&gt;Daan on the forum asked a common question&lt;/a&gt; about &amp;#39;the freelancer system&amp;#39;.&lt;/p&gt;
&lt;p&gt;This is the problem where the stuff you produce simply doesn&amp;#39;t fit in to a 10 × 10 system. You have more than ten clients, and/or each has more than ten projects or jobs.&lt;/p&gt;
&lt;p&gt;In an effort to nut this one out, Lucy and I did the first Johnny.Decimal Q&amp;amp;A video on YouTube. Rather than embed it here, which is currently a bit broken (I have some site back-end work to do), here&amp;#39;s the link.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=v69U7JC3XNc&quot;&gt;The freelancer problem - YouTube&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;All feedback and comments welcome. This isn&amp;#39;t a solved problem yet. The forum post is the place to go. Thanks.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0015 Anna at Analog Office</title><link>https://johnnydecimal.com/22.00.0015/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0015/</guid><description>A link to a post by Anna Havron.</description><pubDate>Fri, 15 Sep 2023 10:29:26 GMT</pubDate><content:encoded>&lt;h1 id=&quot;anna-at-analog-office&quot;&gt;Anna at Analog Office&lt;/h1&gt;
&lt;p&gt;A great post from &lt;a href=&quot;https://analogoffice.net/2023/09/08/johnnydecimal-and-me.html&quot;&gt;Anna Havron at Analog Office&lt;/a&gt; about her use of Johnny.Decimal.&lt;/p&gt;
&lt;p&gt;Particularly important is the recognition that this thing takes time. Of course it does: it&amp;#39;s work that you weren&amp;#39;t doing before. But...&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Pay now, or pay later.&lt;br&gt;
--Anna&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Nailed it.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0014 Categorisation</title><link>https://johnnydecimal.com/22.00.0014/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0014/</guid><description>I realise the power of categorisation.</description><pubDate>Tue, 12 Sep 2023 09:40:38 GMT</pubDate><content:encoded>&lt;h1 id=&quot;categorisation&quot;&gt;Categorisation&lt;/h1&gt;
&lt;p&gt;I use &lt;a href=&quot;https://apps.apple.com/us/app/mela-recipe-manager/id1548466041&quot;&gt;Mela -- Recipe Manager&lt;/a&gt; on my iPad. It&amp;#39;s a great app, I recommend it.&lt;/p&gt;
&lt;p&gt;Once I&amp;#39;d saved a dozen or so recipes -- more than fit on a single screen -- I realised that I couldn&amp;#39;t find things. It&amp;#39;s the &lt;a href=&quot;https://www.martinfowler.com/bliki/TwoHardThings.html&quot;&gt;old computer science problem&lt;/a&gt;: naming things is hard.&lt;/p&gt;
&lt;p&gt;Take one of the favourites, &lt;a href=&quot;https://amiraspantry.com/chicken-shawarma-rice/&quot;&gt;chicken shawarma&lt;/a&gt;. That&amp;#39;s how I saved it, but in my mind I think of it as &amp;#39;Lebanese chicken&amp;#39;. And so I can never find it.&lt;/p&gt;
&lt;p&gt;A trivial problem indeed, but I think it serves as a nice example. Because &lt;em&gt;exactly the same problem&lt;/em&gt; occurs whenever we save anything, anywhere. Did we call it &amp;#39;chicken&amp;#39; or &amp;#39;shawarma&amp;#39; or &amp;#39;lebanese&amp;#39; or something else? All are equally valid, and we decide arbitrarily when we do the saving.&lt;/p&gt;
&lt;p&gt;The solution, of course, is categorisation. As soon as I realised that I was becoming frustrated because I couldn&amp;#39;t find a recipe, I looked for a categorisation feature in Mela and found it.&lt;/p&gt;
&lt;p&gt;And so now I don&amp;#39;t search for recipes. I browse categories.&lt;/p&gt;
&lt;picture class=&quot;JDImage6 no-border astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (min-width: 600px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: light) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt;  &lt;source media=&quot;(prefers-color-scheme: dark) and (max-width: 599px)&quot; class=&quot;astro-3zw7efbj&quot;&gt; &lt;img alt=&quot;A screenshot of the iPad app &apos;Mela&apos;. The left-third navigation pane shows my menu categories, which are the countries of the world: Thai, Indian, and so on. The main window shows the recipe for Taiwanese Three Cup Chicken, which you should cook. It&apos;s _amazing._&quot; class=&quot; no-caption astro-3zw7efbj&quot; loading=&quot;lazy&quot; src=&quot;https://johnnydecimal.com/img/_new/22.00.0014-mela-lebanese-900x637.png&quot; width=&quot;700&quot; height=&quot;495&quot;&gt;  &lt;/picture&gt; </content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0013 The absolute necessity of an index</title><link>https://johnnydecimal.com/22.00.0013/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0013/</guid><description>I realise the importance of the index.</description><pubDate>Sun, 10 Sep 2023 13:44:47 GMT</pubDate><content:encoded>&lt;h1 id=&quot;the-absolute-necessity-of-an-index&quot;&gt;The absolute necessity of an index&lt;/h1&gt;
&lt;p&gt;The more I think about &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;the index&lt;/a&gt; the more I come to think that its existence is an absolute necessity.&lt;/p&gt;
&lt;p&gt;It hit me watching &lt;em&gt;The Office&lt;/em&gt; last week. David Brent is introducing a new work experience girl. This is 2001: everyone still has a massive &lt;a href=&quot;https://duckduckgo.com/?q=crt+monitor&amp;ia=images&amp;iax=images&quot;&gt;CRT monitor&lt;/a&gt; on their desk.&lt;/p&gt;
&lt;p&gt;&amp;quot;Everyone&amp;#39;s got email&amp;quot;, he tells her. &amp;quot;Have you used email before?&amp;quot;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-offices01e02&quot; id=&quot;user-content-fnref-offices01e02&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;p&gt;In 2001 the PC was still fairly novel. We certainly didn&amp;#39;t all have one at home. We had them at work, but they were slow and clunky. Hard drive space was severely constrained. We weren&amp;#39;t creating that much data -- we couldn&amp;#39;t if we tried -- so there just wasn&amp;#39;t that much to keep track of.&lt;/p&gt;
&lt;p&gt;Just over 20 years later and the world couldn&amp;#39;t be more different. All of us use computers all day. The amount of data that we are generating has exploded, and &lt;em&gt;we haven&amp;#39;t changed our behaviour at all.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://johnnydecimal.com/22.00.0010/&quot;&gt;None of us have been given any training&lt;/a&gt;, and the way we store and retrieve data hasn&amp;#39;t changed. We still just make stuff, wonder where to save it, and drop it in some hastily-named folder somewhere expecting to be able to find it later.&lt;/p&gt;
&lt;p&gt;Sitting writing this in the garden, I look to the garage for an analogy. It&amp;#39;s full of labelled boxes of stuff.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-thingsthatstick&quot; id=&quot;user-content-fnref-thingsthatstick&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;2&lt;/a&gt;&lt;/sup&gt; Imagine if nothing was labelled. It&amp;#39;d be chaos. But the analogy breaks down, because &lt;em&gt;at least the garage is finite.&lt;/em&gt; At least there are only so many boxes I can put in any given box, or how deep my box nesting can go.&lt;/p&gt;
&lt;p&gt;These constraints on sanity do not exist on your file system.&lt;/p&gt;
&lt;p&gt;A more appropriate analogy is a large library. Imagine your national library without a catalogue. That&amp;#39;s no longer a library: it&amp;#39;s just a building full of books.&lt;/p&gt;
&lt;h2 id=&quot;the-action-is-on-you&quot;&gt;The action is on you&lt;/h2&gt;
&lt;p&gt;And so if you run a project or a department and you &lt;em&gt;don&amp;#39;t&lt;/em&gt; use an index, what exactly are you expecting to happen? Are you hoping that people will just magically know where everything is?&lt;/p&gt;
&lt;p&gt;I think we&amp;#39;re all deluded. I&amp;#39;m not blaming you; this has crept up on us all. It doesn&amp;#39;t feel like 20 years since I first saw &lt;em&gt;The Office.&lt;/em&gt; But here we are. You know there&amp;#39;s a problem now. Go and do something about it.&lt;/p&gt;
&lt;p&gt;Imagine on your first day instead of being given the company org chart, being given access to the index.&lt;/p&gt;
&lt;p&gt;Imagine being able to know what exists, and where it is.&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-offices01e02&quot;&gt;
&lt;p&gt;The Office, S01E02, 06:56. &lt;a href=&quot;#user-content-fnref-offices01e02&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&quot;user-content-fn-thingsthatstick&quot;&gt;
&lt;p&gt;My favourite being &amp;#39;Things that stick&amp;#39;: all of the tapes, glues, twines, and other implements of attachment. &lt;a href=&quot;#user-content-fnref-thingsthatstick&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 2&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0012 Being disorganised: $4bn</title><link>https://johnnydecimal.com/22.00.0012/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0012/</guid><description>We have discovered the cost of being disorganised. It&apos;s about $4bn.</description><pubDate>Tue, 25 Jul 2023 11:57:07 GMT</pubDate><content:encoded>&lt;h1 id=&quot;being-disorganised-4bn&quot;&gt;Being disorganised: $4bn&lt;/h1&gt;
&lt;blockquote&gt;
&lt;p&gt;Originally a &lt;a href=&quot;https://www.linkedin.com/posts/johnny-noble_as-victoria-awaits-the-final-bill-for-scrapping-activity-7089417499477217280-Uz89&quot;&gt;LinkedIn post&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We have discovered the cost of being disorganised. It&amp;#39;s about $4bn.&lt;/p&gt;
&lt;p&gt;Victoria (a state here in Australia) famously just cancelled the Commonwealth Games due to a budget blowout of $4bn. Apparently &amp;quot;&lt;a href=&quot;https://www.abc.net.au/news/2023-07-22/analysis-commonwealth-games-how-did-we-get-here/102633664&quot;&gt;the budget had failed to cost security and transport, and having multiple athletes villages was also underquoted&lt;/a&gt;&amp;quot;.&lt;/p&gt;
&lt;p&gt;&amp;quot;It&amp;#39;s like we&amp;#39;ve never done this before&amp;quot;, I joked to Lucy. Of course we &lt;em&gt;have&lt;/em&gt; done this before: as recently as &lt;a href=&quot;https://en.wikipedia.org/wiki/2018_Commonwealth_Games&quot;&gt;2018 in the Gold Coast&lt;/a&gt;, and &lt;a href=&quot;https://en.wikipedia.org/wiki/2006_Commonwealth_Games&quot;&gt;Melbourne in 2006&lt;/a&gt;. Melbourne is the state capital of Victoria!&lt;/p&gt;
&lt;p&gt;The point of having done it before is that you learned something from the experience. You spent a tremendous amount of money costing security, transport, and athlete villages. So then the next time you do it, you can use what you learned.&lt;/p&gt;
&lt;p&gt;But we can&amp;#39;t do that, can we? Because we&amp;#39;re disorganised. I wonder if the organisers of Victoria 2026 even approached the Gold Coast team. Was there any point?&lt;/p&gt;
&lt;p&gt;If you&amp;#39;d asked anyone for the files related to the Games five years ago, could they have given them to you?&lt;/p&gt;
&lt;p&gt;Would what you were given have been any use at all? Or would it have been a disorganised medley of folders littered with files called &lt;code&gt;Copy of copy of Transport budget for Gold Coast (001).xlsx&lt;/code&gt;?&lt;/p&gt;
&lt;p&gt;Disorganisation is costing us billions of dollars a year. Most of it is hidden; this was the rare case where we see it laid bare.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0011 Naming your areas and categories</title><link>https://johnnydecimal.com/22.00.0011/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0011/</guid><description>Ideas about how to name your areas and categories.</description><pubDate>Tue, 11 Jul 2023 08:52:39 GMT</pubDate><content:encoded>&lt;h1 id=&quot;naming-your-areas-and-categories&quot;&gt;Naming your areas and categories&lt;/h1&gt;
&lt;p&gt;Naming areas and categories can be difficult. I find areas are the hardest: by definition, you&amp;#39;re trying to convey a lot of information in a few words.&lt;/p&gt;
&lt;p&gt;I seem to strive for single- or double-word area names. But why? Be descriptive: it&amp;#39;s a computer. Words are free.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(If you&amp;#39;re at work Microsoft will ruin this for you. You&amp;#39;ll run in to &lt;a href=&quot;https://support.microsoft.com/en-us/office/restrictions-and-limitations-in-onedrive-and-sharepoint-64883a5d-228e-48f5-b3d2-eb39e07630fa#filenamepathlengths&quot;&gt;filename length restrictions&lt;/a&gt; sooner rather than later.)&lt;/em&gt;&lt;/p&gt;
&lt;h2 id=&quot;spatial-names&quot;&gt;&amp;#39;Spatial&amp;#39; names&lt;/h2&gt;
&lt;p&gt;Lucy and I had an idea over dinner the other week: name your areas like places. Keeping something creative? Call it &lt;code&gt;The studio&lt;/code&gt;. Where does all of your paperwork live? &lt;code&gt;The office&lt;/code&gt;, of course. You might keep your research in &lt;code&gt;The library&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Computers are boring: making them interesting in &lt;em&gt;any tiny way&lt;/em&gt; helps your brain.&lt;/p&gt;
&lt;h2 id=&quot;input-vs-output&quot;&gt;Input vs. output&lt;/h2&gt;
&lt;p&gt;In the creative bubble that is our studio, we use Johnny.Decimal to track the creation of artefacts for LinkedIn, YouTube, etc.&lt;/p&gt;
&lt;p&gt;This is a pattern that I&amp;#39;ll document when I&amp;#39;m happy with it -- it&amp;#39;s a tricky one that I don&amp;#39;t think we&amp;#39;ve nailed yet -- but one thing I&amp;#39;ve found helps is differentiating between &amp;#39;inputs&amp;#39; and &amp;#39;outputs&amp;#39;.&lt;/p&gt;
&lt;p&gt;&amp;#39;Inputs&amp;#39; are things you need &lt;em&gt;in order to create a thing.&lt;/em&gt; In the creative world this might be your logo and brand colours.&lt;/p&gt;
&lt;p&gt;&amp;#39;Outputs&amp;#39; are &lt;em&gt;the things you create:&lt;/em&gt; the video that is eventually seen by the world.&lt;/p&gt;
&lt;p&gt;So rather than naming the area&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Creative material&lt;/code&gt;, name it&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Creative material (input)&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Rather than&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Marketing&lt;/code&gt;,&lt;/li&gt;
&lt;li&gt;&lt;code&gt;Marketing (output)&lt;/code&gt; might be clearer.&lt;/li&gt;
&lt;/ul&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0010 Manifesto part 4: Why aren&apos;t we given training?</title><link>https://johnnydecimal.com/22.00.0010/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0010/</guid><description>When we kept everything on paper, it was someone&apos;s job to organise it. This was an occupation: you were trained. You became an expert.</description><pubDate>Thu, 29 Jun 2023 11:39:28 GMT</pubDate><content:encoded>&lt;p&gt;When we kept everything on paper, it was someone&amp;#39;s job to organise it. This was an occupation: you were trained. You became an expert.&lt;/p&gt;
&lt;p&gt;Now we employ Gen Z&amp;#39;s who didn&amp;#39;t grow up with the concept of &amp;#39;a file&amp;#39;&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; yet we expect them to navigate the byzantine hierarchy of the company&amp;#39;s SharePoint.&lt;/p&gt;
&lt;p&gt;You work at a keyboard all day, so we make you sit through a module so you know to bend your knees when you lift a box.&lt;/p&gt;
&lt;p&gt;But when it comes to information management: you&amp;#39;re on your own.&lt;/p&gt;
&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/NJSknlR9Ccw&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;&amp;quot;&lt;a href=&quot;https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z&quot;&gt;File not found&lt;/a&gt;&amp;quot;. &lt;em&gt;The Verge,&lt;/em&gt; 22 September 2021. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0009 Manifesto part 3: You had to be organised</title><link>https://johnnydecimal.com/22.00.0009/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0009/</guid><description>When we kept everything on paper, you had to be organised. There was no other option.</description><pubDate>Wed, 28 Jun 2023 16:29:11 GMT</pubDate><content:encoded>&lt;p&gt;When we kept everything on paper, you had to be organised. There was no other option.&lt;/p&gt;
&lt;p&gt;If you weren&amp;#39;t organised, the information was lost. Not lost as in &amp;#39;it&amp;#39;ll take me a while to find it&amp;#39;: lost as in &amp;#39;gone forever&amp;#39;.&lt;/p&gt;
&lt;p&gt;Now you &lt;em&gt;can&lt;/em&gt; be disorganised, but at what cost? The cost is the time it takes you to find a thing; it is the risk that the thing that you find is a duplicate or an old version. It is the constant frustration that comes from knowing that something exists, but having no idea where it is.&lt;/p&gt;
&lt;p&gt;We all feel this every day and we have come to believe that it is normal.&lt;/p&gt;
&lt;p&gt;It is not normal.&lt;/p&gt;
&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/suAYkbSlfgM&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0008 Manifesto part 2: Information wasn&apos;t always free</title><link>https://johnnydecimal.com/22.00.0008/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0008/</guid><description>Anyone can duplicate anything, instantly, invisibly, for free. We assume this is an improvement. Is it?</description><pubDate>Wed, 28 Jun 2023 16:28:11 GMT</pubDate><content:encoded>&lt;h1 id=&quot;manifesto-part-2-information-wasnt-always-free&quot;&gt;Manifesto part 2: Information wasn&amp;#39;t always free&lt;/h1&gt;
&lt;p&gt;When we kept everything on paper, generating information came with a cost.&lt;/p&gt;
&lt;p&gt;Paper cost money. Typing out a document took real effort. Duplicating a document meant a trip to the photocopier.&lt;/p&gt;
&lt;p&gt;Every document produced was a tangible thing. It was there, on your desk. You couldn&amp;#39;t ignore it.&lt;/p&gt;
&lt;p&gt;Now anyone can duplicate anything, instantly, invisibly, for free. We assume this is an improvement.&lt;/p&gt;
&lt;p&gt;Is it?&lt;/p&gt;
&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/mQPWUAPJgnE&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0007 Manifesto part 1: The problem</title><link>https://johnnydecimal.com/22.00.0007/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0007/</guid><description>When we kept everything on paper, organised people had these things called filing cabinets.</description><pubDate>Wed, 28 Jun 2023 16:26:11 GMT</pubDate><content:encoded>&lt;h1 id=&quot;manifesto-part-1-the-problem&quot;&gt;Manifesto part 1: The problem&lt;/h1&gt;

&lt;h1 id=&quot;manifesto-part-1-the-problem-1&quot;&gt;Manifesto part 1: The problem&lt;/h1&gt;
&lt;p&gt;When we kept everything on paper, organised people had these things called filing cabinets.&lt;/p&gt;
&lt;p&gt;They stored all of their documents in them in a structured way so that they could find them again.&lt;/p&gt;
&lt;p&gt;Now those same people store all of their files in arbitrarily named folders on their company&amp;#39;s share drive and wonder why they can&amp;#39;t find anything.&lt;/p&gt;
&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/R-XjZt93HPE&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0006 RSS duplicate items</title><link>https://johnnydecimal.com/22.00.0006/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0006/</guid><description>A programming notice.</description><pubDate>Wed, 21 Jun 2023 10:07:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;rss-duplicate-items&quot;&gt;RSS duplicate items&lt;/h1&gt;
&lt;p&gt;The link back to the site from items in the &lt;a href=&quot;https://johnnydecimal.com/21.03/&quot;&gt;RSS feed&lt;/a&gt; has been incorrect.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve fixed it now, but the thing that makes each entry unique is its URL: so now your RSS reader will probably see a bunch of &amp;#39;new&amp;#39; articles, which are duplicates of the old articles. You can ignore them.&lt;/p&gt;
&lt;p&gt;Sorry! Like I&amp;#39;ve said, I&amp;#39;m hand-coding this site. Like I might not have said, I&amp;#39;m not &lt;em&gt;actually&lt;/em&gt; a web developer by trade...&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0005 An old colleague calls</title><link>https://johnnydecimal.com/22.00.0005/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0005/</guid><description>Johnny.Decimal is useful years later.</description><pubDate>Wed, 21 Jun 2023 07:58:02 GMT</pubDate><content:encoded>&lt;h1 id=&quot;an-old-colleague-calls&quot;&gt;An old colleague calls&lt;/h1&gt;
&lt;p&gt;How many conversations with old colleagues -- one of them just called me -- start, &amp;quot;hey do you remember where?..&amp;quot;&lt;/p&gt;
&lt;p&gt;In this case he asked &amp;quot;do I remember where that server analysis that I did was stored?&amp;quot; And I said, yeah, it&amp;#39;s on our customer&amp;#39;s network. Thirty-two-dot-something, I think.&lt;/p&gt;
&lt;p&gt;Then I realised that I still have my old &lt;a href=&quot;https://johnnydecimal.com/11.05/&quot;&gt;index&lt;/a&gt; in Bear, so I opened up the phone and within thirty seconds there it was.&lt;/p&gt;
&lt;p&gt;Thirty-two dot twelve.&lt;/p&gt;
&lt;div class=&quot;img-v2-container&quot;&gt;&lt;video autoplay=&quot;&quot; muted=&quot;&quot; width=&quot;300&quot;&gt;&lt;source src=&quot;/video/Bear picking L43.32.12.mp4&quot;&gt;&lt;/video&gt;&lt;/div&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0004 Like rain on your wedding day...</title><link>https://johnnydecimal.com/22.00.0004/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0004/</guid><description>On not having time to write.</description><pubDate>Tue, 13 Jun 2023 08:43:10 GMT</pubDate><content:encoded>&lt;h1 id=&quot;like-rain-on-your-wedding-day&quot;&gt;Like rain on your wedding day...&lt;/h1&gt;
&lt;p&gt;Isn&amp;#39;t it ironic that I thought &lt;a href=&quot;https://johnnydecimal.com/22.00.0003/&quot;&gt;quitting my job&lt;/a&gt; would give me &lt;em&gt;more&lt;/em&gt; time to work on the site, and instead I&amp;#39;ve done essentially nothing.&lt;/p&gt;
&lt;p&gt;There&amp;#39;s a good reason: money. The site earns none. I need some. :-)&lt;/p&gt;
&lt;p&gt;So that&amp;#39;s what I&amp;#39;ve been doing: planning how to make money. The plan is that it&amp;#39;ll come from the corporate world. There is a plan, it&amp;#39;ll just take a while to enact.&lt;/p&gt;
&lt;p&gt;The site will always be free, and my dream is that I have income that allows me to spend a lot more time on it.&lt;/p&gt;
&lt;p&gt;Until then, forgive the lack of updates. I need to kick-start the &amp;#39;job&amp;#39; part of &amp;#39;this is my job now&amp;#39;. Adding new pages here unfortunately does not do that.&lt;/p&gt;
&lt;p&gt;In the mean time there are little threads that pop up on &lt;a href=&quot;https://forum.johnnydecimal.com/&quot;&gt;the forum&lt;/a&gt; that I try to stay on top of, so if you&amp;#39;re hungry for more content, or have a burning question, that&amp;#39;s where you should be.&lt;/p&gt;
&lt;p&gt;&lt;del&gt;And of course -- I won&amp;#39;t keep banging this drum, I swear -- if you want to sponsor me, every bit helps.&lt;/del&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update 2023-10-26:&lt;/strong&gt; I&amp;#39;ve taken down the Patreon link. If you&amp;#39;d like to support me now, &lt;a href=&quot;https://johnnydecimal.com/14.21/&quot;&gt;buy the Workbook&lt;/a&gt;.&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0003 I quit my job</title><link>https://johnnydecimal.com/22.00.0003/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0003/</guid><description>Johnny quit his job.</description><pubDate>Sun, 28 May 2023 03:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;i-quit-my-job&quot;&gt;I quit my job&lt;/h1&gt;
&lt;p&gt;I didn&amp;#39;t love the job, and a late-Sunday-night conversation with my partner Lucy turned in to me resigning the next morning. Hardly spur of the moment -- this has been coming for some time -- but not what either of us had &amp;#39;planned&amp;#39;.&lt;/p&gt;
&lt;p&gt;The turn of events saw me free by Tuesday afternoon. Laptops and badges handed in. Quite surreal.&lt;/p&gt;
&lt;p&gt;And so here I am: Johnny.Decimal. My job. (I need to think of something to write in the &amp;#39;occupation&amp;#39; box; suggestions welcome.)&lt;/p&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0002 Whatever happened to &apos;Business Knowledge Management&apos;?</title><link>https://johnnydecimal.com/22.00.0002/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0002/</guid><description>Why isn&apos;t there a &apos;BKM&apos; like there is &apos;PKM&apos;?</description><pubDate>Sun, 28 May 2023 02:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;whatever-happened-to-business-knowledge-management&quot;&gt;Whatever happened to &amp;#39;Business Knowledge Management&amp;#39;?&lt;/h1&gt;
&lt;p&gt;There&amp;#39;s this whole corner of the internet dedicated to &lt;a href=&quot;https://en.wikipedia.org/wiki/Personal_knowledge_management&quot;&gt;personal knowledge management&lt;/a&gt; (&amp;#39;PKM&amp;#39;). It&amp;#39;s &lt;a href=&quot;https://duckduckgo.com/?q=personal+knowledge+management&quot;&gt;massive&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;People spend hours of their spare time on this. They &lt;a href=&quot;https://forum.obsidian.md/search?q=pkm&quot;&gt;hang out in forums&lt;/a&gt;. They mail me and ask for guidance. They agonise over this stuff at home...&lt;/p&gt;
&lt;p&gt;...and then they go to work and it&amp;#39;s like it never happened.&lt;/p&gt;
&lt;h2 id=&quot;knowledge-management-doesnt-go-far-enough&quot;&gt;&amp;#39;Knowledge management&amp;#39; doesn&amp;#39;t go far enough&lt;/h2&gt;
&lt;p&gt;It&amp;#39;s not like we haven&amp;#39;t thought about this. There&amp;#39;s &lt;a href=&quot;https://sfia-online.org/en/sfia-8/skills/knowledge-management&quot;&gt;a whole job function dedicated to knowledge management&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;But whenever I&amp;#39;ve seen anyone in this role their focus tends to be on the organisation&amp;#39;s data&lt;em&gt;bases&lt;/em&gt;. That SFIA description talks about your &amp;#39;knowledge management database&amp;#39; but the word &amp;#39;file&amp;#39; doesn&amp;#39;t appear once.&lt;/p&gt;
&lt;p&gt;Is it that the file system is just so unglamorous? It is, right, I know it is. (It&amp;#39;s one of my fears in trying to &lt;a href=&quot;https://johnnydecimal.com/22.00.0003/&quot;&gt;make this my job&lt;/a&gt;: organising your files is, well ... &lt;em&gt;boring.&lt;/em&gt;)&lt;/p&gt;
&lt;p&gt;But that&amp;#39;s no excuse to neglect it. Your internal knowledge databases may be amazing but that&amp;#39;s only part of the picture.&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;why-is-this-okay&quot;&gt;Why is this okay?&lt;/h2&gt;
&lt;p&gt;The cost of being disorganised at home is negligible: you might be frustrated that you can&amp;#39;t find your insurance documentation, but it&amp;#39;s not costing literally hundreds of dollars an hour.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This is the problem that I intend to solve.&lt;/strong&gt;&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Are they? I&amp;#39;ve yet to see this either, but that&amp;#39;s a separate issue. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item><item><title>22.00.0001 Hello, World!</title><link>https://johnnydecimal.com/22.00.0001/</link><guid isPermaLink="true">https://johnnydecimal.com/22.00.0001/</guid><description>The first blog post.</description><pubDate>Sun, 28 May 2023 01:00:00 GMT</pubDate><content:encoded>&lt;h1 id=&quot;hello-world&quot;&gt;Hello, World!&lt;/h1&gt;
&lt;p&gt;I thought I&amp;#39;d use this first post to explain the numbering scheme.&lt;/p&gt;
&lt;p&gt;As you might expect, each post has an ID. This post&amp;#39;s ID is &lt;code&gt;22.00.0001&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Blog posts are &lt;a href=&quot;https://johnnydecimal.com/12.02/&quot;&gt;breaking the rules&lt;/a&gt; they don&amp;#39;t fit in the overall structure.&lt;/p&gt;
&lt;p&gt;Imagine if every post had a Johnny.Decimal ID: &lt;code&gt;22.01&lt;/code&gt;, &lt;code&gt;22.02&lt;/code&gt;, and so on. My navigation tree would soon get out of control. And I&amp;#39;d run out of numbers quite quickly.&lt;/p&gt;
&lt;p&gt;This is a nice example of &lt;a href=&quot;https://johnnydecimal.com/12.03/&quot;&gt;why I save the &lt;code&gt;00&lt;/code&gt; numbers&lt;/a&gt;. In this case I&amp;#39;m using &lt;code&gt;22.00&lt;/code&gt;, which is the &amp;#39;meta&amp;#39; ID for the blog category, as an ID to represent &lt;strong&gt;all blog posts&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Each post then gets its own supplementary ID, starting from &lt;code&gt;0001&lt;/code&gt;. (I&amp;#39;m assuming I&amp;#39;ll never write more than 10,000 posts.)&lt;sup&gt;&lt;a href=&quot;#user-content-fn-1&quot; id=&quot;user-content-fnref-1&quot; data-footnote-ref=&quot;&quot; aria-describedby=&quot;footnote-label&quot;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;
&lt;h2 id=&quot;accessing-the-posts&quot;&gt;Accessing the posts&lt;/h2&gt;
&lt;p&gt;The main site has a couple of IDs dedicated to &lt;strong&gt;viewing lists of posts.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There&amp;#39;s &lt;a href=&quot;https://johnnydecimal.com/22.02/&quot;&gt;&lt;code&gt;22.01&lt;/code&gt;&lt;/a&gt; which is an index of &lt;em&gt;all&lt;/em&gt; posts but only their titles.&lt;/p&gt;
&lt;p&gt;If I add &amp;#39;tags&amp;#39; to future posts, I might use &lt;code&gt;22.03&lt;/code&gt; and upwards to show pages that list blog posts with a specific tag.&lt;/p&gt;
&lt;h2 id=&quot;im-just-having-a-bit-of-fun-with-this&quot;&gt;I&amp;#39;m just having a bit of fun with this&lt;/h2&gt;
&lt;p&gt;None of this was really necessary. :-)&lt;/p&gt;
&lt;section data-footnotes=&quot;&quot; class=&quot;footnotes&quot;&gt;&lt;h2 class=&quot;sr-only&quot; id=&quot;footnote-label&quot;&gt;Footnotes&lt;/h2&gt;
&lt;ol&gt;
&lt;li id=&quot;user-content-fn-1&quot;&gt;
&lt;p&gt;Let&amp;#39;s say I write a post a day. 365 days/year means I could easily hit 1,000 in a couple of years, but at the same rate I&amp;#39;d need to do that until the year 2050 to get close to 10,000. Unlikely. &lt;a href=&quot;#user-content-fnref-1&quot; data-footnote-backref=&quot;&quot; aria-label=&quot;Back to reference 1&quot; class=&quot;data-footnote-backref&quot;&gt;↩&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;</content:encoded><author>hello@johnnydecimal.com (Johnny Noble)</author></item></channel></rss>