<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>The Cherkewski View – Notes</title>
    <description>The personal website of Lucas Cherkewski.</description>
    <link>https://lucascherkewski.com/</link>
    <atom:link href="https://lucascherkewski.com/feeds/notes.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Sun, 12 Apr 2026 14:41:47 -0400</pubDate>
    <lastBuildDate>Sun, 12 Apr 2026 14:41:47 -0400</lastBuildDate>
    <generator>Jekyll v3.8.3</generator>
	
    
      <item>
        <title>Note: May 11, 2024 at  9:57 am</title>
        <description>&lt;p&gt;Pondering adopting &lt;a href=&quot;https://readwise.io/read&quot;&gt;Reader&lt;/a&gt; as my “read and annotate the web” tool, &lt;a href=&quot;https://craigmod.com/roden/091/&quot;&gt;since learning of it via Craig Mod&lt;/a&gt;. As Craig puts it, Reader is “a fabulous long form reading, meta-data-editing, article-organizing platform”, and early toying around with it seems to merit the superlatives.&lt;/p&gt;

&lt;p&gt;To date, I’ve used &lt;a href=&quot;https://pinboard.in/&quot;&gt;Pinboard&lt;/a&gt; for this. I &lt;em&gt;love&lt;/em&gt; Pinboard’s web 1./2. whatever vibe—each entry has four plaintext fields into which you can put pretty much whatever you want. The rules for tagnames are something like “any UTF-8 character other than the space character”, since it denotes the split between multiple tags for an entry. I’ve used this to make tags into an extensive schema of my own, with, e.g., &lt;code class=&quot;highlighter-rouge&quot;&gt;by:&lt;/code&gt; or &lt;code class=&quot;highlighter-rouge&quot;&gt;via:&lt;/code&gt; prefixes, among other structures.&lt;/p&gt;

&lt;p&gt;I’ve been stretching Pinboard, though, with much of my reading now being email newsletters or RSS that I first encounter through a Feedbin/NetNewsWire setup, often on my phone, using the Pins app to send them to Pinboard. Reading so much on my phone, without clipboard management, means the copying / pasting is quite laborious, and I often enough skip noting something because of the effort inolved.&lt;/p&gt;

&lt;p&gt;Reader has a definite leg up in some ways, particularly as much of my annotation lately is really just highlighting, plus some occasional commentary or notes to self on my part. It does so in a rich way, and that richness enables a bunch of other features, like &lt;a href=&quot;https://readwise.io/&quot;&gt;Readwise’s spaced repetition resurfacing of annotated material&lt;/a&gt;. It also alooks and feels like a modern app, while Pinboard doesn’t.&lt;/p&gt;

&lt;p&gt;But it’s that sophistication that has me pause: limited though Pinboard can be, it’s also incredibly dependable; a solid, simple schema that I could easily replicate if needed. Fortunately, they both have extensive enough APIs that portability is at least theoretically possible. This could quickly spiral into yet more tech, of course: Craig points to the &lt;a href=&quot;https://github.com/readwiseio/obsidian-readwise&quot;&gt;Readwise Obsidian integration&lt;/a&gt;, yet another entire ecosystem of read/write/storage to consider. Anyhow—tech enough for one day.&lt;/p&gt;
</description>
        <pubDate>Sat, 11 May 2024 09:38:57 -0400</pubDate>
        <link>https://lucascherkewski.com/notes/1715434737/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1715434737/</guid>
      </item>
    
      <item>
        <title>Note: November 30, 2022 at  6:28 pm</title>
        <description>&lt;p&gt;In the federal Parliament and most provincial legislatures (though not, crucially, AB), the first bill is a “pro forma” one, asserting—wait for it—the legislature’s supremacy over the executive.&lt;/p&gt;

&lt;p&gt;Deep irony that Bill 1, a bill designed to give the executive near total discretion over the legislative function, should take that slot.&lt;/p&gt;

&lt;p&gt;Or, as the late Bruce Hicks pointed out in 2009, perhaps entirely fitting: &lt;a href=&quot;http://revparl.ca/english/issue.asp?param=196&amp;amp;art=1353&quot;&gt;http://revparl.ca/english/issue.asp?param=196&amp;amp;art=1353&lt;/a&gt; (page 18 in the print / PDF)&lt;/p&gt;
</description>
        <pubDate>Wed, 30 Nov 2022 18:16:28 -0500</pubDate>
        <link>https://lucascherkewski.com/notes/1669850188/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1669850188/</guid>
      </item>
    
      <item>
        <title>Note: November 21, 2022 at  6:07 pm</title>
        <description>&lt;h2 id=&quot;til-checking-out-a-pr-from-a-different-repo-locally&quot;&gt;TIL: Checking out a PR from a different repo locally&lt;/h2&gt;

&lt;p&gt;Somebody’s submitted a pull request on GitHub to your project. They didn’t have write access to your repo, so they forked it, then did their changes (either in the main or another branch).&lt;/p&gt;

&lt;p&gt;You want to check those changes out locally, maybe make a few edits, then merge to main on your repo. GitHub’s inline commands help if you want to merge the PR’s branch locally, but I always trip up on how to handle the “muck about and make some changes” scenario. Here’s how (replace &lt;code class=&quot;highlighter-rouge&quot;&gt;{placeholders}&lt;/code&gt; with proper values):&lt;/p&gt;

&lt;div class=&quot;code highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;# add the other repository as a remote (the URL to add should be at the bottom of the PR)
git remote add {contributing_username} git@github.com:{contributing_username}/{repository}.git

# get git a sitrep of the other repo
git fetch {contributing_username}

# create a new local branch, based on the branch from the PR
git checkout -b {contributing_username}-{branch} {contributing_username}/{branch}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Now you have a local branch that mirrors whatever’s in the contributing repository’s branch. Want to make some changes?&lt;/p&gt;

&lt;p&gt;If the contributor has enabled “Allow edits from maintainers” in their PR, you can &lt;code class=&quot;highlighter-rouge&quot;&gt;git push&lt;/code&gt; and update the PR branch directly (in the other person’s repo!). Then you can handle merging and closing the PR through GitHub’s UI. Here’s how to push to the right place:&lt;/p&gt;

&lt;div class=&quot;code highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;# make sure the other repo’s branch is set as upstream for your branch
git branch {contributing_username}-{branch} -u {contributing_username}/{branch}

# push commits in your current branch to {branch} from the PR
git push {contributing_username} HEAD:{branch}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Otherwise, you can make and commit any edits, merge to your main branch (ideally with a merge commit indicating you’re closing the PR #, use &lt;code class=&quot;highlighter-rouge&quot;&gt;git merge --no-ff&lt;/code&gt; to ensure there’s a merge commit), then push, updating your repo and automatically closing the PR in the process.&lt;/p&gt;

&lt;p&gt;With thanks to:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://stackoverflow.com/a/64321411&quot;&gt;Stack Overflow &lt;code class=&quot;highlighter-rouge&quot;&gt;exmaxx&lt;/code&gt;, answer to “pull remote branch without merge”&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://tighten.com/blog/adding-commits-to-a-pull-request/&quot;&gt;Jake Bathman, “Adding Commits to Someone Else’s Pull Request”&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Mon, 21 Nov 2022 18:56:07 -0500</pubDate>
        <link>https://lucascherkewski.com/notes/1669074967/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1669074967/</guid>
      </item>
    
      <item>
        <title>Note: November 19, 2022 at 12:08 pm</title>
        <description>&lt;p&gt;Oh snap, it worked! Mastodon posts will now be from my site’s notes section first (&lt;a href=&quot;https://lucascherkewski.com/notes/&quot;&gt;lucascherkewski.com/notes/&lt;/a&gt;), then syndicated out to Mastodon. (Replies, etc, maybe I’ll figure out one day.)&lt;/p&gt;

&lt;p&gt;Props to &lt;a href=&quot;https://mastodon.social/@paulrobertlloyd&quot;&gt;@paulrobertlloyd&lt;/a&gt; for &lt;a href=&quot;https://getindiekit.com/&quot;&gt;getindiekit.com&lt;/a&gt; Made this all a breeze.&lt;/p&gt;

&lt;p&gt;My setup notes available here: &lt;a href=&quot;https://github.com/lchski/indiekit.lucascherkewski.com/blob/main/README.md&quot;&gt;github.com/lchski/indiekit.lucascherkewski.com/blob/main/README.md&lt;/a&gt; Seems there might be double posting happening—to figure out later.&lt;/p&gt;

</description>
        <pubDate>Sat, 19 Nov 2022 12:46:08 -0500</pubDate>
        <link>https://lucascherkewski.com/notes/1668879996/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1668879996/</guid>
      </item>
    
      <item>
        <title>Note: November 19, 2022 at 12:08 pm</title>
        <description>&lt;p&gt;Writing this from the micro.blog app, hopefully syndicating to Mastodon via Indiekit. (Enough buzz for ya?)&lt;/p&gt;
</description>
        <pubDate>Sat, 19 Nov 2022 12:16:08 -0500</pubDate>
        <link>https://lucascherkewski.com/notes/1668878168/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1668878168/</guid>
      </item>
    
      <item>
        <title>Note: November 15, 2022 at  8:39 am</title>
        <description>&lt;p&gt;Testing out micropub posting from the micro.blog app. &lt;strong&gt;Cool.&lt;/strong&gt;&lt;/p&gt;
</description>
        <pubDate>Tue, 15 Nov 2022 08:47:39 -0500</pubDate>
        <link>https://lucascherkewski.com/notes/1668520059/</link>
        <guid isPermaLink="true">https://lucascherkewski.com/notes/1668520059/</guid>
      </item>
    
  </channel>
</rss>
