<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>hi, it&#39;s mike</title>
    <link>https://mike.puddingtime.org/tags/orggtd/</link>
    <description>Recent content on hi, it&#39;s mike</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <managingEditor>mike@puddingtime.org (mike)</managingEditor>
    <webMaster>mike@puddingtime.org (mike)</webMaster>
    <copyright>© 2026, mike</copyright>
    <lastBuildDate>Fri, 19 May 2023 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://mike.puddingtime.org/tags/orggtd/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Daily Notes for 2023-05-19</title>
      <link>https://mike.puddingtime.org/posts/2023-05-19-daily-notes/</link>
      <pubDate>Fri, 19 May 2023 00:00:00 +0000</pubDate><author>mike@puddingtime.org (mike)</author>
      <guid>https://mike.puddingtime.org/posts/2023-05-19-daily-notes/</guid>
      <description>Helping org-edna out when you&amp;rsquo;re using BeOrg and the limits of hyper-automated plaintext primitivism.</description>
      <content:encoded><![CDATA[<h2 id="using-beorg-with-org-gtd-org-edna">Using BeOrg with org-gtd/org-edna</h2>
<p>So, org-gtd makes heavy use of org-edna:</p>
<p>When you&rsquo;re working down a project&rsquo;s todos, each time one flips to <code>DONE</code> it triggers org-edna to move the next task into a <code>NEXT</code> state. So far so good and awesome if you&rsquo;re just using Emacs.</p>
<p>If you&rsquo;re out and about with your iPhone (or Orgzly, or whatever) and do not have a full Emacs environment, any state changes to a todo item won&rsquo;t have org-edna there to monitor and make the needed state changes for the next item.</p>
<p>Today, for instance, I am going to be out and about running a few errands that include picking some things up that I need to complete a few projects. I have a custom view set up in BeOrg to show me my <code>@errands</code> items in <code>NEXT</code> state. When I stop by the motorcycle shop to pick up a battery for my Grom, I&rsquo;ll want to tick that errand off as <code>DONE</code>. Because org-edna isn&rsquo;t there, the next item in the &ldquo;Get the Grom ready for summer&rdquo; project won&rsquo;t flip into a <code>NEXT</code> state, and org-gtd&rsquo;s handy &ldquo;next actions&rdquo; agenda list will lose track of the project (unless I explicitly check for stuck projects &ndash; projects with no item in a <code>NEXT</code> state.)</p>
<p><a href="https://appsonthemove.freshdesk.com/support/discussions/topics/14000019608?page=1">David Masterson on the BeOrg user forum</a> was grappling with the same problem and suggested a pretty good idea: Adding a transitional TODO state to BeOrg that you&rsquo;d then manually flip to <code>DONE</code> once sitting in front of Emacs on a real computer. That&rsquo;d then trigger org-edna and your list automation would be back on track. He proposed <code>PRE-DONE</code>, I just went with <code>BEDONE</code>:</p>






<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-emacs-lisp" data-lang="emacs-lisp"><span class="line"><span class="cl"><span class="p">(</span><span class="nb">defun</span> <span class="nv">mph/org-change-bedone-to-done</span> <span class="p">()</span>
</span></span><span class="line"><span class="cl">  <span class="s">&#34;Change all &#39;BEDONE&#39; states to &#39;DONE&#39; in current buffer.&#34;</span>
</span></span><span class="line"><span class="cl">  <span class="p">(</span><span class="nb">interactive</span><span class="p">)</span>
</span></span><span class="line"><span class="cl">  <span class="p">(</span><span class="nb">save-excursion</span>
</span></span><span class="line"><span class="cl">    <span class="p">(</span><span class="nf">goto-char</span> <span class="p">(</span><span class="nf">point-min</span><span class="p">))</span>
</span></span><span class="line"><span class="cl">    <span class="p">(</span><span class="nb">while</span> <span class="p">(</span><span class="nf">re-search-forward</span> <span class="nv">org-heading-regexp</span> <span class="no">nil</span> <span class="no">t</span><span class="p">)</span>
</span></span><span class="line"><span class="cl">      <span class="p">(</span><span class="nb">when</span> <span class="p">(</span><span class="nv">string=</span> <span class="p">(</span><span class="nv">org-get-todo-state</span><span class="p">)</span> <span class="s">&#34;BEDONE&#34;</span><span class="p">)</span>
</span></span><span class="line"><span class="cl">        <span class="p">(</span><span class="nv">org-todo</span> <span class="s">&#34;DONE&#34;</span><span class="p">)))))</span></span></span></code></pre></div>
<p>Then you&rsquo;d just want to automate <em>that</em>:</p>






<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-emacs-lisp" data-lang="emacs-lisp"><span class="line"><span class="cl"><span class="p">(</span><span class="nv">add-hook</span> <span class="ss">&#39;org-mode-hook</span> <span class="ss">&#39;mph/org-change-bedone-to-done</span><span class="p">)</span></span></span></code></pre></div>
<p>The two additional bits of setup: Adding &ldquo;BEDONE&rdquo; to BeOrg&rsquo;s list of todo states, and making sure it is also in the TODO state list in  your Emacs config, or in the file you&rsquo;re going to operate on. If you just try to use &ldquo;BEDONE&rdquo; instead of &ldquo;DONE&rdquo; without blessing it as an actual TODO state, the function will treat it like arbitrary text and ignore it.</p>
<p>My Grom example is pretty simplistic: I&rsquo;m not going to forget I am trying to get the Grom ready for summer, and will eventually go looking for the rest of the project if I accidentally move it into a stuck, next-actionless state.  But the whole point of org-gtd &ndash; GTD generally &ndash; is that you want to remove as much &ldquo;holding stuff in your head&rdquo; as possible.</p>
<h2 id="the-limits-of-hyper-automated-plaintext-primtivism">The limits of hyper-automated plaintext primtivism</h2>
<p>For the record, yes, this is pushing things. All sorts of things. The limits of hyper-automated plaintext primitivism. The willful naivete of GTD as a method. My own laziness, because the other option is to just write this stuff down and stick it in my pocket on the way out the door, or to not use BeOrg interactively if I&rsquo;m going to have a bunch of desktop-only automation.</p>
<p>The only real defense I have right now is, &ldquo;it&rsquo;s fun.&rdquo;</p>
<p>The only way to keep having this kind of fun will eventually be to either become a primitivist hyper-automation plaintext fetishism influencer with no need to do things like &ldquo;direct corporate IT operations&rdquo; or &ldquo;lead product engineering groups;&rdquo; or to crowd out other things in my life that matter much, much more than relieving myself of the drudgery of manually changing TODO states in a plaintext file.</p>
<p>A friend asked, &ldquo;are you ready to go back?&rdquo;</p>
<p>Yeah &hellip; seven months in, three of which were very deliberate rest, the rest of which have involved a state of relaxed calm but the stochastic cadence of screenings, interviews, and panels &hellip; I am ready: Rested, as clear on my purpose in the workplace as I have been in a long time, and as clear on what I am getting for my time as I have ever been. Uncle Tupelo for the rest.</p>
<div style="text-align:center;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/wQ9TxwlRoEU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
]]></content:encoded>
    </item>
    <item>
      <title>Daily Notes for 2023-05-17</title>
      <link>https://mike.puddingtime.org/posts/2023-05-17-daily-notes/</link>
      <pubDate>Wed, 17 May 2023 00:00:00 +0000</pubDate><author>mike@puddingtime.org (mike)</author>
      <guid>https://mike.puddingtime.org/posts/2023-05-17-daily-notes/</guid>
      <description>MailMate and org-mode bundle, more org-gtd, the dysfunctional orbit of Windows and Linux UX, my weird Electra Townie.</description>
      <content:encoded><![CDATA[<h2 id="org-mode-and-mailmate">org-mode and MailMate</h2>
<p>There&rsquo;s an <a href="https://github.com/mailmate/org-mode.mmbundle">org-mode bundle</a> for <a href="https://freron.com">MailMate</a> that works pretty well: You invoke it, it drops an org-mode todo in a given file using the subject for the heading and a link to the MailMate message.</p>
<p>I added a bunch of messages with similar subjects and found it sort of hard to know which was which without opening them, so I made a small patch to the bundle that adds the name of the sender to the org heading. While I was in there, I made it a little easier to find the hardcoded file target and added it to the README instructions.</p>
<p><a href="https://github.com/pdxmph/org-mode.mmbundle.git">Here&rsquo;s the fork</a>, with all credit to <a href="https://xam.dk">Max Andersen</a>, who wrote the original.</p>
<p>(<a href="/posts/2023-04-25-daily-notes/#mail-restlessness-alights-on-mailmate">MailMate previously</a>. I ended up buying a license. I could do much of what I do with it with plain old macOS Mail.app, but MailMate is much easier to tune and ends up feeling more personalized.)</p>
<h2 id="more-org-gtd">more org-gtd</h2>
<p>I mentioned being <a href="/posts/2023-05-16-daily-notes/#liminal-state">not so happy about my liminal state.</a> It was good to get org-gtd up and running because I was able to quit fussing with <em>how</em> to get everything out of my brain and just concentrate on getting it out of my brain. Therapeutic, even. It didn&rsquo;t take long to start looking at a little of the other core GTD stuff, adding contexts and &ldquo;Area of Focus&rdquo; to all the stuff I got in there. org-gtd has some good agenda views that incorporate areas and contexts.</p>
<p>So, you know, it took a day or two to tour the options and figure things out for the next while and it&rsquo;s just &hellip; good to be using the tool, not thinking about the tool. Which reminds me &hellip;</p>
<h2 id="the-dysfunctional-embrace-of-linux-and-windows">The dysfunctional embrace of Linux and Windows</h2>
<p><a href="https://mas.to/@spacewizard/110379691363071031">My friend Ed reminded me a little</a> about tool fixation with this pretty interesting video about the ways Windows&rsquo; bad UX infects Linux desktops:</p>
<div style="text-align:center;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/GkxAp2Gh7-E" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<h2 id="my-weird-electra-townie">My weird Electra Townie</h2>
<p>I have an e-bike and love it for anything further than a couple of miles. Earlyish in lockdown I realized I had more time to get around the neighborhood during the day and went out looking for an acoustic bike. I was hoping for something sort of easygoing &ndash; upright ride, plush, didn&rsquo;t need to be fast. In retrospect, what I was really looking for was some kind of Dutch bike.</p>
<p>Supply chain hell and demand made that tough, but my local Bike Gallery had a sort of weird, niche bike on the floor: An Electra Townie, but more tricked out than they usually are, and on super steep discount. It has front and rear racks, a dynamo hub, disc brakes, and it&rsquo;s a 27-speed. It&rsquo;s also sort of tall for a Townie. I just went to <a href="https://electra.trekbikes.com/us/en_US/bikes/electra-bikes/townie/c/EB300/">the Electra site</a> to make sure I haven&rsquo;t completely misunderstood what&rsquo;s &ldquo;normal&rdquo; for a Townie. This thing is not normal, and I got it for less than their current cheapest model. I&rsquo;m assuming it was an experiment in making a &ldquo;pro&rdquo; Townie of some kind that failed, so maybe they just dumped existing stock and got back to the simpler baseline.</p>
<p>I love it.</p>
<p>I test-rode a Townie a very long time ago &hellip; about the time all the bike manufacturers were in some sort of &ldquo;nobody bikes anymore&rdquo; crisis and were coming out with things like the Trek Lime with automatic shifters and relaxed geometries that wouldn&rsquo;t &ldquo;intimidate&rdquo; people. Because I wanted something that could do a nine-mile commute, the Townies and Limes didn&rsquo;t work for me: The forward-pedaling geometry made it hard to stand up on a hill, and they were geared in a way that made them feel like renting a U-Haul with a throttle governor.</p>
<p>This bike still has the forward-pedaling geometry and the relaxed, swept back handle bars. To get it to fit correctly I did have to move the seat forward more than I have on other bikes, so it seems like a bike that would stop being a good fit for anyone under 5'9&quot; or so, but could accommodate someone around 6'2&quot; or 3. In fact, Ben rode it comfortably and he was easily 6'1&quot; or 6'2&quot; at the time. Combined with the big seat and the inability to really lean forward and bear down, it&rsquo;s content to live in the middle gears and just sort of roll along.</p>
<p>The built-in lights are probably best used to look for potholes at night, and you should have supplements for visibility. The front rack isn&rsquo;t huge, but comfortably carries a box of Trader Joe wine. The rear rack is a little weird: It doesn&rsquo;t seem to be compatible with any of the assorted fitment standards, including the Townie basket we got for Al&rsquo;s Trek e-bike. But it works fine with an Ortlieb or Banjo Brothers panniers, and there&rsquo;s always the milk crate treatment.</p>
<p>Oddities and almost-but-not-quite features aside, the thing I love about it is how upright and comfortable the ride is, and how smoothly it rolls on its largish wheels. I have taken it all the way downtown via both the Springwater and Clinton St. (8 and 6.5 miles, respectively) and it has been comfortable. You just can&rsquo;t try to put too much through the drive train or crank up any hills. You don&rsquo;t really corner with it: Turns are more like a kind of gliding swoop motion.</p>
<p>So it <em>feels</em> to me more or less like what I imagined the Dutch bike I wanted would feel like. Probably less efficient and more wasted power, but upright and easygoing. When I go around the neighborhood, up to Foster, over to Woodstock, or down the Springwater, it feels more like a sightseeing tour than a commute.</p>
<p>Anyhow, I&rsquo;ve had it out for the first time in a little while over the past week and was reminded how much I enjoy it.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Daily Notes for 2023-05-16</title>
      <link>https://mike.puddingtime.org/posts/2023-05-16-daily-notes/</link>
      <pubDate>Tue, 16 May 2023 00:00:00 +0000</pubDate><author>mike@puddingtime.org (mike)</author>
      <guid>https://mike.puddingtime.org/posts/2023-05-16-daily-notes/</guid>
      <description>org-gtd, liminal state, The Fugitive and class politics, homeless sweeps vibe shift.</description>
      <content:encoded><![CDATA[<h2 id="org-gtd-3">org-gtd 3</h2>
<p>So, I gave Things a look, <a href="/posts/2023-05-12-daily-notes/#my-things-link-to-org-stuff">as threatened</a>, and it just didn&rsquo;t work for me. I wanted it to, but I really, really like the intermingling of text and action I get in org-mode. It felt stilted and weird to have actions out on a special action island, and I love the integration between org-mode, magit, and projects you get &ldquo;batteries included&rdquo; in Doom: <code>SPC X p t</code> and you add a todo linked to the current point in the project document you&rsquo;re in, <code>SPC p t</code> and you get a list of all the todos in your current project.</p>
<p>So the next thing to do was try to figure out what wasn&rsquo;t working for me with a relatively unstructured set of todos in org. The sense of tradeoffs between a purpose-built GUI and a text interface often hangs on what you can &ldquo;just do&rdquo; with a GUI and a limited vocabulary of keyboard commands, and what you have to just type out by hand in a text interface. The thing that had me looking at Things to begin with was the sense that I had some projects/tasks of moderate complexity that were hard to structure in a way that I could completely document the work without making my org-mode agendas cluttered and noisy.</p>
<p><a href="https://fosstodon.org/@nickanderson/110356805230294205#.">Nick Anderson suggested org-edna</a> as a way to add sequencing and dependencies, but it felt like more than I wanted to get into. Using it &ldquo;naked&rdquo; is more typing. Wrapping it in automation makes some sense, but the time investment felt foreboding. And the more I thought about it, the more I realized that I don&rsquo;t want to orchestrate a bunch of things, I just want to have a narrow window into my list.</p>
<p>So I went down the rabbit hole of understanding how people do GTD in org-mode.</p>
<p>I am on the record as a GTD skeptic, less because of the worldview itself and more because of the culture that surrounds it. But I appreciate a few things about it:</p>
<ol>
<li>Having a trusted system.</li>
<li>Knowing where your inbox is.</li>
<li>Always knowing what&rsquo;s <em>next</em>, not feeling like you have to always know <em>everything</em>.</li>
</ol>
<p>Items 1 and 2 are easy enough to solve for. I have a mobile inbox with beorg, and I have a desktop inbox with my org-mode config and an <code>inbox.org</code> file. Close enough.</p>
<p>Item 3 was what I wanted some help with: I was hoping to find an agenda recipe that would limit me to seeing projects and <em>only</em> their next actions.  Because of the way people accrete functionality in org-mode, it got discouraging fast. It&rsquo;s the classic conundrum: You want to get all your stuff organized, but first you must architect a solution involving org-mode and gobs of lisp and three other modules, then cobble a UI around it if you want to work efficiently.</p>
<p>But, I also came across <a href="https://github.com/Trevoke/org-gtd.el">org-gtd</a>, which just hit version 3, and is a batteries included solution to doing GTD with org-mode, including a nice, constrained view of your next actions along with some &ldquo;use it if you want, I&rsquo;m not your mom&rdquo; extra stuff from the GTD paradigm.</p>
<p>Some stuff I like about it:</p>
<ol>
<li>Efficient capture</li>
<li>The ability to turn preexisting items in your org universe into org-gtd items</li>
<li>Tame agenda views of next actions</li>
<li>Peaceful coexistence with the rest of your org-mode setup</li>
</ol>
<p>I did have a few challenges getting it working that seemed to come down to some weirdness in my <code>custom.el</code> file and a bad interaction with encrypted <code>org-journal</code> files. Once I bisected and cleared out the customizations and let them rebuild, it worked smoothly. It leverages org-edna without making you <em>deal</em> with org-edna.</p>
<p>It does the basics well enough that I&rsquo;m interested in exploring some of the deeper GTD cuts with it.</p>
<h2 id="liminal-state">Liminal state</h2>
<p>But the other thing going on right now is that I am in another liminal state. It ought to resolve pretty quickly, but it&rsquo;s the difference between &ldquo;might have two quiet weeks ahead&rdquo; or &ldquo;might have five quiet weeks ahead,&rdquo; and also &ldquo;have you all seen what the hell is going on out there right now? omg the thought of sitting on ice for five weeks and hoping harsh macroeconomic realities don&rsquo;t knock me to the bottom of the hill again &hellip;&rdquo;</p>
<p>To the extent I am well resourced, have a plan, and have built in a lot of room to tolerate disruption, I&rsquo;m fine.  But I&rsquo;m also incredibly well rested, ready to get moving into the next phase, and am having a wee struggle just being in the moment when I am not sure how much moment I have to be in, if that makes any sense.</p>
<p>I just went through and averaged the number of years I&rsquo;ve spent at every job since I was 22. 5.33 years. When I include just the &ldquo;no, now I&rsquo;m really engaged in something called a profession&rdquo; run of the past 20 years, it&rsquo;s closer to eight years. The great thing about averaging eight years between changing jobs is that you only had to change jobs every eight years. The terrible thing about it is that you forget what it&rsquo;s like to be in that liminal state between jobs.</p>
<h2 id="the-fugitive-and-class-politics">The Fugitive and class politics</h2>
<p>I rewatched <em>The Fugitive</em> last night after listening to its <a href="https://www.patreon.com/unclearpod">Unclear and Present Danger</a> installment. They had some interesting insights into its class and racial politics, its &rsquo;90s liberal fascination with competence porn, and its sheer story-telling efficiency.</p>
<p>They noticed something about it that I remembered noticing when I rewatched <em>Rocky</em>, which was the gradual disappearance of working class life from movies.</p>
<p>Richard Kimball has to briefly set aside his middle class identity, and we get a little glimpse of his life masquerading as a janitor. Harrison Ford has a way of acting like someone pretending to be someone harmless that is sort of endearing and also took on some extra weight in <em>The Fugitive</em>. <em>We</em> know he&rsquo;s a high-level vascular surgeon, so when he&rsquo;s dressed in a janitor uniform and a doctor sort of bosses him around and he gets that &ldquo;Harrison Ford playing someone who is acting deferential even though they&rsquo;re really this high-level, super-competent person,&rdquo; it sort of lands.</p>
<p>Now, the hosts of Unclear and Present Danger want to call this out as &ldquo;liberal class consciousness,&rdquo; and I&rsquo;m not sure quite what I make of <em>that</em>. As a time capsule? Sure, I&rsquo;d argue liberals in the &rsquo;90s were more class conscious, because the Democratic Party was still struggling with its working class identity. But I also think &ldquo;its working class identity&rdquo; lost that struggle. Happy to discuss, but:</p>
<ul>
<li><em><a href="https://www.hachettebookgroup.com/titles/barbara-ehrenreich/fear-of-falling/9781455543748/">Fear of Falling</a></em>, Barbara Ehrenreich, 1989</li>
<li><em><a href="https://en.wikipedia.org/wiki/Listen,_Liberal">Listen, Liberal!</a></em>, Thomas Frank, 2016</li>
<li><em><a href="https://global.oup.com/academic/product/the-rise-and-fall-of-the-neoliberal-order-9780197519646?cc=us&amp;lang=en&amp;">The Rise and Fall of the Neoliberal Order</a></em>, Gary Gerstle, 2022</li>
<li>&ldquo;<a href="https://jacobin.com/2022/07/neoliberal-order-new-deal-recession-sanders-trump-new-left">The Neoliberal Order Is Crumbling. It’s Up to Us What Comes Next</a>,&rdquo; Interview with Gary Gerstle, Jacobin, 2022.</li>
<li>&ldquo;<a href="https://www.youtube.com/watch?v=XnvpdCPeIJU">When Will Neoliberalism Collapse? w/Gary Gerstle</a>,&rdquo; Jen Pan, Jacobin on YouTube, 2022</li>
</ul>
<p>&ldquo;Vote blue no matter who&rdquo; isn&rsquo;t the slogan of a working class party.</p>
<h2 id="sweeps-vibe-shift">Sweeps vibe shift</h2>
<p>We live next to a park, so I suspect we have a heightened awareness of whatever is going on with the city and its woeful response to homelessness. Combined with Al actually working in that subject area and frequently offering in our conversations, &ldquo;oh yeah, the new county chair has this initiative, so the Joint Office is in panic mode trying to make it happen,&rdquo; we&rsquo;ve got higher-than-average awareness of the surrounding policy.</p>
<p>In the 14 years we&rsquo;ve lived in Lents, homeless camping has gone from something that happened at the periphery of the neighborhood here and there to <a href="/posts/2016-04-17-please-be-considerate-of-my-neighbors/">very large encampments on the Springwater</a> that provoked fact-finding missions from state politicians, to just coming to accept that the block we live on will always be host to at least a busted up RV, trailer, or van; or maybe three; or maybe six or seven.</p>
<p>Something we&rsquo;ve gotten used to is that nothing ever really happens. Now and then PBOT comes through and slaps green stickers on cars. It doesn&rsquo;t seem targeted, to the extent they&rsquo;ll put them on vehicles that have been there for literal months, and they&rsquo;ll do it to a car that parked on the street this morning. I don&rsquo;t know much about city policy, so my guess, having once had an old Volvo I didn&rsquo;t drive much get stickered, is that it&rsquo;s more of a question than an assertion.</p>
<p>The most police activity we ever saw was when an RV caught on fire, killing the occupant.  The police came around the next day and watched while people broke into the dead man&rsquo;s car carted his things away, then hotwired the car and drove it off.</p>
<p>&ldquo;Well he&rsquo;s dead, so technically nobody owns it,&rdquo; said one, with his thumbs hooked in his tactical vest.</p>
<p>&ldquo;Well, one of his friends went to tell his daughter, so I think she&rsquo;d disagree.&rdquo;</p>
<p>&ldquo;Huh.&rdquo;</p>
<p>Just, &ldquo;huh,&rdquo; then turning back to watch the vultures.</p>
<p>But something seems to have changed.</p>
<p>When the city <a href="/posts/2023-05-04-daily-notes/#in-the-neighborhood">swept the squatters and RV encampment down the trail</a> not too long ago, it displaced a few RV owners who found their way onto our block and sort of kicked off the spring homeless camping season. We did our usual thing: Took over some food and water, said &ldquo;hi,&rdquo; and tried to learn what we could about them and their lives. We observe a &ldquo;good neighbors&rdquo; mentality about the whole thing, meaning it would take more than has ever happened to get us to call anyone in. A lot of our neighbors are less charitable about the whole thing. We got invited to one neighborhood meeting to discuss a more active period a few summers ago, and never got invited again after we said we weren&rsquo;t interested in low-grade harassment tactics.</p>
<p>Anyhow, this crew arrived, we made an attempt to make contact, we observed that these folks were less interested in contact, and we settled in for another period of having people encamped on the street. It has always, during times of heightened activity, meant fights at three in the morning, picking trash out of the yard, finding food wrappers and cans next to the outdoor outlets, getting the occasional report from one of the campers that someone else prowled our car or windows, and sometimes three or four old gas generators running 24/7 until we walk over and ask for a break from the noise.</p>
<p>The change this time is that PBOT showed up, did its sticker run, and someone posted the area for encampments. Park rangers showed up and explained that it wasn&rsquo;t okay to put bags of trash along the street in the park and warned that the unleashed Pit Bull needed to be restrained. A cleanup crew showed up and put everything unattended in a rented truck and drove off. Police have been doing slow-drives down the block eyeballing the folks who stuck around after the initial hazing. A trailer that got towed into place and left got a sticker this morning after a mere 48 hours. The average up to now was closer to months.</p>
<p>It&rsquo;s a change. I&rsquo;ve never seen any part of our corner of Lents get this kind of concentrated attention. I wonder what has changed.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
