<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: jez</title><link>https://news.ycombinator.com/user?id=jez</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 01 Jun 2026 05:12:49 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jez" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[YIMBY data projects, between naps]]></title><description><![CDATA[
<p>Article URL: <a href="https://maxmautner.com/2026/05/17/three-yimby-projects.html">https://maxmautner.com/2026/05/17/three-yimby-projects.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48330358">https://news.ycombinator.com/item?id=48330358</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 29 May 2026 22:49:47 +0000</pubDate><link>https://maxmautner.com/2026/05/17/three-yimby-projects.html</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=48330358</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48330358</guid></item><item><title><![CDATA[Lessons from 6 Years of Local Advocacy]]></title><description><![CDATA[
<p>Article URL: <a href="https://maxmautner.com/2026/04/30/what-i-have-learned.html">https://maxmautner.com/2026/04/30/what-i-have-learned.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48051884">https://news.ycombinator.com/item?id=48051884</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 07 May 2026 17:07:11 +0000</pubDate><link>https://maxmautner.com/2026/04/30/what-i-have-learned.html</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=48051884</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48051884</guid></item><item><title><![CDATA[New comment by jez in "Commenting and approving pull requests"]]></title><description><![CDATA[
<p>> Additionally, some repos can be configured to automatically merge PRs when all requirements are met, one of which might be your approval.<p>If anyone at GitHub is reading this, I’d love a fourth checkbox in the “leave a review” modal that is “Approve but disable auto merge” (alongside Comment/Approve/Request changes)! Even just surfacing “this PR has auto merge enabled” near the Approve button would be great.</p>
]]></description><pubDate>Sat, 25 Apr 2026 15:11:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47902091</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47902091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47902091</guid></item><item><title><![CDATA[New comment by jez in "MacBook Neo and how the iPad should be"]]></title><description><![CDATA[
<p>I want the same mode, but on iOS! Imagine carrying nothing but the phone in your pocket, sitting down at your desk, plugging your phone into the monitor, which has your keyboard and mouse docked, and you have a full development environment.</p>
]]></description><pubDate>Sat, 25 Apr 2026 07:24:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47899453</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47899453</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47899453</guid></item><item><title><![CDATA[The Declining Driver's License: Good, Bad, or Both?]]></title><description><![CDATA[
<p>Article URL: <a href="https://maxmautner.com/2026/04/21/teen-drivers-license-decline.html">https://maxmautner.com/2026/04/21/teen-drivers-license-decline.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47884366">https://news.ycombinator.com/item?id=47884366</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 24 Apr 2026 01:17:58 +0000</pubDate><link>https://maxmautner.com/2026/04/21/teen-drivers-license-decline.html</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47884366</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47884366</guid></item><item><title><![CDATA[New comment by jez in "Show HN: MDV – a Markdown superset for docs, dashboards, and slides with data"]]></title><description><![CDATA[
<p>Even in Vim, the editing experience falls over when making markdown tables that have non-trivial content in their cells (multiple paragraphs, a code block, etc.). I recently learned that reStructuredText supports something called "list tables":<p><a href="https://docutils.sourceforge.io/docs/ref/rst/directives.html#list-table" rel="nofollow">https://docutils.sourceforge.io/docs/ref/rst/directives.html...</a><p>Where a table is specified as a depth-2 list and then post processed into a table. Lists support the full range of block elements already: you can have multiple paragraphs, code blocks, more lists, etc. inside a list item.<p>This syntax inspired the author of Markdoc[1] (who came from an rST background) to support tables using `<hr>`-separated lists[2] instead of nested lists (to provide more visual separation between rows).<p>I have found various implementations of list table filters for Pandoc markdown[3][4], but have never gotten around to using any of them (and I've tossed around ideas of implementing my own).<p>[1] <a href="https://markdoc.dev" rel="nofollow">https://markdoc.dev</a><p>[2] <a href="https://markdoc.dev/docs/tags#table" rel="nofollow">https://markdoc.dev/docs/tags#table</a><p>[3] <a href="https://github.com/pandoc-ext/list-table" rel="nofollow">https://github.com/pandoc-ext/list-table</a><p>[4] <a href="https://github.com/bpj/pandoc-list-table" rel="nofollow">https://github.com/bpj/pandoc-list-table</a></p>
]]></description><pubDate>Sat, 18 Apr 2026 20:16:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47819177</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47819177</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47819177</guid></item><item><title><![CDATA[New comment by jez in "DaVinci Resolve – Photo"]]></title><description><![CDATA[
<p>What is your Linux photo editing software of choice?</p>
]]></description><pubDate>Tue, 14 Apr 2026 04:25:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47761231</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47761231</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47761231</guid></item><item><title><![CDATA[Fast CI for a 50M-line Ruby monorepo]]></title><description><![CDATA[
<p>Article URL: <a href="https://stripe.dev/blog/selective-test-execution-at-stripe-fast-ci-for-a-50m-line-ruby-monorepo">https://stripe.dev/blog/selective-test-execution-at-stripe-fast-ci-for-a-50m-line-ruby-monorepo</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47708153">https://news.ycombinator.com/item?id=47708153</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 09 Apr 2026 18:59:51 +0000</pubDate><link>https://stripe.dev/blog/selective-test-execution-at-stripe-fast-ci-for-a-50m-line-ruby-monorepo</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47708153</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47708153</guid></item><item><title><![CDATA[New comment by jez in "Making Firefox's right-click not suck with about:config"]]></title><description><![CDATA[
<p>Still the only thing I miss about the Firefox right-click context menu coming from Chrome is that Firefox doesn't have a "Look up '<selection>'" in the menu on macOS, to look up in the macOS dictionary, for looking up words I don't know.<p><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1116391" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=1116391</a></p>
]]></description><pubDate>Wed, 04 Mar 2026 20:39:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47253463</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47253463</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47253463</guid></item><item><title><![CDATA[The Summer Slide, part 3: The tax code we had]]></title><description><![CDATA[
<p>Article URL: <a href="https://substack.com/@michaelwgreen/p-189483869">https://substack.com/@michaelwgreen/p-189483869</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47213185">https://news.ycombinator.com/item?id=47213185</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 02 Mar 2026 02:32:25 +0000</pubDate><link>https://substack.com/@michaelwgreen/p-189483869</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47213185</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47213185</guid></item><item><title><![CDATA[FOMC Insight Engine: semantic search over Fed archives]]></title><description><![CDATA[
<p>Article URL: <a href="https://causalityineconomics.com/fomc_archive">https://causalityineconomics.com/fomc_archive</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47212719">https://news.ycombinator.com/item?id=47212719</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 02 Mar 2026 01:18:57 +0000</pubDate><link>https://causalityineconomics.com/fomc_archive</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47212719</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47212719</guid></item><item><title><![CDATA[New comment by jez in "Python Type Checker Comparison: Empty Container Inference"]]></title><description><![CDATA[
<p>A more complicated version of this problem exists in TypeScript and Ruby, where there are only arrays. Python’s case is considerably simpler by also having tuples, whose length is fixed at the time of assignment.<p>In Python, `x = []` should always have a `list[…]` type inferred. In TypeScript and Ruby, the inferred type needs to account for the fact that `x` is valid to pass to a function which takes the empty tuple (empty array literal type) as well as a function that takes an array. So the Python strategy #1 in the article of defaulting to `list[Any]` does not work because it rejects passing `[]` to a function declared as taking `[]`.</p>
]]></description><pubDate>Sun, 01 Mar 2026 18:54:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47209541</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47209541</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47209541</guid></item><item><title><![CDATA[New comment by jez in "What does " 2>&1 " mean?"]]></title><description><![CDATA[
<p>I have used this in the past when building shell scripts and Makefiles to orchestrate an existing build system:<p><a href="https://github.com/jez/symbol/blob/master/scaffold/symbol#L195-L204" rel="nofollow">https://github.com/jez/symbol/blob/master/scaffold/symbol#L1...</a><p>The existing build system I did not have control over, and would produce output on stdout/stderr. I wanted my build scripts to be able to only show the output from the build system if building failed (and there might have been multiple build system invocations leading to that failure). I also wanted the second level to be able to log progress messages that were shown to the user immediately on stdout.<p><pre><code>    Level 1: create fd=3, capture fd 1/2 (done in one place at the top-level)
    Level 2: log progress messages to fd=3 so the user knows what's happening
    Level 3: original build system, will log to fd 1/2, but will be captured
</code></pre>
It was janky and it's not a project I have a need for anymore, but it was technically a real world use case.</p>
]]></description><pubDate>Fri, 27 Feb 2026 01:37:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47175188</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47175188</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47175188</guid></item><item><title><![CDATA[New comment by jez in "What does " 2>&1 " mean?"]]></title><description><![CDATA[
<p>Another fun consequence of this is that you can initialize otherwise-unset file descriptors this way:<p><pre><code>    $ cat foo.sh
    #!/usr/bin/env bash

    >&1 echo "will print on stdout"
    >&2 echo "will print on stderr"
    >&3 echo "will print on fd 3"

    $ ./foo.sh 3>&1 1>/dev/null 2>/dev/null
    will print on fd 3
</code></pre>
It's a trick you can use if you've got a super chatty script or set of scripts, you want to silence or slurp up all of their output, but you still want to allow some mechanism for printing directly to the terminal.<p>The danger is that if you don't open it before running the script, you'll get an error:<p><pre><code>    $ ./foo.sh
    will print on stdout
    will print on stderr
    ./foo.sh: line 5: 3: Bad file descriptor</code></pre></p>
]]></description><pubDate>Fri, 27 Feb 2026 00:00:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47174198</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47174198</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47174198</guid></item><item><title><![CDATA[New comment by jez in "Stripe valued at $159B, 2025 annual letter"]]></title><description><![CDATA[
<p>For comparison, Visa's stated FY 2025 (ended Sep 30, 2025) payments volume was $14.2T.<p>rough math, but:<p>$14.2T / $1.9T * 1.6% = 12% global GDP</p>
]]></description><pubDate>Tue, 24 Feb 2026 18:24:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=47140671</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47140671</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47140671</guid></item><item><title><![CDATA[New comment by jez in "Stripe valued at $159B, 2025 annual letter"]]></title><description><![CDATA[
<p>Paypal TPV YoY growth for 2025 was 7%[1].<p>Stripe cites 34% growth for the same period and metric.<p>[1]: <a href="https://s205.q4cdn.com/875401827/files/doc_financials/2025/q4/PYPL-4Q-25-Earnings-Presentation.pdf#page=9" rel="nofollow">https://s205.q4cdn.com/875401827/files/doc_financials/2025/q...</a></p>
]]></description><pubDate>Tue, 24 Feb 2026 18:09:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47140444</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47140444</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47140444</guid></item><item><title><![CDATA[New comment by jez in "Stripe valued at $159B, 2025 annual letter"]]></title><description><![CDATA[
<p>The tender offer announced in the article is open to former employees as well, so they personally profit regardless of Stripe being public (unless the claim is that by being public the valuation would be materially higher than the stated valuation for this offer).</p>
]]></description><pubDate>Tue, 24 Feb 2026 17:00:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47139461</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47139461</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47139461</guid></item><item><title><![CDATA[New comment by jez in "We installed a single turnstile to feel secure"]]></title><description><![CDATA[
<p>As others have mentioned, it comes down to the threat model, but sometimes the threat model itself is uncomfortable to talk about.<p>It’s sad to think about, but in my recollection a lot of intra-building badge readers went up in response to the 2018 active shooter situation at the YouTube HQ[1]. In cases like this, the threat model is “confine a hostile person to a specific part of the building once they’ve gotten in while law enforcement arrives,” less than preventing someone from coat tailing their way into the building at all.<p>[1] <a href="https://news.ycombinator.com/item?id=16748529">https://news.ycombinator.com/item?id=16748529</a></p>
]]></description><pubDate>Tue, 24 Feb 2026 16:49:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47139326</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47139326</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47139326</guid></item><item><title><![CDATA[Stripe valued at $159B, 2025 annual letter]]></title><description><![CDATA[
<p>Article URL: <a href="https://stripe.com/newsroom/news/stripe-2025-update">https://stripe.com/newsroom/news/stripe-2025-update</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47137711">https://news.ycombinator.com/item?id=47137711</a></p>
<p>Points: 238</p>
<p># Comments: 245</p>
]]></description><pubDate>Tue, 24 Feb 2026 14:37:52 +0000</pubDate><link>https://stripe.com/newsroom/news/stripe-2025-update</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47137711</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47137711</guid></item><item><title><![CDATA[New comment by jez in "Four Column ASCII (2017)"]]></title><description><![CDATA[
<p>I have a command called `ascii-4col.txt` in my personal `bin/` folder that prints this out:<p><a href="https://github.com/jez/bin/blob/master/ascii-4col.txt" rel="nofollow">https://github.com/jez/bin/blob/master/ascii-4col.txt</a><p>It's neat because it's the only command I have that uses `tail` for the shebang line.</p>
]]></description><pubDate>Tue, 17 Feb 2026 17:43:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47050409</link><dc:creator>jez</dc:creator><comments>https://news.ycombinator.com/item?id=47050409</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47050409</guid></item></channel></rss>