HN user

meribold

1,173 karma

See meribold.org for contact information.

Posts43
Comments130
View on HN
github.com 3mo ago

Show HN: A (marginally) useful x86-64 ELF executable in 298 bytes

meribold
13pts0
github.com 3mo ago

Show HN: A (marginally) useful x86-64 ELF executable in 301 bytes

meribold
65pts21
github.com 4mo ago

Show HN: Git command for creating snapshot commits on a not checked-out branch

meribold
4pts1
blog.jpalardy.com 7mo ago

When to use "cat -n" instead of "wc -l"

meribold
3pts2
github.com 1y ago

Show HN: Git command for creating snapshot commits on a not checked-out branch

meribold
2pts0
daringfireball.net 1y ago

The Talk Show Live From WWDC 2025: Tuesday June 10

meribold
1pts0
twobithistory.org 2y ago

Things you didn't know about GNU readline (2019)

meribold
168pts112
github.com 2y ago

Show HN: A (marginally) useful x86-64 ELF executable in 466 bytes

meribold
85pts21
meribold.org 2y ago

A Survey of CPU Caches (2017)

meribold
1pts1
anonyfox.com 2y ago

Need for Speed

meribold
3pts0
noahfrederick.com 2y ago

My Most Successful Keyboard Hacks

meribold
10pts0
github.com 3y ago

Show HN: Battery status program in 110 lines of x86 assembly

meribold
1pts0
support.mozilla.org 3y ago

Introducing Firefox View

meribold
3pts0
meribold.org 3y ago

Using the same Arch Linux installation for a decade

meribold
526pts411
cight.co 3y ago

Exporting Messages from Signal for iOS: A Journey

meribold
2pts1
github.com 4y ago

Show HN: Git command for creating snapshot commits on a not checked-out branch

meribold
2pts3
cight.co 4y ago

Exporting Messages from Signal for iOS: A Journey

meribold
1pts0
github.com 4y ago

Show HN: Git command for creating snapshot commits on a not checked-out branch

meribold
1pts1
cight.co 4y ago

Exporting Messages from Signal for iOS: A Journey

meribold
7pts1
cight.co 4y ago

Exporting Messages from Signal for iOS: A Journey

meribold
1pts0
edsantos.eu 5y ago

On Stallman

meribold
31pts6
meribold.org 5y ago

A Critique of the Open Letter Calling for the Removal of RMS

meribold
234pts245
based.cooking 5y ago

Based Cooking

meribold
394pts446
meribold.org 5y ago

Virtual Environments Demystified

meribold
93pts31
github.com 5y ago

Show HN: Pomodoro timer using figlet, cowsay, and optionally lolcat

meribold
3pts2
github.com 5y ago

Show HN: Pomodoro timer using figlet, cowsay, and optionally lolcat

meribold
1pts0
www.youtube.com 6y ago

Email Workflow Demo (Neovim, NeoMutt, UltiSnips, Khard/Omnifunc Contact Compl..)

meribold
1pts0
www.youtube.com 6y ago

The One Year Anniversary of the Death of Terry Davis [video]

meribold
2pts0
github.com 7y ago

Show HN: Pomodoro timer using figlet, cowsay, and optionally lolcat

meribold
1pts0
github.com 7y ago

Show HN: Pomodoro timer using figlet, cowsay, and optionally lolcat

meribold
2pts0
Raspberry Pi 500+ 10 months ago

This seems like it would be great together with a pair of display glasses (like those from XREAL, for example). But I wish it had a TrackPoint.

GPT-5 12 months ago

Sad to see GPT-4.5 being gone. It knew things. More than any other model I'm aware of.

This system seems quite similar to sending messages to oneself on Signal/Telegram/whatever. What I like about using messenger apps is that every note gets a timestamp and that messenger apps are, in my experience, more polished than note-taking apps.

Good point. Perhaps we could store the length of the common prefix from the last time we went left as well as from the last time we went right. The minimum of those two should remain a common prefix with the search key for the rest of the lookup and should therefore be safe to skip during subsequent comparisons.

Maybe Markdown doesn't allow arbitrary nesting of inline markup, but the combinations I actually wanted so far work. With reStructuredText, OTOH, I ran into limitations even though I didn't try to commit typographic atrocities.

Wasn't reStructuredText the one where you can't make text a link if any of it is bold/italic/monospaced? IIRC, nesting of inline markup is generally not possible. It works in Markdown…

There's one more detail along the lines of theme changes in other tabs and theme preference changes from the OS/browser: activating the correct theme following history navigation. When I navigate to another page of the author's site, change the theme from light to dark, and then use my browser's back button, I get the light theme again. On my own site I use the `pageshow` event to fix this (https://github.com/meribold/meribold.org/blob/afe6885/_inclu...).

The extra effort is only needed on Firefox and Safari, though. Chromium already handles this somehow.

To make Less (the pager program) behave a bit more as if it used Readline (it doesn't), one can create a `~/.config/lesskey` file with these contents:

  #line-edit
  ^A home
  ^E end
  ^F right
  ^B left
  ^P up
  ^N down
  ^D delete
  ^W word-backspace
  \ed word-delete
  \ef word-right
I think a relatively recent version of Less is required.