HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jez

no profile record

Submissions

YIMBY data projects, between naps

maxmautner.com
2 points·by jez·bulan lalu·0 comments

Lessons from 6 Years of Local Advocacy

maxmautner.com
2 points·by jez·2 bulan yang lalu·0 comments

The Declining Driver's License: Good, Bad, or Both?

maxmautner.com
7 points·by jez·3 bulan yang lalu·0 comments

Fast CI for a 50M-line Ruby monorepo

stripe.dev
4 points·by jez·3 bulan yang lalu·0 comments

The Summer Slide, part 3: The tax code we had

substack.com
1 points·by jez·4 bulan yang lalu·1 comments

FOMC Insight Engine: semantic search over Fed archives

causalityineconomics.com
2 points·by jez·4 bulan yang lalu·0 comments

Stripe valued at $159B, 2025 annual letter

stripe.com
238 points·by jez·5 bulan yang lalu·245 comments

The imminent risk of vibe coding

basta.substack.com
1 points·by jez·5 bulan yang lalu·0 comments

Fixing an 11th hour Street Fighter II GFX ROM bug [video]

youtube.com
2 points·by jez·6 bulan yang lalu·0 comments

Making beautiful PDF documents from HTML and CSS

css4.pub
5 points·by jez·6 bulan yang lalu·0 comments

Deprecation: Software Engineering at Google

abseil.io
4 points·by jez·7 bulan yang lalu·1 comments

Calm traffic needs more than calm driving [video]

youtube.com
2 points·by jez·9 bulan yang lalu·0 comments

Anthropic hires new CTO with focus on AI infrastructure

techcrunch.com
4 points·by jez·9 bulan yang lalu·1 comments

comments

jez
·3 bulan yang lalu·discuss
> Additionally, some repos can be configured to automatically merge PRs when all requirements are met, one of which might be your approval.

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.
jez
·3 bulan yang lalu·discuss
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.
jez
·3 bulan yang lalu·discuss
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":

https://docutils.sourceforge.io/docs/ref/rst/directives.html...

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.

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).

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).

[1] https://markdoc.dev

[2] https://markdoc.dev/docs/tags#table

[3] https://github.com/pandoc-ext/list-table

[4] https://github.com/bpj/pandoc-list-table
jez
·3 bulan yang lalu·discuss
What is your Linux photo editing software of choice?
jez
·4 bulan yang lalu·discuss
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.

https://bugzilla.mozilla.org/show_bug.cgi?id=1116391
jez
·4 bulan yang lalu·discuss
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.

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 `[]`.
jez
·4 bulan yang lalu·discuss
I have used this in the past when building shell scripts and Makefiles to orchestrate an existing build system:

https://github.com/jez/symbol/blob/master/scaffold/symbol#L1...

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.

    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
It was janky and it's not a project I have a need for anymore, but it was technically a real world use case.
jez
·4 bulan yang lalu·discuss
Another fun consequence of this is that you can initialize otherwise-unset file descriptors this way:

    $ 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
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.

The danger is that if you don't open it before running the script, you'll get an error:

    $ ./foo.sh
    will print on stdout
    will print on stderr
    ./foo.sh: line 5: 3: Bad file descriptor
jez
·5 bulan yang lalu·discuss
For comparison, Visa's stated FY 2025 (ended Sep 30, 2025) payments volume was $14.2T.

rough math, but:

$14.2T / $1.9T * 1.6% = 12% global GDP
jez
·5 bulan yang lalu·discuss
Paypal TPV YoY growth for 2025 was 7%[1].

Stripe cites 34% growth for the same period and metric.

[1]: https://s205.q4cdn.com/875401827/files/doc_financials/2025/q...
jez
·5 bulan yang lalu·discuss
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).
jez
·5 bulan yang lalu·discuss
As others have mentioned, it comes down to the threat model, but sometimes the threat model itself is uncomfortable to talk about.

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.

[1] https://news.ycombinator.com/item?id=16748529
jez
·5 bulan yang lalu·discuss
I have a command called `ascii-4col.txt` in my personal `bin/` folder that prints this out:

https://github.com/jez/bin/blob/master/ascii-4col.txt

It's neat because it's the only command I have that uses `tail` for the shebang line.
jez
·6 bulan yang lalu·discuss
On a US keyboard layout this is the same number of keys because { and } are Shift+[ and Shift+]
jez
·6 bulan yang lalu·discuss
Something I never understood about this: is the pipe necessary, or just to have another symbol contributing to the mayhem?

    :(){:&;:};:
This is the same number of characters but doesn’t use a pipe, and I was never able to figure out why it seems so universally to use a pipe.
jez
·6 bulan yang lalu·discuss
Far be it from me to get in the way of someone protesting megabank centralization, but...

I have to imagine that this bank relationship will be different from those previous acquisitions? I never interacted with Goldman Sachs for the duration I've had my Apple Card—the relationship is entirely with Apple and their iOS app. I don't imagine that to be much different when Chase is the issuer.
jez
·6 bulan yang lalu·discuss
Does that mean that this new partnership will be better because Chase is better at consumer banking than Goldman Sachs, or Chase negotiated a deal that will not cause them to lose a lot of money?

If it's the latter, does that mean that the card rewards for Apple Card will get worse?
jez
·6 bulan yang lalu·discuss
If you tap and hold a second thumb after you’ve tapped and held to bring up the moveable cursor, it switches to a selection range.
jez
·6 bulan yang lalu·discuss
Less can be configured with a ~/.lesskey file

I have a single line in my config[1] which binds s to back-scroll, so that d and s are right next to each other and I can quickly page up/down with one hand.

If you’re on macOS, you may not be able to use this unless you install less from Homebrew, or otherwise replace the default less.[2]

[1] https://github.com/jez/dotfiles/blob/master/lesskey#L2

[2] https://apple.stackexchange.com/questions/27269/is-less1-mis...
jez
·6 bulan yang lalu·discuss
What’s the approach to embedding fonts in standard ebooks’ epubs? Curious whether there’s a set of fonts that producers are allowed to embed in finished books, or whether there’s project consciously avoids embedding fonts, and if so why.

I tried to find a policy page on this via a standardebooks.org site search but nothing looked relevant.

I’m asking after realizing that some of my favorite books were books where the ebook had intentional font choices, for example different fonts for chapter titles vs body text, fonts that matched the vibe of the book (historical, more modern, etc.) It would be nice if more ebook readers made it easy to import more than the ~8 fonts they include by default but the next best thing is when the book itself includes a great font.