<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Rabia’s Substack ~ I Know This Feeling]]></title><description><![CDATA[You burned so beautifully, for so long. These letters are my hand reaching back to say: it's safe to slow down now.]]></description><link>https://iknowthisfeeling.com</link><image><url>https://substackcdn.com/image/fetch/$s_!m9-K!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe49d6b92-912d-4428-a6f2-72a853a8f8ec_800x800.png</url><title>Rabia’s Substack ~ I Know This Feeling</title><link>https://iknowthisfeeling.com</link></image><generator>Substack</generator><lastBuildDate>Sat, 25 Jul 2026 15:29:16 GMT</lastBuildDate><atom:link href="https://iknowthisfeeling.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Rabia Williams]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[rabiawilliams@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[rabiawilliams@substack.com]]></itunes:email><itunes:name><![CDATA[Rabia Williams]]></itunes:name></itunes:owner><itunes:author><![CDATA[Rabia Williams]]></itunes:author><googleplay:owner><![CDATA[rabiawilliams@substack.com]]></googleplay:owner><googleplay:email><![CDATA[rabiawilliams@substack.com]]></googleplay:email><googleplay:author><![CDATA[Rabia Williams]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[A minimal Mac setup for developers]]></title><description><![CDATA[Anything Can Be a Ritual]]></description><link>https://iknowthisfeeling.com/p/a-minimal-mac-setup-for-developers</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/a-minimal-mac-setup-for-developers</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Mon, 20 Jul 2026 12:09:11 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/c0d6a295-f09b-42f9-a3c6-2834a0050fba_1536x1024.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>A new Mac sat there, unopened, for almost 24 hours after I bought it. I was hesitant to unbox and set it up quickly. I knew this was a ritual I wanted to enjoy slowly. I&#8217;m going to spend years with this machine, so I wanted everything about it to feel personal.</p><p>This isn&#8217;t a straightforward &#8220;Set up your Mac&#8221; guide, and it isn&#8217;t a philosophical dissection of anything either. It sits somewhere in between, just like me. I love tech, and I love to observe, to be slow with things in this fast-moving world. I am trying to find joy in the most boring things life can present me.</p><p>So here we are with a boring task, trying to have fun with it. </p><p>Before anything is installed, the screen is just the usual mac &#8220;Tahoe day&#8221; wallpaper. No files, no history, no cookies, no cache, no version of me I left lying around in folders I named &#8220;misc&#8221; or &#8220;untitled.&#8221; No sign of the 1001 different project ideas I have been procrastinating on.</p><p>It&#8217;s tempting to fill that space as fast as possible, the way we do with iPhones: sign in, sync everything from the cloud, get back to your old self in a few minutes.</p><blockquote><p>I decided to resist that, just this once.</p></blockquote><p>A tool shapes the hands that use it. You already know this about a kitchen, or a garden. Somehow, we forget it about the machine we spend more waking hours inside than almost anywhere else. So, this isn&#8217;t really a setup guide. It&#8217;s an invitation to set up slowly enough to notice what you&#8217;re choosing, and why.</p><div><hr></div><p><strong>The ground</strong></p><p>I signed in but skipped the sync and started this one empty. Then, since I prefer dark mode, I went to System Settings &#8594; Appearance &#8594; Dark Mode (Auto). Comfort first.</p><p>I installed Microsoft Edge, my favourite browser believe it or not &#128513;. </p><p>Then I needed the infrastructure to install everything else and for me, that&#8217;s Homebrew. I opened the terminal and installed it first:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;edb9deb7-7547-4d67-be91-b4fa89c796f0&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</code></pre></div><p>The terminal is where I live as a developer for my job, and I wanted it to be more than just what my machine gives me by default. I installed iTerm2, a font, and a few tools so the space I live in feels cozy:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;07c7b47a-6897-451e-8126-d081cef06756&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">brew install --cask iterm2
brew install --cask font-jetbrains-mono-nerd-font
brew install zsh starship eza bat fzf zoxide fd ripgrep git gh git-delta </code></pre></div><p>Then I created my <code>~/.zshrc</code> file inside my Home folder and opened it.</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;plaintext&quot;,&quot;nodeId&quot;:&quot;4493f63a-16a6-46f6-a9c0-627739df00cf&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-plaintext">touch ~/.zshrc
open -e ~/.zshrc</code></pre></div><p>Added these lines (tab-completion setup first, then prompt/tool init) and saved:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;e3c97ae2-4cfe-4005-b279-4464decf5b29&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash"># Tab completion
autoload -Uz compinit
compinit
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'   # case-insensitive matching
zstyle ':completion:*' menu select                            # arrow-key navigation through matches
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"       # colored completion menu

# Prompt + tools
eval "$(starship init zsh)"
eval "$(zoxide init zsh)"
alias ls="eza --icons"
alias cat="bat"</code></pre></div><p>Then, in iTerm2&#8217;s settings: Profiles &#8594; Colors &#8594; Solarized under Color Presets, and Appearance &#8594; Minimal theme.</p><p><br>Final look of my terminal &#128105;&#127997;&#8205;&#128187;: </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!FxS7!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!FxS7!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 424w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 848w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 1272w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!FxS7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png" width="1456" height="1201" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1201,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1533182,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/207757710?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!FxS7!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 424w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 848w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 1272w, https://substackcdn.com/image/fetch/$s_!FxS7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd0377155-5650-42d3-aaa8-50d4a8b9b22f_1588x1310.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div><hr></div><p><strong>The workspace</strong><br><br>Next, I needed to set up a few things for my work that involves Node but many versions of it. So I installed it through through nvm (node version manager).</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;ac3a3e05-462d-4e16-a811-93a5ed705d56&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">brew install nvm
mkdir ~/.nvm</code></pre></div><p>Added below to <code>.zshrc file</code>:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;shell&quot;,&quot;nodeId&quot;:&quot;17f4247a-61ac-4424-8bf7-90eb14db5b91&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-shell">export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] &amp;&amp; \. "/opt/homebrew/opt/nvm/nvm.sh"
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] &amp;&amp; \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm"</code></pre></div><p>Then reloaded the termnial and installed latest Node:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;a6d4276c-7e1a-4edf-8c05-f39d45f7fb06&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">source ~/.zshrc
nvm install node      # installs latest
nvm alias default node
node -v</code></pre></div><p>Next, I installed Python, for MkDocs / GitHub Pages workflow: for my work related to courses creation, my tech blogs etc.</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;plaintext&quot;,&quot;nodeId&quot;:&quot;1f85a807-5730-44c8-b5c0-25d252292088&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-plaintext">brew install python@3.12 pyenv uv
</code></pre></div><p><br>Then I carefully installed my editor of choice for code, good old VS Code </p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;f75c8996-5136-4a6c-b9f1-7cdf6a03485c&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">brew install --cask visual-studio-code</code></pre></div><p>To set it up, I chose Solarized theme, the Material Icon set, the same Nerd Font from your terminal, to be consistent with my terminal (Edit the settings.json)</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;json&quot;,&quot;nodeId&quot;:&quot;2386154c-cade-4186-8486-c918d96ca008&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-json">{
    "workbench.colorTheme": "Solarized Dark",
    "workbench.iconTheme": "material-icon-theme",
    "git.autofetch": true,
    "editor.fontLigatures": false,
    "editor.fontFamily": "JetBrainsMono Nerd Font",
}</code></pre></div><p>Final look of my editor &#128221;:</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!9N4h!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!9N4h!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 424w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 848w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 1272w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!9N4h!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png" width="1456" height="831" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:831,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:760133,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/207757710?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!9N4h!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 424w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 848w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 1272w, https://substackcdn.com/image/fetch/$s_!9N4h!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2da615c-e6ca-4a09-bd32-b989e4a256b3_3008x1716.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div><hr></div><p><strong>The shelf</strong></p><p>Somewhere for the thinking, like new blog ideas,  articles for Substack, side projects, and everything in between, I chose to install Obsidian. The Minimal theme, and a folder structure with room to grow rather than one I&#8217;ll outgrow by September:</p><div class="highlighted_code_block" data-attrs="{&quot;language&quot;:&quot;bash&quot;,&quot;nodeId&quot;:&quot;b1a241d4-62c2-40b5-8f01-df50f65dca93&quot;}" data-component-name="HighlightedCodeBlockToDOM"><pre class="shiki"><code class="language-bash">brew install --cask obsidian</code></pre></div><p>My initial set up of folders looks like this, I hope it stays clean for sometime.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!240i!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!240i!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 424w, https://substackcdn.com/image/fetch/$s_!240i!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 848w, https://substackcdn.com/image/fetch/$s_!240i!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 1272w, https://substackcdn.com/image/fetch/$s_!240i!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!240i!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png" width="1456" height="831" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:831,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:237286,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/207757710?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!240i!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 424w, https://substackcdn.com/image/fetch/$s_!240i!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 848w, https://substackcdn.com/image/fetch/$s_!240i!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 1272w, https://substackcdn.com/image/fetch/$s_!240i!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd51dad5e-9266-4f89-924c-a3e5231e16e5_3008x1716.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><div><hr></div><p>And by that, I came to the end of my minimal setup and I felt happy, genuinely happy, with it. It turned out exactly as I wanted it to.</p><p>I won't remember most of what I did to set this up by next week, which is why I documented it. But I know I'll feel it, every time I open the lid to work on something.</p>]]></content:encoded></item><item><title><![CDATA[Tapovan Maharaj and my stash of curry leaves]]></title><description><![CDATA[The beautiful form of surrender]]></description><link>https://iknowthisfeeling.com/p/tapovan-maharaj-and-my-stash-of-curry</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/tapovan-maharaj-and-my-stash-of-curry</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Mon, 06 Jul 2026 03:08:11 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!ql19!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>July 4th means something different to me than whatever America is celebrating. My first ever pet, my love, my dog Bruno (whom I call Bhooma) was born on July 4th. He passed away last year on another day in July and has since left a hole in my soul that I have yet to fill. But this post isn&#8217;t about him, although he somehow always leads me to beautiful things.</p><p>My mission was to find something distracting yet productive instead of doom scrolling through my photos app to look at Bhooma and cry all day. And I heard there was a retreat at our ashram for adults on that day. I decided to go. The retreat was to learn and discuss about <em>Sadhana Panchakam</em>, a beautiful work by Adi Sankaracharya, a fellow Mallu, which honestly makes me disproportionately happy inside. Of course, if a living, breathing Acharya caught me feeling this pleased about &#8220;regional pride&#8221;, he&#8217;d probably just quote the man himself back at me: </p><p><em>de&#347;ak&#257;lavi&#7779;ay&#257;tivarti yad brahma tattvamasi bh&#257;vay&#257;tmani </em></p><p><em>(</em>Vivekachudamani<em> v:254 second part)</em>, translated as - <em>That you are the Brahman transcending space, time, and sense-object; meditate on this</em>. </p><p>Message seen &#10004;&#65039;&#10004;&#65039;, Acharya. I&#8217;ll go back to transcending my ego now, right after this one small moment of Mallu pride.</p><div><hr></div><p>The retreat was such an amazing way to spend Bhooma&#8217;s birthday. It gave me so many lessons to learn and apply in life, but a story on surrender became the most important takeaway for me. </p><p>This story is about Tapovana Maharaj, a Hindu saint and Vedanta scholar, still admired and loved by many Vedantins. Did I mention he&#8217;s another Mallu? Okay, at this point I&#8217;m just flexing.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ql19!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ql19!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 424w, https://substackcdn.com/image/fetch/$s_!ql19!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 848w, https://substackcdn.com/image/fetch/$s_!ql19!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 1272w, https://substackcdn.com/image/fetch/$s_!ql19!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ql19!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png" width="1122" height="1402" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/fab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1402,&quot;width&quot;:1122,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:2791131,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/205439657?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ql19!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 424w, https://substackcdn.com/image/fetch/$s_!ql19!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 848w, https://substackcdn.com/image/fetch/$s_!ql19!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 1272w, https://substackcdn.com/image/fetch/$s_!ql19!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffab0022b-ea11-40d1-8653-06fc7ad3eefa_1122x1402.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Tapovan Maharaj in his Kailash yatra (AI generated)</figcaption></figure></div><p>Now, the story - Tapovan Maharaj decided to undertake a Kailash yatra. It&#8217;s an incredibly difficult journey, and along the way, he ran out of food and water. Exhausted, he was caught in the rain. Yet through all of it, his faith in the Lord was strong and his surrender was just beautiful to witness, even generations later.</p><p>As he lay down, unable to go on, the thought that arose in him wasn&#8217;t - <em>&#8220;Will God save me?&#8221;</em> but &#8220;<em>How will God come to save me?&#8221;</em> Such an innocent, honest form of surrender! I still get goosebumps thinking about it. He was so sure of help coming to him but just curious in what form or through whom. </p><p>Maharaj ji was eventually found and cared for by robbers, who had come to rob him. That&#8217;s how the story ends. But what stayed with me wasn&#8217;t the ending. It was the form of his <em>surrender</em>.</p><div><hr></div><p>That single shift made me question myself - how arrogant I actually am in my own moments of misery, convinced I&#8217;m all alone, even while I keep saying the words <em>I surrender to God</em> or <em>I surrender to the universe</em>. I say the words, but I still worry. My only emotion in those moments should be <em>curiosity</em>, like Maharaj ji&#8217;s, not <em>worry</em>. </p><p>Surrender is not asking &#8220;will I be saved,&#8221; but wondering &#8220;how beautifully will I be saved.&#8221;</p><div><hr></div><p>Now, what do curry leaves have to do with any of this? Okay, let&#8217;s get to that. That same weekend, my stash of curry leaves also ran out. It&#8217;s not very common to find curry leaves in regular stores here in Australia, and while I&#8217;ve had a curry leaf tree in the past, I don&#8217;t have one now. My stash always comes from friends who generously bring them to me from their own trees when I ask. So, this week, when my stash ran out, I simply did nothing. I left my curry leaves dealers completely in the dark. And just like that, a friend showed up with a big bag of curry leaves, the same evening! </p><p>I smiled inside, thinking - did I just pass one small test? Not worrying about something I don&#8217;t have, but might need later (and oh yes, we use a lot of curry leaves in our food). And I smiled at the Lord too, thinking, if He can tend to something as trivial as curry leaves, how much bigger and better must His plan be for when my whole world crumbles before me.</p><p>So really, the theory on July 4th and the practical on the 5th taught me that</p><blockquote><p>surrender isn&#8217;t a one-time declaration I make and then forget. </p></blockquote><p>It&#8217;s a daily, sometimes hourly, choice to trade worry for curiosity. Curry leaves today, something far bigger tomorrow.</p><p></p><p></p>]]></content:encoded></item><item><title><![CDATA[The Quiet Collapse of Good Work]]></title><description><![CDATA[AI arrived. Productivity is up. Yet everything feels worse at work.]]></description><link>https://iknowthisfeeling.com/p/the-quiet-collapse-of-good-work</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/the-quiet-collapse-of-good-work</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Sat, 27 Jun 2026 09:05:08 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!CSvA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="preformatted-block" data-component-name="PreformattedTextBlockToDOM"><label class="hide-text" contenteditable="false">Text within this block will maintain its original spacing when published</label><pre class="text">karma&#7751;yev&#257;dhik&#257;raste m&#257; phale&#7779;u kad&#257;cana
m&#257; karmaphalaheturbh&#363;rm&#257; te sa&#7749;go'stvakarma&#7751;i 
The Bhagavad Gita, Chapter 2, Verse 47. 

Thy right is to work only, but never to its fruits; let not the fruit-of-action be thy motive, nor let thy attachment be to inaction. </pre></div><p>Lord Krishna said this to Arjuna, a warrior, frozen on a battlefield, paralysed by calculation on what he would lose or gain if he picks up the bow to fight his teachers, relatives and friends standing on the other side, as the enemy. Sound familiar?</p><p>This is us right now. The battlefield is a Teams or Slack channel, and nobody's frozen. Everyone&#8217;s moving very fast. Just not towards anything they actually care about. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!CSvA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!CSvA!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!CSvA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png" width="1402" height="1122" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1122,&quot;width&quot;:1402,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:2451797,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/203236069?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!CSvA!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!CSvA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7d73baf6-561d-4245-969d-07e34d3fd3ef_1402x1122.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Intended to be a rat race, created by AI (don&#8217;t blame me)</figcaption></figure></div><div><hr></div><h2>The Start</h2><p>It starts with a single message from a team-mate. A prototype, a strategy document, an analysis which took days or weeks, produced in an afternoon using AI. The thread goes silent, not in admiration, but into a silence of recalibration. The recalibration of <em>survival</em>. </p><div><hr></div><h2>The New Scoreboard</h2><p>Everyone knows the new rules. </p><p>Whose project made the rest of the team look slow and lazy? </p><p>Who got the most visible AI centric initiative? </p><p>It&#8217;s like people are buying domain names for words that don&#8217;t exist yet. Everyone&#8217;s busy racing to own territory before anyone else names it. And the tragedy is that the people doing it were once known for their ethics, credibility, and craft. Now they live by a single measure - <em>pace</em>.</p><p>And pace is a brutal thing to measure a human being against.  </p><blockquote><p>A river moving fast in every direction is a flood.</p></blockquote><div><hr></div><h2>The Work Became a Move on a Board</h2><p>Every idea feels like a chess move now. Everything is a strategy to get noticed. Every thought gets filtered through questions, <em>"How does this make me look to the leaders?" , &#8220;Do I still matter here?&#8221;</em></p><p>This is what happens when people optimise for the <em>scoreboard</em> instead of the work itself. It&#8217;s the same mechanism as a writer who chases trending topics instead of the story they actually want to tell.</p><div><hr></div><h2>The Burnout Nobody Has a Name For</h2><p>Usually, you burnout from too much work or empty work calls.  But the new burnout is different. It comes from competition.</p><p>Healthy competition is good, don&#8217;t get me wrong, but this one, it comes from the particular loneliness of competing with people you once genuinely enjoyed thinking and working alongside. </p><blockquote><p>Fear, when it has nowhere honest to go, becomes competition.</p></blockquote><div><hr></div><h2>Nobody Here Is the Villain. Not Even the AI.</h2><p>Nobody sat down one morning and decided to hollow out their team culture. They all just responded to instinct. </p><p>The problem is that the definition of <em>team</em> hasn&#8217;t been updated. Leadership is still measuring individuals the way it did before AI arrived, which means individuals are optimising on their own at the expense of the whole. </p><p>This is how aggression enters a team without anyone intending it. It may look like conflict but it&#8217;s actually a <em>withdrawal</em>. Someone going quiet in a meeting, an idea kept close and not shared, a collaboration that quietly stops feeling natural etc. </p><div><hr></div><h2>Do the Work. Drop the Fruit. &#9989;</h2><p>The best work almost never comes from the person running fastest. It comes from the person who forgets to check the scoreboard because they are too absorbed in the work itself. This is what we call - <em>flow</em>.</p><p>There&#8217;s a reason for that. In Vedantic thought, which is my favourite direction to think, the ego, the I-ness, is also the part that gets in the way.</p><p>You cannot reach the flow state, which is the <em>whole</em> you, while monitoring how you are performing. When you&#8217;re doing something for the numbers, you&#8217;re always slightly outside the work, calculating the return, watching yourself, watching your back. But when you&#8217;re doing it because it genuinely pulls you, because the creative juice is real, you merge into it and you disappear. </p><blockquote><p>That disappearance is where the best outcomes live.</p></blockquote><p>Things somehow always work out for people who are genuinely absorbed in what they <em>do</em>, who keep <em>showing up</em>, keep <em>noticing</em>, keep being in the <em>right room.</em></p><div><hr></div><p>Arjuna&#8217;s problem on that battlefield wasn&#8217;t cowardice. It was that he had made the outcome the whole point. Krishna&#8217;s answer wasn&#8217;t to care less either, it was to return his attention to the only thing actually in his hands, the quality of the work itself. </p><blockquote><p>Do the work because it&#8217;s the <em>right</em> work. Let the fruits follow.</p></blockquote><p>We are Arjuna right now. Frozen yet frantic, in front of a battlefield we&#8217;re calculating rather than engaging. The flow will find us the moment we stop performing for the scoreboard and start focusing on the task at hand.</p><p><em>karma&#7751;yev&#257;dhik&#257;raste m&#257; phale&#7779;u kad&#257;cana<br>m&#257; karmaphalaheturbh&#363;rm&#257; te sa&#7749;go&#8217;stvakarma&#7751;i </em></p><p>Your right is to the work. The scoreboard will catch up &#129719;.</p><div><hr></div><p>Bhagavad Gita 2.47. Verse and translation sourced from <a href="https://www.shlokam.org/gita/gita-2-47.htm">shlokam.org</a></p><p></p>]]></content:encoded></item><item><title><![CDATA[Working With Anticipatory Grief]]></title><description><![CDATA[What Grief Teaches Us Before The Loss Arrives]]></description><link>https://iknowthisfeeling.com/p/working-with-anticipatory-grief</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/working-with-anticipatory-grief</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Sun, 07 Jun 2026 18:04:58 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!yKt7!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><em><strong>Nothing in this world is permanent.</strong></em> It is perhaps the oldest aphorism humanity has ever uttered, scribbled on dried palm leaves or etched on stones since the very beginning. This one has survived civilisations, philosophies, and even science due to its raw inescapability.</p><p>Yet it is only irony that the same species which uncovered this truth, carried it through every era, and handed it faithfully to the next generation has never truly <em>internalised</em> it. And when grief arrives, most of us simply and massively fail.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!yKt7!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!yKt7!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!yKt7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png" width="1402" height="1122" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1122,&quot;width&quot;:1402,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:2369220,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/201004856?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!yKt7!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!yKt7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3eb0c34e-474c-4d03-9c4f-6eb6233204f7_1402x1122.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><blockquote><p>Anticipatory grief..</p></blockquote><p>Grief, I have learned, does not always wait for loss. And to grieve before the real loss is suffering in its most merciless form. </p><p>I grieved my fur best friend across seven months of chemotherapy, holding hope and sorrow in the same hands, watching him fall in and out of life of quality,  while I stood by, helpless until one day he left.</p><p>Somewhere along three years of layoffs in tech industry, I find myself grieving in meetings and inboxes for a job not yet lost.</p><p>I now grieve the way my loved one with terminal illness calls my name,  because I already know the shape of their absence. I am grieving someone who is still alive and that, I have learned, is its own kind of death</p><p></p><blockquote><p>&#8230; And what I learned from it</p></blockquote><p>Every setback has been, in its own reluctant way, a teacher. </p><p>The suffering from watching my dog through seven months of treatment carved patience into me,  a patience I did not know I was capable of. It taught me selflessness, servitude, and how to recognise love in forms I was not aware of before.</p><p>The fear of layoff did something unexpected too,  it loosened the grasp of my job and its hold on me. I still give my work the best I have, but I realised I am more than my job title. A Sanskrit diploma, Advaita Vedanta, this writing, they all came from the part of me that needed to remember who I was beyond my job. </p><p>But it is the grief I am living now that has changed me most profoundly. Every moment with the one I am losing feels weighted with meaning. I am more present, more deliberate, more willing to diminish my ego.  To love without condition, to give without reserve. I see in them a calm that humbles me. I see an acceptance of fate that has quietly become gratitude for the life they were given. And in their smile, in the way they meet each moment without resistance and with beauty, I am learning to let go. To surrender. </p><p>Grief is real and I do not deny it but I am determined to observe it, to let it burn through what is unnecessary in me and leave something stronger behind. </p><p></p>]]></content:encoded></item><item><title><![CDATA[What AI's Biggest Flaw Teaches Us About Inner Peace ]]></title><description><![CDATA[The hidden cost of pretending to know]]></description><link>https://iknowthisfeeling.com/p/what-ais-biggest-flaw-teaches-us</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/what-ais-biggest-flaw-teaches-us</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Fri, 29 May 2026 17:38:59 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!lp81!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I work in the tech industry, and it's no surprise when I tell you that I work with AI. One of the biggest deal breakers with Generative AI is &#8220;Hallucination.&#8221; </p><blockquote><p>An AI model works by predicting the statistically next best word to write and respond to you. When it lacks grounding information, that prediction can drift away from the truth (grounding information). This is hallucination in a nutshell.</p></blockquote><p>Hallucination has become a common term in the world of AI, but the concept has always existed in human behaviour too.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!lp81!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!lp81!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!lp81!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!lp81!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!lp81!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!lp81!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png" width="1402" height="1122" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1122,&quot;width&quot;:1402,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:3557563,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/199558042?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!lp81!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 424w, https://substackcdn.com/image/fetch/$s_!lp81!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 848w, https://substackcdn.com/image/fetch/$s_!lp81!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 1272w, https://substackcdn.com/image/fetch/$s_!lp81!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F87496fb7-fd4f-4de5-b7c4-6c90bc22e7c4_1402x1122.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">AI generated for sure</figcaption></figure></div><p>Think of the time you only half-knew something but were asked about it anyway. You fumbled, then filled the gaps with <em>invented</em> details to complete the half-remembered story. That was your ego working hard to hold on to the &#8220;expert-on-this-topic badge.&#8221;  This is the human version of hallucination. </p><p>You panicked at the follow-up question, edited the answer five times after hitting <em>send</em>, and lost sleep over having to justify yourself if your answer turned out to be factually incorrect. You knew perfectly well that your <em>hallucination</em> won&#8217;t be forgiven as easily as an AI model&#8217;s. </p><blockquote><p>This is your opportunity to switch  from <em>reactive</em> mode to <em>responsive</em> mode. </p></blockquote><p>In such situations, you have two good options - respond later, after verifying the facts, or, if the question needs urgent acknowledgement, simply say: <em>"Thank you for your patience while I gather the information needed to give you a complete answer." </em>Honestly, the clarity and peace of mind this approach brought me is worth far more than any &#8220;expert badge&#8221;. </p><p>We all have enough burdens on our shoulders. Let's try not to add any more. After all, <strong>truth is the lightest thing to carry! </strong>It took watching an AI struggle with honesty to remind me of that. <strong><br></strong></p><p><em>If this helped, you know where to find me @ <a href="http://iknowthisfeeling.com">iknowthisfeeling.com</a> . This world doesn't get easier -  but we get wiser. Until next time. </em>&#9786;&#65039;</p><p></p><p></p>]]></content:encoded></item><item><title><![CDATA[Adios amigo]]></title><description><![CDATA[My companion tree]]></description><link>https://iknowthisfeeling.com/p/adios-amigo</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/adios-amigo</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Fri, 27 Oct 2023 02:49:48 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!cwt8!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Have you ever found a close friend in a tree? Have you made a connection with it, engaging in conversations, exchanging feelings, and sometimes even complaining about someone to it? This is my story of such an odd companion I had, a tree. I&#8217;ve never given it a name; I simply refer to it as &#8220;my tree.&#8221;</p><p>When I first moved into the home near this tree, there were a few things that instantly made me fall in love, one of them was this tall gum tree that stood proudly just across the road from my house. Its shiny grey bark and its divine presence, patiently giving up its branches to the noisy Australian birds, all made me fall in love with it. We formed an unspoken bond instantly, one that takes years to form between humans.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!cwt8!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!cwt8!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 424w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 848w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 1272w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!cwt8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png" width="400" height="400" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:400,&quot;width&quot;:400,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:413530,&quot;alt&quot;:&quot;The gum tree&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The gum tree" title="The gum tree" srcset="https://substackcdn.com/image/fetch/$s_!cwt8!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 424w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 848w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 1272w, https://substackcdn.com/image/fetch/$s_!cwt8!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F86aeb89d-4791-4f5e-af58-b7a099d7484b_400x400.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">My tree</figcaption></figure></div><p>However earlier in 2023, almost two years since our move, we received a letter from the council regarding a road expansion project. My heart sank instantly as I somehow sensed it could mean that they were cutting all the trees. Months passed by, and my husband and son reassured me that nothing might happen, that they might not go through with the expansion after all. While this brought me some relief, I remained sceptical whenever I spotted trucks or construction workers near my house.</p><p>Then, in a month, it all began. The construction work started, and they tied ribbons on the trees, green and pink. My tree was given a pink ribbon, a sign of its upcoming ill fate. Just as my intuition had warned, they started cutting down all the trees tied with pink ribbons.</p><p>Deep in my heart I knew it was time to say farewell. One weekend, I took a walk to my tree and said goodbye. I took a photo of it standing tall, gazing down upon me with what seemed like a sense of fulfilment. Perhaps it had been <em>waiting</em> all these years for this moment, to transition from being a tree to something more.</p><p>The following week it happened. They cut my tree, and it fell with a thud. The fall echoed both outside and inside my being ( I still have the video I took). I cried like I lost someone close, but I was more prepared on that day than I had been earlier in the year. I&#8217;ve grown accustomed to grief in recent months. In my head, it&#8217;s not gone but evolved, like all the souls who have departed from my life.</p><p>Sometimes I wonder whether my tree was cut down to test my strength, to see if I could weather the trial of <em>letting go</em> with grace which in two years I was to be tested again harshly, with my pet&#8217;s passing.  Life has its own peculiar ways of teaching lessons, and I know this better now and I surrender to the teacher. </p><p>Adios amigo! Until we meet again, my friend.</p>]]></content:encoded></item><item><title><![CDATA[Be Yourself...But Who Am I?]]></title><description><![CDATA[On becoming and not being]]></description><link>https://iknowthisfeeling.com/p/be-yourself-but-who-am-i</link><guid isPermaLink="false">https://iknowthisfeeling.com/p/be-yourself-but-who-am-i</guid><dc:creator><![CDATA[Rabia Williams]]></dc:creator><pubDate>Fri, 21 Apr 2023 04:43:16 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!SRg5!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>I&#8217;ve often pondered what it truly means to &#8220;be yourself&#8221;. The concept of the Self is complex and requires a separate post, but it&#8217;s worth asking ourselves if we even know who we&#8217;ll be tomorrow. Change is an inevitable part of life, and the change within can happen slowly or suddenly. </p><p>I&#8217;ve experienced a lot of changes within me in recent years. My 20-year-old self would hardly recognise the person I am today. She might laugh at how my thoughts go, make very &#8216;intelligent&#8217; arguments against my ideologies and even post on Instagram how weird I am. But both versions of myself are not wrong based on my respective phases of life.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!SRg5!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!SRg5!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 424w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 848w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 1272w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!SRg5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png" width="1024" height="1536" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1536,&quot;width&quot;:1024,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:2562535,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:&quot;https://iknowthisfeeling.com/i/116215826?img=https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png&quot;,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!SRg5!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 424w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 848w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 1272w, https://substackcdn.com/image/fetch/$s_!SRg5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F02d309db-ed89-4fab-b38e-a4dedb8a8567_1024x1536.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://iknowthisfeeling.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Rabia&#8217;s Substack! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>What confuses me is, I&#8217;m unsure what people mean when they tell me to &#8220;be myself&#8221;, &#8220;be authentic&#8221;.  I naturally absorb the behaviours and mannerisms of those around me. I &#8220;code-switch&#8221; though I&#8217;ve been doing this long before it had a name. I have different handwriting depending on my mood and what I&#8217;m writing. It might seem odd, but all of this is also me. My taste in music ranges from Dr. M.BalamuraliKrishna to Crosby, Stills &amp; Nash. And then there are days I would only listen to &#8220;Tere Dar Par Sanam&#8221; by Kumar Sanu on repeat.  </p><p>In many ways, I am a product of the people I interact with, the books I read, the music I listen to, the experiences, the places I live in and my whole state of mind at that time. </p><p>My current belief is that, as ephemeral as this body is, so is the illusion of who I am. This thought frees me from having to be one fixed thing. I&#8217;d rather keep becoming newer, better versions of myself and I will keep exploring that becoming. </p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://iknowthisfeeling.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Rabia&#8217;s Substack! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item></channel></rss>