<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://kryptokommun.ist/feed.xml" rel="self" type="application/atom+xml" /><link href="https://kryptokommun.ist/" rel="alternate" type="text/html" /><updated>2026-03-20T12:46:53-05:00</updated><id>https://kryptokommun.ist/feed.xml</id><title type="html">marcusding’s blog</title><subtitle>May you be happy, friend.</subtitle><author><name>Marcus Ding</name></author><entry><title type="html">Open Sesame - I Now Have to Ask My Internet Router to Give Me Internet</title><link href="https://kryptokommun.ist/tech/2026/02/19/llm-gatekeeper-router.html" rel="alternate" type="text/html" title="Open Sesame - I Now Have to Ask My Internet Router to Give Me Internet" /><published>2026-02-19T00:00:00-06:00</published><updated>2026-02-19T00:00:00-06:00</updated><id>https://kryptokommun.ist/tech/2026/02/19/llm-gatekeeper-router</id><content type="html" xml:base="https://kryptokommun.ist/tech/2026/02/19/llm-gatekeeper-router.html"><![CDATA[<p>I have a problem. It’s 11 PM, I tell myself “just five more minutes of Reddit” and suddenly it’s 2 AM and I hate myself. Sound familiar? After years of failing to fix this with willpower alone (spoiler: willpower doesn’t work against billion-dollar engagement algorithms), I decided to solve it the only way I know how: by overengineering the hell out of it.</p>

<p>The result? My router now interrogates me like a strict parent whenever I want internet after 9 PM. If I can’t convince an AI that I actually need to be online, no internet for me. Yes, I built my own digital bedtime enforcer. No, I’m not proud of how necessary this was.</p>

<!--more-->

<h2 id="video-demo">Video Demo</h2>

<iframe width="560" height="315" src="https://www.youtube.com/embed/eoj_pzWLsXc?si=2nUCxVeSLl-oRVpP" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<h2 id="the-problem">The Problem</h2>

<p>Between 9 PM and 5 AM, my internet usage is basically 95% garbage. Social media, YouTube rabbit holes, Reddit arguments with strangers – you know the drill. The thing is, I <em>know</em> this while I’m doing it. But somehow at 1 AM my brain goes “yeah but what if there’s one more interesting thread” and before I know it the birds are chirping outside.</p>

<p>What I wanted was simple:</p>
<ol>
  <li>Block internet at night (no exceptions button I can just click)</li>
  <li>Force myself to explain <em>why</em> I need access</li>
  <li>Have something more objective than my 1 AM brain decide if that’s legit</li>
  <li>Time limits so I can’t abuse a single approval for hours</li>
</ol>

<h2 id="the-hardware">The Hardware</h2>

<p>I grabbed a <a href="https://aliexpress.com/item/1005008375955032.html">GL.iNet GL-MT3000 (Beryl AX)</a> travel router for about 60 Euro. It runs OpenWrt, has enough storage for Python, and sits between all my devices and the actual internet. This is important – there’s no way to bypass it without physically unplugging it (and at that point, if I’m that desperate, maybe I deserve the internet).</p>

<h2 id="how-it-works">How It Works</h2>

<p>When I connect to WiFi after 9 PM, instead of getting internet I get a chat interface. An AI (Google’s Gemini) asks me why I need access. The conversation goes something like:</p>

<p><img src="/images/2026-02-19-llm-gatekeeper-router_chat.png" alt="Nighttime Access Request chat interface" /></p>

<p><strong>AI</strong>: “It’s 11:30 PM. Why do you need internet access?”</p>

<p><strong>Me</strong>: “I need to check email.”</p>

<p><strong>AI</strong>: “How many minutes do you need?”</p>

<p><strong>Me</strong>: “30 minutes.”</p>

<p><strong>AI</strong>: “Why specifically 30 minutes? What will you be doing?”</p>

<p>And here’s the thing – having to actually type out “I want to mindlessly scroll Twitter” makes you realize how stupid that sounds. Half the time I just give up and go to bed instead. Which is exactly the point.</p>

<p>The AI grants different amounts of time based on what you need:</p>
<ul>
  <li>10 minutes for quick checks</li>
  <li>Up to 60 minutes for actual work due TODAY</li>
  <li>Up to 120 minutes for video calls</li>
</ul>

<p>For anything over 10 minutes, it wants proof. Screenshot of that urgent email? Calendar invite for that meeting? Upload it. The AI actually looks at the image and checks if it matches what you claimed. No more “I have work stuff” as a universal excuse.</p>

<h2 id="the-technical-bits">The Technical Bits</h2>

<p>If you care about the implementation (if not, skip to the Claude Code section):</p>

<p>The whole thing is a Python script running on the router. It does DNS hijacking so all domains point to the router, then redirects HTTP traffic to a captive portal page. When you’re chatting with the AI, your messages go to Google’s Gemini API. If approved, it adds iptables rules to let your specific device through for the approved duration.</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c"># All DNS queries resolve to router</span>
uci add_list dhcp.@dnsmasq[0].address<span class="o">=</span><span class="s1">'/#/192.168.8.1'</span>

<span class="c"># All HTTP goes to captive portal</span>
iptables <span class="nt">-t</span> nat <span class="nt">-I</span> PREROUTING 1 <span class="nt">-i</span> br-lan <span class="nt">-p</span> tcp <span class="nt">--dport</span> 80 <span class="nt">-j</span> REDIRECT <span class="nt">--to-port</span> 2050

<span class="c"># Block actual internet access</span>
iptables <span class="nt">-t</span> filter <span class="nt">-I</span> FORWARD 1 <span class="nt">-i</span> br-lan <span class="nt">-o</span> eth0 <span class="nt">-j</span> REJECT
</code></pre></div></div>

<p>The system also keeps a log of all my requests throughout the night. So if I’ve already asked three times, the AI gets more skeptical. “You already got approved twice tonight, why do you need more time?” It’s like having a disappointed parent watching over your shoulder.</p>

<p>Cron jobs handle the scheduling – gatekeeper mode enables at 9 PM, disables at 5 AM. Even rebooting the router at midnight doesn’t help, it comes back up in restricted mode.</p>

<p>Source code: <a href="https://github.com/kryptokommunist/open-sesame">github.com/kryptokommunist/open-sesame</a></p>

<h2 id="built-with-claude-code-in-one-evening">Built with Claude Code in One Evening</h2>

<p>Here’s the part that blows my mind: I built this entire thing in a single evening using Claude Code. Normally a project like this would involve days of reading OpenWrt docs, fighting with iptables syntax, debugging why the captive portal won’t show up, etc. Instead I just told Claude what I wanted and it SSHed into the router, figured out the constraints, and wrote the code.</p>

<p>The workflow was basically:</p>
<ol>
  <li>Me: “I want an AI-gated internet system on this router”</li>
  <li>Claude: <em>checks router specs, proposes architecture</em></li>
  <li>Me: “The captive portal isn’t showing”</li>
  <li>Claude: <em>debugs iptables, finds issue, fixes it</em></li>
  <li>Me: “Now add image proof for longer requests”</li>
  <li>Claude: <em>adds file upload, integrates multimodal API</em></li>
</ol>

<p>Each iteration took minutes. I steered, Claude implemented.</p>

<h2 id="where-claude-code-screwed-up">Where Claude Code Screwed Up</h2>

<p>Let me be clear though – it wasn’t magic. Some real bugs I had to catch:</p>

<p><strong>Bug 1</strong>: After setting up DNS hijacking (all domains → router IP), the captive portal showed the router’s admin UI instead of my splash page. Claude had excluded the router IP from the redirect, but with DNS hijacking <em>everything</em> pointed to the router IP, so nothing got redirected. I had to point out the wrong page was showing before Claude figured it out.</p>

<p><strong>Bug 2</strong>: The AI couldn’t reach Google’s servers because… my own DNS hijacking was hijacking the API hostname too. Claude first tried hardcoding the IP (broke SSL). Eventually got a proper fix: resolve via external DNS, then monkey-patch Python’s socket handling. Took a few iterations.</p>

<p>The pattern: Claude optimized for the immediate problem without seeing how it’d interact with other parts. Classic AI coding issue. The workflow that actually works is AI implements, human validates. I couldn’t have built this in an evening alone, but Claude couldn’t have shipped it without me catching these bugs. We’re in the centaur phase of AI coding.</p>

<h2 id="does-it-actually-work">Does It Actually Work?</h2>

<p>Yeah, embarrassingly well. The friction of having to justify myself to an AI is surprisingly effective. When I’m about to type “I just want to browse Reddit” I realize how pathetic that sounds and often just go to bed. Which was the whole point.</p>

<h2 id="update-daytime-features">Update: Daytime Features</h2>

<p>After using this for a few days, I wanted the same focus superpowers during the day too. So I added daytime features:</p>

<p><strong>Focus Mode</strong>: One-click blocking of distracting sites (YouTube, Instagram, Twitter, etc.). Uses both DNS and IP firewall blocking – so you can’t bypass it by using the IP address directly. Customize which sites get blocked via a settings page.</p>

<p><strong>Voluntary Lockdown</strong>: Full internet block during daytime – same AI chat to get back online. For deep work sessions where you want zero distractions.</p>

<p><strong>Stats Dashboard</strong>: Charts showing usage patterns over time. Scatter plot shows request times and durations. Bar chart breaks down by weekday. Night/Day tabs let you see nighttime requests separately from daytime Focus Mode and Lockdown usage.</p>

<p>The UI also theme-switches – golden during the day, dark at night. Nice visual cue for which mode you’re in.</p>

<p>TL;DR: Built an AI that guards my internet at night because I have zero self-control. It works better than willpower. Claude Code built most of it in one evening but still needed a human to catch the integration bugs. Source code on GitHub if you want to build your own digital parent.</p>

<hr />

<p><em>The source code is available at <a href="https://github.com/kryptokommunist/open-sesame">github.com/kryptokommunist/open-sesame</a>.</em></p>

<p><em>This post was written with the help of Claude Code.</em></p>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><category term="ai" /><category term="llm" /><category term="router" /><category term="openwrt" /><category term="project" /><category term="claude-code" /><category term="agentic-coding" /><category term="english" /><summary type="html"><![CDATA[I have a problem. It’s 11 PM, I tell myself “just five more minutes of Reddit” and suddenly it’s 2 AM and I hate myself. Sound familiar? After years of failing to fix this with willpower alone (spoiler: willpower doesn’t work against billion-dollar engagement algorithms), I decided to solve it the only way I know how: by overengineering the hell out of it. The result? My router now interrogates me like a strict parent whenever I want internet after 9 PM. If I can’t convince an AI that I actually need to be online, no internet for me. Yes, I built my own digital bedtime enforcer. No, I’m not proud of how necessary this was.]]></summary></entry><entry><title type="html">Heater Spiral</title><link href="https://kryptokommun.ist/portfolio/projects/tech/2025/12/01/heater-spiral.html" rel="alternate" type="text/html" title="Heater Spiral" /><published>2025-12-01T00:00:00-06:00</published><updated>2025-12-01T00:00:00-06:00</updated><id>https://kryptokommun.ist/portfolio/projects/tech/2025/12/01/heater-spiral</id><content type="html" xml:base="https://kryptokommun.ist/portfolio/projects/tech/2025/12/01/heater-spiral.html"><![CDATA[<div class="portfolio">
<h1>Heater Spiral</h1>
<h2>Heat-based body-computer interface pendant</h2>
<section>
<img src="/images/portfolio/projects/rendered_heater_spiral.png" alt="Front of Heater Spiral PCB" />
</section>
<section>
<h3>Overview</h3>
Heater Spiral is a wearable body-computer interface that delivers gentle, programmable warmth through a spiral heater trace. I designed and assembled the circular PCB from scratch, integrating a MOSFET-controlled heater that can raise the surface temperature to around 50&nbsp;°C. One application I explored was wearing it as a necklace over the heart with rhythmic warm-up and cooldown phases to anchor attention in the body—similar to metta meditation sessions I tested during retreat. I also prototyped an app that modulates heat based on how near another wearer is, and I plan to redesign the next iteration with a UWB chip for more accurate distance sensing.
<!--more-->
<p></p>
<p>
<a href="https://github.com/kryptokommunist/heater_spiral" target="_blank">GitHub Repository</a> |
<a href="https://x.com/kryptokommunist/status/1901057389018681477" target="_blank">Project Tweet Thread</a>
</p>
</section>
<section>
<h3>Technical Details</h3>
<ul>
<li>Custom two-layer PCB with ornamental copper spiral heater and matching silkscreen art.</li>
<li>MOSFET-based power stage to drive the heater element up to ~50&nbsp;°C.</li>
<li>USB-C for power and programming, with onboard microcontroller and status LEDs.</li>
<li>Test program cycles heating and cooling periods for somatic awareness practice, plus a proximity-based heating demo for paired wearers.</li>
<li>Designed pendant enclosure concepts to house the board as wearable jewelry.</li>
</ul>
</section>
<section>
<h3>Explorations &amp; Next Steps</h3>
<ul>
<li>Next hardware spin will include UWB to refine distance-based warming interactions. Also include fuses as failsafe in case of software failures.</li>
<li>Long-term vision: scale the concept into a pixel-style thermal display that can cover the whole body.</li>
<li>Inspired by meditation practice, sauna rituals, and hot stone massage as embodied, heat-driven experiences.</li>
</ul>
</section>
<section>
<h3>Gallery</h3>
<img src="/images/portfolio/projects/rendered_heater_spiral.png" alt="Front of Heater Spiral PCB" />
<img src="/images/portfolio/projects/rendered_heater_spiral_2.png" alt="Back of Heater Spiral showing heater spiral art" />
<img src="/images/portfolio/projects/solderered_heater_spiral.png" alt="Heater Spiral PCB illuminated during test" />
<img src="/images/portfolio/projects/necklace_heater_spiral.jpeg" alt="Pendant render showing Heater Spiral board front" />
<img src="/images/portfolio/projects/necklace_heater_spiral_2.jpeg" alt="Pendant render angled view" />
<img src="/images/portfolio/projects/heater_spiral_bake.png" alt="Heater Spiral board baking in an oven" />
</section>
<h3>Videos</h3>
<section>
<div class="video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/JpYmuttcDTM" title="Heater Spiral build video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen=""></iframe>
</div>
</section>
</div>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><category term="art" /><summary type="html"><![CDATA[Self-designed PCB pendant that uses a MOSFET-driven heater spiral for embodied awareness practices.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://kryptokommun.ist/images/portfolio/projects/rendered_heater_spiral.png" /><media:content medium="image" url="https://kryptokommun.ist/images/portfolio/projects/rendered_heater_spiral.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Doyle Spiral Studio</title><link href="https://kryptokommun.ist/portfolio/projects/tech/2025/11/01/doyle-packing.html" rel="alternate" type="text/html" title="Doyle Spiral Studio" /><published>2025-11-01T00:00:00-05:00</published><updated>2025-11-01T00:00:00-05:00</updated><id>https://kryptokommun.ist/portfolio/projects/tech/2025/11/01/doyle-packing</id><content type="html" xml:base="https://kryptokommun.ist/portfolio/projects/tech/2025/11/01/doyle-packing.html"><![CDATA[<div class="portfolio">
<h1>Doyle Spiral Studio</h1>
<h2>Generative Doyle spiral animations etched into steel and wood</h2>
<section>
<img src="/images/portfolio/projects/doyle_spiral_2.png" alt="Doyle Packing heading image" />
</section>
<section>
<h3>Overview</h3>
<p>
This project started when I stumbled upon a <a href="https://x.com/arram/status/1438541186319282178">video by Arram Sabeti on Twitter</a> showing mesmerizing animated Doyle spirals etched into metal. I was so captivated by the effect that I had to rebuild it myself.
</p>
<p>
Doyle Studio is a generative art tool I created to compute <a href="https://en.wikipedia.org/wiki/Doyle_spiral" target="_blank">Doyle spirals</a> and more patterns that can be exported as SVGs for fabrication with a fiber laser. The software can be used to animate geometric textures on a rotating disk, then translate the animations into physical pieces through engraving angled line patterns with a fibo laser. The current pipeline renders animated patterns and generates high-resolution SVGs for
laser engraving. The surfaces reflection sequences can be changed based on the angle of the engrave line pattern similar to a <a href="https://en.wikipedia.org/wiki/Zoetrope" target="_blank">zoetrope</a>.
</p>
<!--more-->
<p>
<a href="https://github.com/kryptokommunist/doyle_packing" target="_blank">GitHub Repository</a>
</p>
</section>
<section>
<h3>Experiments</h3>
<ul>
<li>Tested both steel etching and wood lasering; both work, but steel is more promising for crisp contrast and durability.</li>
<li>Ongoing tuning of fabrication settings to make the animated motion very clearly visible in the etched results.</li>
<li>Planned animation UI driven by cellular automata rules to vary the Doyle spiral parameters over time.</li>
<li>Future experiments with pixel-grid renderings to compare against the smooth circle packings for alternative animation aesthetics.</li>
</ul>
</section>
<section>
<h3>Gallery</h3>
<img src="/images/portfolio/projects/doyle_software_2.png" alt="Doyle Packing software view 1" />
<img src="/images/portfolio/projects/doyle_software.png" alt="Doyle Packing software view 2" />
<img src="/images/portfolio/projects/doyle_spiral_2.png" alt="Rendered Doyle spiral 1" />
<img src="/images/portfolio/projects/doyle_spiral.png" alt="Rendered Doyle spiral 2" />
<img src="/images/portfolio/projects/doyle_spiral_3.png" alt="Rendered Doyle spiral 3" />
</section>
<section>
<h3>Videos</h3>
<iframe title="Doyle Packing software demo" src="https://www.youtube.com/embed/qkzsHEQotLk?si=xtfMyvqlOFirsrTB" width="640" height="360" frameborder="0" allowfullscreen=""></iframe>
<p></p>
<iframe title="Steel etching result" src="https://www.youtube.com/embed/mn3keMGJIm8?si=w1zPKr-BppDldjaU" width="640" height="360" frameborder="0" allowfullscreen=""></iframe>
<p></p>
<iframe title="Wood laser result" src="https://www.youtube.com/embed/EdZXvTYIgcg?si=x5p5dOq0x1jZuLTG" width="640" height="360" frameborder="0" allowfullscreen=""></iframe>
</section>
<section>
<h3>Acknowledgments</h3>
<p>
Thanks to <a href="https://arr.am">Arram Sabeti</a> for the original concept. His <a href="https://x.com/arram/status/1438541186319282178">Twitter video</a> was so mesmerizing that I couldn't stop thinking about it until I built my own version.
</p>
</section>
</div>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><category term="art" /><summary type="html"><![CDATA[Animating Doyle spiral circle packings and translating them into etched steel and wood artworks.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://kryptokommun.ist/images/portfolio/projects/doyle_spiral_2.png" /><media:content medium="image" url="https://kryptokommun.ist/images/portfolio/projects/doyle_spiral_2.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">findmyfl.at</title><link href="https://kryptokommun.ist/portfolio/projects/tech/2025/08/21/findmyflat.html" rel="alternate" type="text/html" title="findmyfl.at" /><published>2025-08-21T00:00:00-05:00</published><updated>2025-08-21T00:00:00-05:00</updated><id>https://kryptokommun.ist/portfolio/projects/tech/2025/08/21/findmyflat</id><content type="html" xml:base="https://kryptokommun.ist/portfolio/projects/tech/2025/08/21/findmyflat.html"><![CDATA[<div class="portfolio">

<h1>findmyfl.at</h1>
<h2>Automated Berlin Apartment Search</h2>

<section>
<img img="" src="/images/portfolio/projects/findmyflatlandingpage.png" />
</section>

<section>
<h3>Overview</h3>

<a href="https://findmyfl.at" target="_blank">findmyflat</a> is a self-hosted web service that helps people find public housing in Berlin more effectively.  
It continuously scans all major public Berlin housing providers and notifies users instantly via Telegram whenever a new offer appears.  
With smart filters, real-time updates, and fair pricing, it makes the stressful apartment hunt much easier.  

<!--more-->

<p>
<ul>
  <li>24/7 continuous scanning of all Berlin public housing providers</li>
  <li>Instant Telegram notifications through <code>@findmyfl_at_bot</code></li>
  <li>Advanced filters: price, rooms, districts, WBS eligibility</li>
  <li>Transparent pricing with a 7-day free trial</li>
</ul>
</p>
</section>

<section>
<h3>Technology</h3>
<p>
<ul>
  <li>Python Flask backend</li>
  <li>React frontend</li>
  <li>PostgreSQL database</li>
  <li>Stripe API for payments</li>
  <li>Telegram API for instant apartment notifications</li>
  <li>Open Street Maps API for address completion</li>
  <li>Self-hosted on a VPS</li>
</ul>
</p>
</section>


<section>
<h3>Gallery</h3>
<img img="" src="/images/portfolio/projects/findmyflatlandingpage.png" />
<!-- Optional: add screenshots of Telegram bot, pricing page, filters -->
</section>

</div>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><category term="web" /><category term="flask" /><category term="react" /><category term="postgres" /><category term="api" /><summary type="html"><![CDATA[findmyflat is a web service that continuously scans all public housing providers in Berlin and instantly notifies you via Telegram about new apartment offers.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://kryptokommun.ist/images/portfolio/projects/findmyflatlandingpage.png" /><media:content medium="image" url="https://kryptokommun.ist/images/portfolio/projects/findmyflatlandingpage.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">When Your Meditation Teacher Becomes the Lesson</title><link href="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/When-Your-Meditation-Teacher-Becomes-the-Lesson.html" rel="alternate" type="text/html" title="When Your Meditation Teacher Becomes the Lesson" /><published>2024-10-05T00:00:00-05:00</published><updated>2024-10-05T00:00:00-05:00</updated><id>https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/When-Your-Meditation-Teacher-Becomes-the-Lesson</id><content type="html" xml:base="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/When-Your-Meditation-Teacher-Becomes-the-Lesson.html"><![CDATA[<p>After two months on a silent retreat in the California mountains, I left two weeks early – not because of what I discovered about my mind, but because of what I discovered about my teacher. I’m writing this for anyone considering intensive practice with a teacher, and for anyone who has felt confused by dynamics with somebody in a position of authority they couldn’t name.</p>

<h2 id="the-setup">The Setup</h2>

<p>A two-month silent retreat is a significant commitment. No reading, no writing, no contact with the outside world. Your teacher becomes your only external reference point. I knew this going in, so I vetted carefully. The teacher was welcoming and accommodating. He seemed sensitive to my concerns about undertaking such a long retreat while carrying childhood trauma. He gave space. He listened. Everything felt right. What I didn’t understand then is that this is often how it begins.</p>

<!--more-->

<h2 id="the-gradual-shift">The Gradual Shift</h2>

<p>The longer the retreat progressed, the more controlling and grandiose the teacher became. It wasn’t sudden — it was incremental, which made it harder to trust my own perception. Some specific examples:</p>

<ul>
  <li>No questions during dharma talks. For the entire duration of my time there, students could not ask questions in this setting.</li>
  <li>Emotional control. He would verbally welcome students crying, but his body language communicated discomfort. This created a confusing double message that made it harder to process grief.</li>
  <li>Lashing out. I witnessed him react with disproportionate anger to small things—someone being sad, someone arriving late.</li>
  <li>Image over relationship. It increasingly felt like being seen as a great teacher mattered more to him than actually teaching. Validation from students seemed to be the priority.
What struck me most was the contradiction between his words and his actions. He spoke of acceptance while communicating rejection. He taught equanimity while modeling reactivity.</li>
</ul>

<h2 id="the-reality-distortion-field">The Reality Distortion Field</h2>

<p>What felt strange to me was that this teacher had practiced intensively for fifteen years in monasteries. He had genuine access to spaciousness and concentration. And I began to notice something: just sitting in front of him would shift sensations in my stomach. It felt like he transmitted anger packaged in spaciousness — my mind wouldn’t catch it, but my body reacted.
My working theory on this is that someone with highly developed concentration can transmit their reality through presence alone, without words. They don’t need to be loud or aggressive. If they have more concentration than you do, they can — consciously or unconsciously — influence your felt sense of what’s happening. You find yourself questioning your own perception while their version of reality gets reinforced simply through the weight of their presence. I think this may be part of how the guru phenomenon works. It sidesteps the mind entirely. The student feels confused, doubts themselves, and the teacher’s reality becomes the default. Of course the authority of a dozen people kinda worshipping the guy in front of your eyes also does something. Because of noble silence you can’t ask what they actually think about him. How convenient.</p>

<h2 id="the-turning-point">The Turning Point</h2>

<p>Two things helped me see clearly. First, my therapist. When I described what was happening in a check-in call, she said: “Oh, this sounds like narcissism.” Having a word for it was an enormous relief. The confusing soup of experiences suddenly had a shape. Second, <a href="https://dharmaseed.org/retreats/1466/">Rob Burbea</a>. Towards the end I smuggled my phone back and started listening to his retreat recordings. The contrast was immediate. Where my teacher practiced with a kind of desperate urgency, Burbea was flexible, grounded, gentle, slow. My teacher positioned awakening as the most important thing. Burbea advocated for being human first. Hearing Burbea helped me escape the reality distortion field. It gave me an external reference point that reminded me what good teaching sounds and feels like.</p>

<h2 id="what-i-learned-about-myself">What I Learned About Myself</h2>

<p>I couldn’t write this honestly without acknowledging my own part. I went to this retreat hoping a long period of practice would finally make me “enlightened.” I was looking for a teacher who would give me that. I was primed to believe in someone’s grandiosity because I had my own grandiose parts that wanted to be special. I could only fall for his narcissism because I took my own too seriously. When I learned to laugh at my own parts that thought they were better than everyone else, I could also laugh when I saw those parts in the teacher. The dynamic required two participants. This doesn’t excuse harmful behavior from someone in a position of power. But it does help explain why I was susceptible, and it’s something I’ll watch for in the future.</p>

<h2 id="the-harder-nuance">The Harder Nuance</h2>

<p>I’ve been sitting with this post for months, and I want to be honest about something that complicates the narrative: the teacher also had a genuinely loving and accepting side. He had a sensitivity, an ability to say the right thing in tense moments, that I haven’t encountered in many people. In some ways, working with his difficult aspects helped me process wounds from my childhood. People are not all one thing. But I also believe he poses a real risk to students, particularly if they do not have very strong and solid boundaries. He lacks the self-awareness to see how his need for validation interferes with his teaching. He lacks the training to work safely with trauma. And the container of a silent retreat — isolated, no outside contact, one authority figure — amplifies whatever dynamics are present. I have heard that he in following retreats had issues with keeping boundaries regarding becoming romantically involved with his students, and later dismissed them when they shared how they felt harmed. Someone I met later at Esalen, who had spent years in Zen monasteries, told me that some of the biggest egos he’d encountered in his life were in those communities. Intensive practice does not automatically confer psychological health. In some cases, it provides a hiding place.</p>

<h2 id="the-takeaway">The Takeaway</h2>

<p>If you’re considering working with a teacher, especially in an intensive or isolated setting:
Watch for contradictions between words and actions. Notice your body. If you consistently feel confused, anxious, or “off” in their presence, take that seriously. Maintain outside reference points if at all possible. Even occasional contact with a trusted friend or therapist can help you stay oriented. Be suspicious of urgency. Good teachers don’t need you to wake up on their timeline. And if you are dealing with significant trauma consider limiting the length of retreat and finding alternative spiritual practices aside from formal sits that can be harmful in themselves.</p>

<p>I left that retreat believing I had witnessed the early stages of a cult. Maybe that’s too strong. Maybe it’s not strong enough. What I know for certain is that meditation does not solve psychological issues — and in some cases, it can provide sophisticated cover for them.
The teacher’s name is Milo North, and his organization is <a href="https://boundlessness.org">Boundlessness</a>. I share this not to condemn him as a person, but because I wish someone had told me before I signed up for a two-month retreat.</p>

<hr />

<p><em>For what I actually learned from the practice itself during this retreat, see <a href="/meditation/jhanas/therapy/english/2024/10/05/What-Two-Months-of-Intensive-Practice-Taught-Me.html">What Two Months of Intensive Practice Taught Me</a>.</em></p>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;meditation&quot;, &quot;jhanas&quot;, &quot;therapy&quot;, &quot;English&quot;]" /><category term="meditation" /><category term="jhanas" /><category term="therapy" /><summary type="html"><![CDATA[After two months on a silent retreat in the California mountains, I left two weeks early – not because of what I discovered about my mind, but because of what I discovered about my teacher. I’m writing this for anyone considering intensive practice with a teacher, and for anyone who has felt confused by dynamics with somebody in a position of authority they couldn’t name. The Setup A two-month silent retreat is a significant commitment. No reading, no writing, no contact with the outside world. Your teacher becomes your only external reference point. I knew this going in, so I vetted carefully. The teacher was welcoming and accommodating. He seemed sensitive to my concerns about undertaking such a long retreat while carrying childhood trauma. He gave space. He listened. Everything felt right. What I didn’t understand then is that this is often how it begins.]]></summary></entry><entry><title type="html">What Two Months of Intensive Practice Taught Me About Emotions, Self, and the Body</title><link href="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/What-Two-Months-of-Intensive-Practice-Taught-Me.html" rel="alternate" type="text/html" title="What Two Months of Intensive Practice Taught Me About Emotions, Self, and the Body" /><published>2024-10-05T00:00:00-05:00</published><updated>2024-10-05T00:00:00-05:00</updated><id>https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/What-Two-Months-of-Intensive-Practice-Taught-Me</id><content type="html" xml:base="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/10/05/What-Two-Months-of-Intensive-Practice-Taught-Me.html"><![CDATA[<p>After previous retreats gave me a taste of the joy, love, and freedom that practice can bring, I wanted to see what would happen with sustained intensive practice. I spent two months on retreat in the California mountains, practicing six to ten hours daily. What I expected: deeper jhana access, maybe some insight stages, perhaps a taste of awakening. What I got: a fundamentally different relationship with my emotional body, direct experience of the plural nature of mind, and a reorientation away from transcendence toward embodiment.</p>

<p><img src="/images/boundlessness/tent.jpeg" alt="" /></p>
<p class="caption">The tent I slept in for two months.</p>

<p><img src="/images/boundlessness/nature.jpeg" alt="" /></p>
<p class="caption">The retreat was held in a beautiful mountain scenery in California.</p>

<!--more-->

<h2 id="the-emotional-body-what-emotions-actually-are">The Emotional Body: What Emotions Actually Are</h2>

<p>Toward the end of the retreat, I began working with Rob Burbea’s recordings from <a href="https://dharmaseed.org/retreats/1466/">The Boundless Heart</a>. This shifted my attention to what Rob calls the “emotional body” — the axis from root to crown. What became clear through sustained attention is that what we call “emotions” are actually constellations of physical sensations with remarkably consistent mappings:</p>

<ul>
  <li>Shame: tension in the lower belly</li>
  <li>Fear: tension in belly, throat, and shoulders</li>
  <li>Love/spaciousness: warmth and softness in the heart center</li>
</ul>

<p>Most of the time, I couldn’t name the emotion. The combination of tensions and sensations was so unique in each moment that conceptual labels felt reductive. This was itself freeing — I stopped trying to figure out what I was feeling and just felt. From Rob, I took the insight that practice doesn’t require cathartic release. You can simply be with the emotional body as it shifts. Watching these constant shifts made something viscerally clear: I am not a conceptual thing. I cannot grasp myself using words or mind. Two techniques from Rob’s recordings proved particularly useful: Spacious holding. Feel the tensions in the body and imagine a soft white bubble of spaciousness around them. This made unpleasant tensions workable rather than something to push through. Playing with views. Rob suggested holding the idea that the world is sacred — lightly, experimentally. After a day of this, everything around me did feel more meaningful. It was subtle but unmistakable how much views shape perception. I also experimented with repeating limiting beliefs aloud (“I need to be a good boy”) until they released into laughter. The belief would just… dissolve.</p>

<p>What I appreciated most about Rob’s approach was the underlying message: everything is just a view. There’s no solid meditation approach you need to twist yourself into like a pretzel. That helped me release my mental image of what meditation and awakening should look like.</p>

<h2 id="ifs-on-retreat-rewiring-the-inner-dialogue">IFS on Retreat: Rewiring the Inner Dialogue</h2>

<p>For the first three weeks, I practiced Internal Family Systems intensively. The retreat container made this remarkably potent — hours of uninterrupted access to parts that normally stay submerged. I encountered parts with beliefs I’d never been aware of. Again and again, I found myself explaining to various parts that I’m an adult now and don’t live with my parents anymore. This sounds almost comically simple, but the felt sense of parts receiving this information was profound. I also practiced befriending parts directly — asking questions, offering to work together rather than against each other. After three weeks, something shifted. I’d look in the mirror and the voice in my head would say, “You look great, I love you.” I’d drop something and hear, “No worries, I love you.”</p>

<p>The inner critic didn’t disappear, but the default inner dialogue became friendly. My sense is that IFS operates similarly to metta practice. The verbal component gives the mind an illusion of control, which eases resistance. Speaking from Self felt like generating metta — while the voice spoke kindly to parts, tensions in the body would soften and unwind.</p>

<h2 id="emotional-release-meeting-anger">Emotional Release: Meeting Anger</h2>

<p>We did breathwork every morning on this retreat — screaming, kicking, the full cathartic toolkit. I also set up a punching bag in a small hut on the property. What I discovered: whenever I felt depressed and stuck, punching the bag would leave me feeling more whole and loving afterward. This surprised me. I’d expected anger release to leave me agitated or drained. Through this work, I started to notice a pattern. I’d tap into anger, then fear would arise to block it. But I kept going deeper. At some point I was shocked by how hard I could kick when I actually allowed the anger. I realized I’d been holding back my own strength my entire life, perceiving myself as weaker because of my resistance to feeling anger.</p>

<p>After the first month, I could access anger and fear like never before. I made it a daily practice — one to two hours of feeling into anger and fear through singing, laughing, punching, jumping. From the outside, it probably looked unhinged. From the inside, it was just processing.
One observation: societal norms around emotional expression are strange when you examine them. Full emotional expression is considered crazy unless you’re an actor. But on retreat, without social pressure, I found myself walking around singing and laughing by myself. The fear of being judged simply fell away.</p>

<p><img src="/images/boundlessness/bag_before.jpeg" alt="" /></p>
<p class="caption">The punching bag in the hut I found.</p>

<p><img src="/images/boundlessness/bag_after.jpeg" alt="" /></p>
<p class="caption">The punching bag after a very freeing anger release session. I didn't expect how much strength there is in my body.</p>

<h2 id="fourth-jhana-and-the-deconstruction-of-self">Fourth Jhana and the Deconstruction of Self</h2>

<p>My primary practice was metta, radiating from the head in six directions. I’d accessed fourth jhana on a previous retreat and wanted to deepen this. While I didn’t progress to the formless jhanas, sustained fourth jhana practice set certain processes in motion. Over weeks, my body began to feel thinner, lighter, more nebulous. This correlated with my sense of self feeling similarly thin. At some point, my visual field started flickering whenever I closed my eyes or after longer sits. I could glimpse that I was seeing discrete frames of experience. The flickering correlated with subtle tension around the eyes.</p>

<p>Then a connection became clear: the tension around the eyes arose every time a sense of self was created. And this correlated with any shift of tensions throughout the body — the body would take a slightly new shape, and that constituted a new sense of self. Also the distinction between thoughts and body dissolved, my thoughts when I tuned in where the sensations of muscles around the mouth tensing in the pattern that forms words and vice versa. I could tune into vibrating sensations or thoughts and it was like an isomorphism in math.</p>

<p>One insight that sounds obvious but felt deeply freeing: I am living in the present. Each self is created fresh in the present moment. I am not bound by my past. In one sitting, I went through my entire life chronologically and realized something strange: I couldn’t find myself in any of the memories. I wasn’t in them. The one who had those experiences wasn’t locatable now. This was disorienting and liberating in equal measure.</p>

<h2 id="changes-in-awareness">Changes in Awareness</h2>

<p>After several weeks, I noticed my awareness had become wider. Looking at a cornfield, I could see the waves of wind across the entire field simultaneously rather than tracking a portion of it. The first time this happened, it felt psychedelic. This persisted after retreat. Watching ocean waves with wide awareness became fascinating — seeing the whole pattern of wave interference at once rather than following individual waves. I also began remembering most of my dreams. And after a few weeks of metta practice, a golden heart started appearing repeatedly in dreams. I took this as a sign the practice was saturating deeper layers.</p>

<h2 id="multiple-selves-direct-experience-of-plurality">Multiple Selves: Direct Experience of Plurality</h2>

<p>Before this retreat, my life had often felt fragmented — like a movie with fast cuts, chaotic and disorienting. About two years ago, after developing stable witness awareness, it started feeling like a continuous film. On retreat, I got to observe directly that I’m not a monolithic self but a system of parts, as IFS describes. I started by noticing different voices. I’d ask them their names and ages. Then I had the strange experience of noticing co-consciousness — being aware that a different self was operating my body while “I” observed. I could talk to that self and intervene if needed.</p>

<p>The most disorienting experience: I sat down to meditate and began interacting with a friendly inner voice. Then I realized that yesterday, I had been that voice. But today I was identified with a different one, now observing my previous “self” from outside. This could have been terrifying — the realization that my current self could disappear, and I don’t know when or if it would return. Instead, it built trust. While selves, voices, and identity shifted, awareness remained. Safety lies in resting in that which doesn’t change.</p>

<h2 id="trauma-practice">Trauma Practice</h2>

<p>I came to this retreat partly to work with childhood trauma. Some observations:
Stillness as trigger. In the first week, I noticed that extended stillness itself was activating — the body remembered freeze and helplessness. I could hear some fellow practitioners breathing in fight/flight for the first weeks during sitting practice which faded. But I don’t think that is the safest way to ground the body. I introduced movement before and during sits: power stances, fists on legs, pushing arms outward, moving the head. This helped discharge the freeze response.</p>

<p>Root awareness. After several weeks, sexual feelings began arising during sits as awareness moved into the root. I realized I’d never breathed fully because deep breaths bring attention to the root at the end of the inhale, which triggered discomfort. The talk of root chakra as life force suddenly made experiential sense — I’d been cut off from it. I spent many sits just being with these sensations, working through layers until I could hold that energy without being overwhelmed.</p>

<p>Sleep and activation. I noticed that before sleep, fear would arise in my stomach along with root sensations — in hindsight that was fight/flight activation. My lifelong sleep difficulties suddenly made sense: the body replays activating memories before sleep, and I’d spent countless nights on YouTube or other distractions to escape these sensations without knowing that’s what I was doing.</p>

<p>With continued practice, the sensations became less scary. The fear of them had been worse than the sensations themselves. Metta and yoga nidra helped. Eventually, I could go to sleep more easily than I ever had. Also I found parts with extreme beliefs. One part thought it was my father. Many parts held hatred toward me, and working with them took patience. Initially I tried only befriending, but after weeks of continued abuse from certain parts, I began setting boundaries: “You can’t talk to me like that. We can talk when you’re more friendly.” Teaching targeted parts to hold boundaries helped too. Also a lot of shame came up. In my IFS practice I kept repeating to objecting parts: this is not my fault. It’s not any part’s fault.</p>

<h2 id="what-shifted">What Shifted</h2>

<p>The retreat gave me more trust in awareness and in my capacity to be okay. I saw repeatedly that fear is usually worse than whatever I’m afraid of. But the bigger shift was a reorientation. I’d come hoping that more metta and jhana practice would bring transcendence — rising above the messiness of human experience. What I left with was the opposite conviction: being with my body, chakras, and emotions is the path. Radiating metta from the head while ignoring the body below isn’t freedom, it’s spiritual bypassing with good concentration.</p>

<p>Practice that brings me down into the body to live my humanity, rather than escape it — that’s what I’m pursuing now. What remains: a deeper trust in life. A changed relationship with time — the retreat felt like a single day, and later I often found myself simply in the present moment without a sense of time. When things get hard, I turned to practice intuitively in the months after. And after the retreat I felt a sense or glimpse how emptiness might be all-encompassing love, and that I might be able to infuse my whole experience with it within this lifetime.</p>

<hr />

<p><em>For the other side of this retreat experience — what I learned about the teacher — see <a href="/meditation/jhanas/therapy/english/2024/10/05/When-Your-Meditation-Teacher-Becomes-the-Lesson.html">When Your Meditation Teacher Becomes the Lesson</a>.</em></p>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;meditation&quot;, &quot;jhanas&quot;, &quot;therapy&quot;, &quot;English&quot;]" /><category term="meditation" /><category term="jhanas" /><category term="therapy" /><summary type="html"><![CDATA[After previous retreats gave me a taste of the joy, love, and freedom that practice can bring, I wanted to see what would happen with sustained intensive practice. I spent two months on retreat in the California mountains, practicing six to ten hours daily. What I expected: deeper jhana access, maybe some insight stages, perhaps a taste of awakening. What I got: a fundamentally different relationship with my emotional body, direct experience of the plural nature of mind, and a reorientation away from transcendence toward embodiment. The tent I slept in for two months. The retreat was held in a beautiful mountain scenery in California.]]></summary></entry><entry><title type="html">anattā – 𑀅𑀦𑀢𑁆𑀢𑀸</title><link href="https://kryptokommun.ist/portfolio/projects/tech/2024/07/01/annata.html" rel="alternate" type="text/html" title="anattā – 𑀅𑀦𑀢𑁆𑀢𑀸" /><published>2024-07-01T00:00:00-05:00</published><updated>2024-07-01T00:00:00-05:00</updated><id>https://kryptokommun.ist/portfolio/projects/tech/2024/07/01/annata</id><content type="html" xml:base="https://kryptokommun.ist/portfolio/projects/tech/2024/07/01/annata.html"><![CDATA[<div class="portfolio">
 
<h1>anattā – 𑀅𑀦𑀢𑁆𑀢𑀸</h1>
<h2>LED installation</h2>
 
<section>
<img img="" src="/images/portfolio/art/IMG_2698.jpeg" />
</section>
<section>
<h3>Overview</h3>
 
Anattā is an experiment in which you are invited to be playful with your identity and that of someone else. Anattā (“non-self”) is a term from Buddhist texts and practices. This experiment for two people invites you to expand the space around the fixed self and to experience that it may not be quite as solid and stable as we often assume. How does it feel to be me?
 
How does someone who is not me feel? How does it feel when both categories dissolve?
In 2025 I modified the mirror with two time-of-flight laser sensors so visitors can use hand gestures in front of the surface to control how the two reflections merge, bringing agency and playfulness directly into the blending effect.
 <!--more-->
Experiment suggestion:
<p>
<ul>
  <li>Stand with another human on each side of the mirror</li>
  <li>Position yourselves so that your faces overlap exactly</li>
  <li>steel wire</li>
  <li>Turn the dial to adjust the frequency of the light</li>
</ul>
</p>
Two-way mirror
 
The glass is coated with, or has been encased within, a thin and almost transparent layer of metal (window film usually containing aluminium). The result is a mirrored surface that reflects some light and is penetrated by the rest. Light always passes equally in both directions. However, when one side is brightly lit and the other kept dark, the darker side becomes difficult to see from the brightly lit side because it is masked by the much brighter reflection of the lit side.
<p>
<ul>
  <li>Half-transparent mirror</li>
  <li>aluminium frame</li>
  <li>3D printed parts</li>
  <li>microcontroller &amp; knob &amp; led stripe</li>
</ul>
</p>
</section>

<section>
<h3>Gallery</h3>
<img img="" src="/images/portfolio/art/IMG_2788.jpeg" />
<img img="" src="/images/portfolio/art/IMG_2676.jpeg" />
<img img="" src="/images/portfolio/art/Screenshot 2025-01-16 at 19.54.22.png" />
</section>

<section>
<h3>Videos</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/rdVOaDW7ID4?si=I9GRIFfshx4vULWc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
<p></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/1TenTbWGko8?si=37uTXHwUKxARrl8L" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
<p></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/kJ331BnvYXY?si=p2mF45AG65sA1ODG" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
<p></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/6lovjHYQL-c?si=ucy6QAcC1MTSun9P" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
</section>

<section>
<h3>Acknowledgments</h3>
Thanks to Moritz Wehrmann for inspiring this work with his installation <a href="https://moritzwehrmann.com/portfolio/alter-ego-version-ii/">Alter Ego</a>
</section>
</div>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><category term="art" /><summary type="html"><![CDATA[Anattā is an interactive mirror experiment highlighting impermanence of identity.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://kryptokommun.ist/images/portfolio/art/IMG_2698.jpeg" /><media:content medium="image" url="https://kryptokommun.ist/images/portfolio/art/IMG_2698.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">What I learned about meditation, love, and trauma on and after a TWIM retreat with Delson Armstrong</title><link href="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/01/01/what-i-learned-about-meditation-love-and-trauma-on-and-after-a-twim-retreat-with-delson-armstrong.html" rel="alternate" type="text/html" title="What I learned about meditation, love, and trauma on and after a TWIM retreat with Delson Armstrong" /><published>2024-01-01T00:00:00-06:00</published><updated>2024-01-01T00:00:00-06:00</updated><id>https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/01/01/what-i-learned-about-meditation-love-and-trauma-on-and-after-a-twim-retreat-with-delson-armstrong</id><content type="html" xml:base="https://kryptokommun.ist/meditation/jhanas/therapy/english/2024/01/01/what-i-learned-about-meditation-love-and-trauma-on-and-after-a-twim-retreat-with-delson-armstrong.html"><![CDATA[<p>I have been practicing tranquil wisdom insight meditation (<a href="https://library.dhammasukha.org/books.html">TWIM</a>), a powerful loving-kindness-based meditation system, for the past six months with a special focus on forgiveness practice. Through that, I already discovered that I and my friends often use shame and guilt to try to control each other. After becoming aware of that I dropped a lot of these patterns. When I started on my meditative path I started with a guided <a href="https://www.youtube.com/watch?v=-5a028RS5Ck">TWIM metta meditation</a>. During that practice after a month I accidentally dropped into the first and second <a href="https://www.youtube.com/watch?v=0K5ypXyF3dY">Jhana</a>, thinking I might be having a stroke. So after practicing different models, I returned to TWIM, knowing its power, since firstly loving kindness simply feels good and also many people report that it’s the faster path and that it helps avoid dark night of the soul type of episodes.</p>

<p><img src="/images/TWIM/bhudda.jpeg" alt="" /></p>

<!--more-->

<p><img src="/images/TWIM/meditationhall.jpeg" alt="" /></p>

<p><img src="/images/TWIM/outside.jpeg" alt="" /></p>

<p><img src="/images/TWIM/forrest.jpeg" alt="" /></p>
<p class="caption"> Going for a walk in the forest on the last day, the forest and sun rays were captivating as I saw them with fresh eyes like for the first time.</p>

<h2 id="forgiveness-practice-trauma-and-finding-a-safe-anchor-in-the-heart">forgiveness practice, trauma and finding a safe anchor in the heart</h2>

<p>This has been the second silent retreat of my life after the <a href="/meditation/jhanas/therapy/english/2023/04/20/my-first-five-day-silent-retreat-jhanas-and-alexander-technique.html">6-day silent retreat</a> with Catherine McGee at Gaia House earlier this year. On the first day everyone had to lock away their phone so for the next 10 days I’d be fully with my experience with little distractions. I started with forgiveness practice for the first three days of the retreat. That meant that I would observe all the thoughts I had throughout the day and forgive them. And I was in for a shock. The whole day my mind was thinking thoughts that were completely referring to the past. My thoughts were mainly going back to replaying situations from my childhood and school as a teenager. Silence at the dinner table due to being on a silent retreat? My mind wouldn’t care and started thinking about being in trouble because there must be some conflict at the dinner table. Looking deeper of course that was how my childhood dinner with family looked like very often. My mind did not care that I was now an adult sitting with meditators at a silent dinner table. I knew I had an at times very abusive upbringing with psychological and physical violence, but after this experience, it became very clear to me that my mind was still living in that time for the majority of the day. No wonder that I was having trouble with depressive episodes and anxiety for all my life. It was likely mostly the body-mind replaying past memories and patterns.
 During the first days of forgiveness meditation, I forgave every thought I had. I had some tears coming up at times, but was never able to really let go and cry. In hindsight, since I could totally do that after the retreat I think that some part of me was holding back and was not feeling fully safe to allow feeling the grief. At times I could also catch some suicidal thoughts, a car going by and some thought of jumping in front of it would come up. I forgave myself for that and also used some <a href="https://en.wikipedia.org/wiki/Internal_Family_Systems_Model">IFS moves</a> to ask that part of myself for its reasons. It turned out that the part wanted to protect me from experiencing pain, which I thanked it for and explained that I have learned ways to deal with pain and stay alive. Additionally, I developed a rash around my eyes for a couple of days that probably were the result of some triggers making the body release lots of cortisol.</p>

<p>A couple of days later Delson had me switch to loving kindness practice. His presence was such that it felt like he was practicing what he was preaching. He felt very present in the moment and it felt like whatever emotion, worry, etc. I threw at him would dissipate into equanimity. Besides the technical instructions the interviews conveyed a deep sense of trust in the process and it felt like the core message was: Everything will unfold by itself, accept whatever is arising.</p>

<p><img src="/images/TWIM/heart.png" alt="" /></p>
<p class="caption"> An excerpt from my notebook.</p>
<p> At the middle of the retreat, I started to have such fine awareness and control over my attention that I could play with it and spread it in a circle around my head, move it to any body part, and spread it across the entire body. Having this great detailed awareness of where my attention is spatially was so fun and nothing I ever experienced so strongly outside retreat. Then after some time, I would start to have trouble falling asleep. A lot of fear would come up before sleeping. The most magnificent thing I noticed there was how my consciousness would be pulled by some force into the past, some traumatic memories. I did not access them, it was just a hunch. And then I could immediately feel how attention would be pulled back to my heart. I would then invoke some metta (feeling of loving kindness) and lie in bed with warmth spreading out from the heart in my chest and I felt protected from this movement of mind trying to pull me into the past. After that experience, I was sure that I want to permanently have what Delson called a lighthouse or anchor in the heart. According to Delson that is the only kind of real safety we can have and it made a lot of sense to me. It made sense not logically, but experientally it became very clear to me that this is true and incredibly powerful and valuable.</p>

<h2 id="expanded-awareness-and-alexander-technique">expanded awareness and Alexander Technique</h2>
<p> At some point in the middle of the retreat, I figured out that I was doing everything I did with an amount of unnecessary tension. When I notice that and relax it’s the same move as taught in <a href="https://en.wikipedia.org/wiki/Alexander_Technique">Alexander Technique</a> class. Only that I rediscovered it by myself as a byproduct of meditation. If I relax in that way my spine extends, my shoulders broaden and my awareness widens. It was obvious that the form of the body and that of consciousness are directly linked, in everyday life I just often lack the fine-tuned perception to catch it. I could very clearly notice how I had the habit of making myself small by tensing up and that I could just relax instead. My awareness of my body increased by a factor of ten. I felt like my upper body was noticeably bigger than how I felt it in everyday life before. I learned a motion indescribable by words where I could relax in a way that my neck would get long and it felt like it grew 10cm even though I know that was physically not the case but the feeling was such. It was like I learned to un-tense into confidence. The first couple times it felt like my shoulders are in the wrong place, above where they were supposed to be. But that was just my habit of making myself small. In my teacher interview, I asked if permanent expanded awareness was something I would get from continuing the practice. Delson told me that this was not the ultimate goal but a side effect. I could see how in my experience I would get triggered and my awareness would be contracted. And how ultimately healing and meditation are intertwined in that staying in expanded awareness is a result of healing or having integrated most triggers.</p>

<p><img src="/images/TWIM/expanded.png" alt="" /></p>
<p class="caption"> An excerpt from my notebook.</p>

<h2 id="deepening-practice-and-insight">deepening practice and insight</h2>

<p>During my sits, I would just think of a spiritual friend at the start to invoke metta. I did that for a while and the metta got stronger and stronger. At some point, it got so strong that I would always get a bright flickering white light after sitting for a while. At some point, I was given the instructions to radiate the metta into six directions from my head. I proceeded to do so. This felt different. The metta felt more tranquil and from my understanding was Jhana four. I radiated it to all six directions and at the same time followed the instruction to just let the meditation happen instead of trying to meditate. It was kinda like radiating a white flickering fog out of my head, kinda like when you are on an airplane and you fly through a cloud and look out the window. I could notice how I was focusing on the feeling of metta radiating and then some tension in my body arose and I would just relax it. On one day when I felt like it was the deepest I ever got in meditation, I could see how there were tension knots in my body and then they would bubble upwards into my head where a little bubble would pop, and then in its place a thought would appear. I could see how thoughts were directly caused by the tensions in my body. That felt very trippy and since I was completely sober it’s harder to dismiss than a psychedelic experience.</p>

<p><img src="/images/TWIM/thoughts.png" alt="" /></p>
<p class="caption"> An excerpt from my notebook.</p>

<p>Also at some point in meditation, I was just watching how the meditation was happening, I was watching how something that was not me was relaxing tensions in my field of awareness. Then relaxing that one tension would reconfigure the whole tension pattern and like solving a puzzle something would relax another tension knot. All of that was just happening by itself. It felt like I was watching the mind or consciousness like my core learning algorithm executing. Was that happening all the time on the low level and I just never looked so deep into what was going on? Since I was not able to see this deep after retreat again this experience has been hard to integrate.</p>

<p>Some other finer points of consciousness and meditation I learned. First I asked Delson if I should stop looking for blockages, hidden grief etc. and his answer was that I should let everything just come up by itself. Also that I should watch for what the intention behind looking for blockages is, if it is aversion I should beware. Then there are constructive jhanas as in invoking them by using metta or concentration and deconstructive jhanas as in if I simply relaxed I would end up in a jhanic state at some point without trying to get there. I asked Delson about how therapy is replacing one tension pattern with another whereas the TWIM meditation is just relaxing it fully and he confirmed that this is the case. Also, he said that it is not necessary to be fully aware of what I am letting go of. There will always be some tensions, just accept them. Also what I found interesting was how during the interviews Delson would sometimes look away and look back at me when I would un-tense. It seemed like he was somehow rewarding me nonverbally for un-tensing which I found interesting.</p>

<h2 id="metta-circle-and-feeling-the-intimacy-of-the-moment">metta circle and feeling the intimacy of the moment</h2>

<p>Another great experience at the retreat was the metta circle on one of the last days led by Delson’s assistants. The idea was that we would sit in a group of about 15 in a circle and one of us would sit in the middle and then everyone would close their eyes and send loving kindness to the person in the middle. That was huge for me. I was a bit skeptical if I could feel it or let the love in. But when it was my turn and I sat in the middle I noticed I was trying to receive the metta and just relaxed. At some point, my visual field just lit up with bright light and I wasn’t doing anything. I did not put in any effort and it felt like and the metta was stronger than in many of my sits. This was a huge eye-opener for me and I realised that I could just do the same thing in my sits, fully receiving the metta instead of efforting to create it. Also, this gentle, respectful way of showering someone with love opened my eyes to how in my everyday life I always thought I had to do something to show love and affection when actually it was also possible in this incredibly gentle way. I also remember that sometimes I would feel lonely and miss my friends, but just sitting with tea in the dining hall in the presence of another retreatant would dissolve it, it was great to be able to appreciate this subtle feeling of togetherness and connection without any words. These encounters revealed the intimacy of everyday moments that normally would have gone past me.</p>

<h2 id="feeling-the-calling-of-the-dharma">feeling the calling of the dharma</h2>

<p>Also on the last day the noble-silence was ended for everyone. I could feel how that brought up some social anxiety and how interacting with others would bring up more triggers and I could feel how it required booting up some sense of self for me. Everyone was incredibly diverse and I talked to a bunch of folks and what struck me was how it seemed that the longer folks practiced the more themselves and normal they seemed to me. Somehow it correlated with how much they dared to be themselves. I somehow had this image in my mind that the advanced practitioners would fit some peaceful and serene image of Buddhist monks. It was hugely inspiring that they seemed like normal folks. Also, I could tell that those who had a lot of practice were somehow easy to talk to and it was like spending time with them was transmitting some openness and easefullness effortlessly. To me, it seemed like I was being drawn in by that and it was the dharma speaking to me and inviting me to go further. What stuck in my mind was that someone told me “If you give to the dharma, the dharma will give to you”. The whole experience was amazing, there were these humans that I just met 10 days ago and they were all so loving and kind to me. It felt like they were all my friends. It resembled some memories from my techno clubbing days in Berlin where with the help of MDMA in the after hour everyone was also exceptionally open and friendly with each other. But here on the retreat, it felt more heartfelt and genuine than the chemical kindness of MDMA. But there were similarities, just pointing out how great and beautiful the world looked to each other all the time and being all smiles. Also I could glimpse how powerfully different it is to see the world where everyone is my friend by default and I could see that it is possible to see the world that way through practice.</p>

<p>Still, I sensed that underneath all the metta was still some fundamental fear present in me. Going out in the world was like seeing everything for the first time. I looked at everyone’s faces and when I sat for meditation I could just go to the first or fourth Jhana in a couple minutes which was amazing. And it felt like I could do this even while walking or sitting somewhere not formally meditating. Sitting at the airport all the kindness from the folks at the retreat hit me and I cried for an entire hour during a sit. I felt that the world and people were good and kind and that I had this image of humans as inherently dangerous learned from my abusive upbringing that was just not true. I realised that love and kindness could feel this good and safe and that I probably hadn’t experienced that in a group so immediately in this way before. I felt enormous gratitude.</p>

<h2 id="post-retreat-integration">post-retreat integration</h2>

<p>After the retreat, I became aware of how my mind lives in the past further, which seems almost funny, like thoughts looping after getting up about not wanting to get up, because I do not want to go to school. But the school my mind thinks it’s going to is the school I went to as a teenager. I had to explain to this part of me that I would never have to go to this school again. Then a couple of days later after the retreat ended I had a sit in front of a mirror and I experimented with sending myself love while looking into my own eyes. I noticed that when I do the Alexander Technique move of relaxing my body such that I become taller and wider and additionally keep attention in my eyes I started crying. My eyes felt painful, like a burning sensation which from my understanding might be resistance to feeling grief. I kept feeling it and cried for an hour during that sit. After that, the doors to grief were wide open. I cried every day, more after my sits during walks that lasted an hour up to three hours for the next weeks. It got pretty intense, I could catch glimpses of thoughts around this. That grief must be decade-old grief that I was never allowed to feel as a child. After a couple of weeks of that, I could also sense some feeling of hopelessness and even suicidal thoughts at times. I just noticed them and tried to send those parts of me love and compassion. The thing that ultimately stopped those thoughts from coming up again was a ketamine therapy I started later. While ultimately beneficial for my life I have to mention that it did destabilize my life for a couple of weeks. Paradoxically feeling safer in my own heart allowed me to make more risky decisions in changing my life and that kinda of led to more instability and change. So from the outside, it looked like I was in a worse place while it was reflecting the truth of where I always have been more honestly. Still, I learned that the retreat probably reduced some amount of dissociation considerably and that led to feeling that my life was out of alignment with my true needs and wants. That can be quite disturbing, but I kept trusting my heart and followed its advice. During sits, I could now discern between when my mind would answer and when my heart would answer, when in doubt I would listen to my heart.
 Also, there were some other consequences. With my master’s thesis, I started to write my one-page expose and I just felt how uninterested I was in the whole topic I chose. I realised that with my job and thesis topic, I chose things by that others considered them to be great. But these things actually for me were out of alignment with my true interests. And while there were fun sides to going to work, I dreaded doing the work, and then just went into a Jhana state at times, which made the work more pleasant. But over the long run, I couldn’t pretend to like something I did not like. Also, I was dealing with feeling through hours of grief each day and just did not have any energy left for doing much else except meeting friends and getting support to stay afloat. In hindsight, I should have planned two or three months of downtime after the retreat for integration.</p>

<p>The same with friends and my roommates doing things I did not feel good about. I somehow had weeks of difficult conversations with friends where I told them things were pre-retreat I would have been too afraid to speak about these things, too much aggression, passive-aggression, feeling jealous, and what I saw as unkind treatment of others. Also, I felt less defended and got a lot of feedback on where I was self-righteous, saw myself as a victim, and have been passive-aggressive. All in all a humbling experience to realise how blind I was to those things. I think because I found a home in my heart and was okay with feeling grief I stopped being afraid of doing things where I might lose some friendships as well as my self-image. So I was able to take bigger risks that I was not able to take before. I am more myself now. And I learned that doing the scary things was better for me and my friends in the long run. I was surprised by the understanding and encouragement I got from the majority of friends and strangers to be honest about what I think.</p>

<p>Overall this retreat experience and TWIM have profoundly shifted the trajectory of my life. I am very certain now that meditation is an extremely subtle but powerful practice to reduce my own and others’ suffering. During the retreat, many painful truths came up, and meeting them with patience and kindness was a great way to suffer less. A retreat can reduce dissociation to a degree that you might find yourself in a lot more perceived tension than pre-retreat.</p>

<p>May you find your path in your own time towards a home in your heart friend.</p>

<h2 id="tldr-by-chatgpt">TL;DR (by ChatGPT)</h2>

<p>This post details my transformative journey through a Tranquil Wisdom Insight Meditation (TWIM) retreat. It helped me break patterns of guilt and shame, uncover deep-seated traumas, and understand my depressive episodes and anxiety. The retreat fostered a sense of presence, acceptance, and expanded awareness in me. I gained insights into the mind-body connection and the power of love and kindness. Post-retreat, I experienced intense emotional release and self-realization, leading to significant life changes. I learned the importance of authenticity, honesty, and listening to my heart. The experience underscored the need for downtime after such an intense retreat for proper integration and adjustment. This retreat has been a life-changing journey, inspiring self-discovery and healing.</p>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;meditation&quot;, &quot;jhanas&quot;, &quot;therapy&quot;, &quot;English&quot;]" /><category term="meditation" /><category term="jhanas" /><category term="therapy" /><summary type="html"><![CDATA[I have been practicing tranquil wisdom insight meditation (TWIM), a powerful loving-kindness-based meditation system, for the past six months with a special focus on forgiveness practice. Through that, I already discovered that I and my friends often use shame and guilt to try to control each other. After becoming aware of that I dropped a lot of these patterns. When I started on my meditative path I started with a guided TWIM metta meditation. During that practice after a month I accidentally dropped into the first and second Jhana, thinking I might be having a stroke. So after practicing different models, I returned to TWIM, knowing its power, since firstly loving kindness simply feels good and also many people report that it’s the faster path and that it helps avoid dark night of the soul type of episodes.]]></summary></entry><entry><title type="html">Curium</title><link href="https://kryptokommun.ist/portfolio/projects/tech/2023/12/01/curium-five.html" rel="alternate" type="text/html" title="Curium" /><published>2023-12-01T00:00:00-06:00</published><updated>2023-12-01T00:00:00-06:00</updated><id>https://kryptokommun.ist/portfolio/projects/tech/2023/12/01/curium-five</id><content type="html" xml:base="https://kryptokommun.ist/portfolio/projects/tech/2023/12/01/curium-five.html"><![CDATA[<div class="portfolio">

<h1>Curium</h1>
<h2>12U CubeSat on board computer software</h2>

<section>
<img img="" src="/images/portfolio/projects/banner.png" />
</section>
<section>
<h3>Overview</h3>
The Curium project was designed around the development of 12U CubeSats, using components primarily sourced from commercial manufacturers. We utilized a launch opportunity from the <a href="https://www.dlr.de/en/latest/news/2022/02/20220620_go-ahead-for-second-round-of-microlauncher-payload-competition" rel="nofollow">DLR microlauncher competition 2022</a>. I was part of the on board computer (OBC) team. The written code is publicly accessible on <a href="https://github.com/Curium-Five">github</a> and <a href="https://gitlab.com/curiumsat">gitlab</a>. The satellite was <a href="https://www.nanosats.eu/sat/curium-one">launched succesfully in July 2024</a> on Ariane 6.

<!--more-->
My contributions:

<p>
<ul>
  <li>surveyed open source cubesat projects and communities</li>
  <li>wrote C code for the custom designed OBC pcb</li>
  <li>set up CI pipeline</li>
  <li>contributed to architecture decisions for OBC pcb and software design</li>
</ul>
</p>

</section>
<section>
<h3>Gallery</h3>
<img img="" src="/images/portfolio/projects/pcb.png" />
</section>
</div>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;tech&quot;]" /><category term="tech" /><summary type="html"><![CDATA[The Curium project was designed around the development of 12U CubeSats, using components primarily sourced from commercial manufacturers.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://kryptokommun.ist/images/portfolio/projects/banner.png" /><media:content medium="image" url="https://kryptokommun.ist/images/portfolio/projects/banner.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">My First Five-Day Silent Retreat: Jhanas &amp;amp; Alexander Technique</title><link href="https://kryptokommun.ist/meditation/jhanas/therapy/english/2023/04/20/my-first-five-day-silent-retreat-jhanas-and-alexander-technique.html" rel="alternate" type="text/html" title="My First Five-Day Silent Retreat: Jhanas &amp;amp; Alexander Technique" /><published>2023-04-20T00:00:00-05:00</published><updated>2023-04-20T00:00:00-05:00</updated><id>https://kryptokommun.ist/meditation/jhanas/therapy/english/2023/04/20/my-first-five-day-silent-retreat-jhanas-and-alexander-technique</id><content type="html" xml:base="https://kryptokommun.ist/meditation/jhanas/therapy/english/2023/04/20/my-first-five-day-silent-retreat-jhanas-and-alexander-technique.html"><![CDATA[<p>Last week, I went on my first silent retreat at <a href="https://gaiahouse.co.uk">Gaia House</a> in Britain. I was drawn to the place by the charm and resonance of Rob Burbea’s teachings, which I listened to on <a href="https://dharmaseed.org">dharmaseed.org</a>. He was a resident teacher at Gaia House, and the retreat I attended was led by Catherine McGee and Yahel Avigur, both of whom were strongly influenced by his teachings. The retreat was a challenging but still surprisingly effortless and very rewarding experience.</p>

<p>At the end of the retreat, I went to London, which was quite a stark contrast to the quiet and peaceful scenery of the rural landscape around the retreat center oozing stillness and peacefulness. But even though it was harder to notice, I could still access the stillness within. It’s always there when I am sensitive enough to look for it. I also noticed colors more intensely and saw the positive and beautiful everywhere, all after five days of maybe six hours of daily meditation in a mix of walking and sitting meditation.</p>

<p><img src="/images/gaiahouse1.jpeg" alt="" /></p>

<!--more-->

<p><img src="/images/gaiahouse2.jpeg" alt="" /></p>

<p><img src="/images/gaiahouse3.jpeg" alt="" /></p>
<p class="caption"> The library and the entire place is truly beautiful and encourages you to become more present.</p>

<p>I am pretty sure now that <a href="https://en.wikipedia.org/wiki/Alexander_Technique">Alexander Technique</a> is basically a form of social body awareness meditation. You can get to the same place without a teacher and just by returning awareness to the whole body over and over. It’s also bringing students to expanded awareness and ultimately <a href="https://en.wikipedia.org/wiki/Nondualism">nondual awareness</a>. Over the five days, I noticed my awareness expanding outside but also within my body. At some point, I could feel my hips during walking and generally my whole body. That then automatically improved my posture because my body would automatically untense as soon as awareness was in the tensed area. Also, the feeling after the retreat coming back to the city was similar to receiving Alexander Technique sessions and then walking through Berlin. Awareness is expanded, and I just look everywhere more curiously. There is joy in more small things, the neon light in front of the restaurant, the palm trees. The small becomes big and magical. So there’s more joy in the day.</p>

<p>My main takeaway was that I realized I could still meditate with less effort. Just holding the intention of whatever the goal of the meditation is lightly is enough. Willpower, at the point I am at, is of no more value. And I can notice the effort level in my breath. The more effort I put into meditation (or anything else, for that matter), the more turbulent my breath feels. When there is no effort, the breath feels like a laminar flow without any resistance and is barely audible. I realized that in the big meditation hall, when my breath was significantly more audible, that I was still efforting way more than needed, even when breathing out. But breathing out requires no effort. Doing nothing, the exhale just happens. With this more light way of meditating, I am more sensitive, and I can still work with upcoming dullness or boredom. Instead of using effort, I use the gentle but firm intention of returning to my goal of meditation and addressing whatever concern with acceptance and love.</p>

<p>Another thing I loved about the retreat was Catherine McGee’s charisma in person, which really stood out. She radiated a loving softness with a very confident and strong core. Something I have not seen in a person I met in person before. Some meditation teachers come off as loving but maybe somehow in an unbalanced soft way. She embodied what she spoke of and also explicitly pointed out some things I was missing in many meditation instructions. For example, her approach is very body-centered. So starting off with a shake session and just patting down your own body.</p>

<p>Another new idea I got from the retreat was in a talk by Catherine McGee, who explained how emptiness can help you be sensitive without becoming overwhelmed. I always struggled with meditation making me overly sensitive and wondered how I could cope with it in the real world. McGee pointed out that emptiness is not a goal in itself but rather a tool that can help you navigate the world while being sensitive.
Another new idea I got from the retreat was in a talk by Catherine McGee, who explained how emptiness can help you be sensitive without becoming overwhelmed. I always struggled with meditation making me overly sensitive and wondered how I could cope with it in the real world. McGee pointed out that emptiness is not a goal in itself but rather a tool that can help you navigate the world while being sensitive.</p>

<p>Another valuable insight McGee shared was that having attention in your belly can help you stay grounded. This point resonated with me and helped me to cultivate more groundedness in my daily life.</p>

<p>After the retreat, I was able to access <a href="https://www.youtube.com/watch?v=0K5ypXyF3dY">Jhana</a> one and two, which was a significant accomplishment for me. I could access them two years ago and then lost the ability to access them. Basically I put in a lot of effort over two years to learn that I need to stop putting in so much effort if I want to access them. I found that by holding the intention of accessing Jhana gently and patiently, I could enter these states more easily. What I found most powerful was imagining a loving other in the second Jhana. It felt like having a real person hold space for my parts and difficult emotions. The after-effects were remarkable, with more equanimity and joy throughout the day. In the Jhanas, attention and awareness are like train tracks that won’t budge, which helped me bring awareness to body parts that needed healing. I want to use the Jhanas to do Internal Family Systems healing work on myself rather than starting insight practice. That seems healthier to me, first strengthen psychological health before I start deconstructing my ways of looking and perception.</p>

<p>I also attended an Alexander Technique workshop after the retreat, which helped me realize that I could put even less effort into accessing the Jhanas after noticing how it is easier to catch a ball if I just don’t use any effort and let my body do it perfectly. During the Alexander Technique class, I learned how attention and awareness work in social group dynamics and how they relate to power and status. When people see someone as high status, they give them attention, and that person then directs others’ attention and awareness. With meditation and Alexander Technique, the goal is to direct awareness and attention mostly to oneself, which gives you permission to go wherever you want. So it’s understandable why people want to have a career and high status, it feels more fun to be in expanded awareness in social settings. But what many people don’t know is with meditation or Alexander Technique you get the same feeling, but without having to rely on external factors to give you permission. What an amazing pitch for meditation that is huh.</p>

<p>In the Alexander Technique class, when the teacher opened the student’s awareness, I could feel the student seeming to command the room as an equal to the teacher. However, a pitfall of Alexander Technique is that this experience of expanded awareness may be tied to permission from the teacher more easily than with meditation. With meditation practice, the teacher is far removed, so you realize that you are giving yourself permission to expand your awareness. But a good Alexander Technique teacher should be aware of this and make sure you credit yourself for expanding your awareness.</p>

<p>Overall, attending a silent retreat and learning about Jhanas and Alexander Technique was a life-changing experience for me. I’m grateful for the insights and tools I gained, and I hope to continue integrating them into my daily life.</p>]]></content><author><name>Marcus Ding</name></author><category term="[&quot;meditation&quot;, &quot;jhanas&quot;, &quot;therapy&quot;, &quot;English&quot;]" /><category term="meditation" /><category term="jhanas" /><category term="therapy" /><summary type="html"><![CDATA[Last week, I went on my first silent retreat at Gaia House in Britain. I was drawn to the place by the charm and resonance of Rob Burbea’s teachings, which I listened to on dharmaseed.org. He was a resident teacher at Gaia House, and the retreat I attended was led by Catherine McGee and Yahel Avigur, both of whom were strongly influenced by his teachings. The retreat was a challenging but still surprisingly effortless and very rewarding experience. At the end of the retreat, I went to London, which was quite a stark contrast to the quiet and peaceful scenery of the rural landscape around the retreat center oozing stillness and peacefulness. But even though it was harder to notice, I could still access the stillness within. It’s always there when I am sensitive enough to look for it. I also noticed colors more intensely and saw the positive and beautiful everywhere, all after five days of maybe six hours of daily meditation in a mix of walking and sitting meditation.]]></summary></entry></feed>