Ask HN: Anyone highlight text as they read?
31–40 of 63 posts
Re: Ask HN: Anyone highlight text as they read?
#32Re: Ask HN: Anyone highlight text as they read?
#33Re: Ask HN: Anyone highlight text as they read?
#34What if instead, it was just on hover? I'd like to opt into this for just pages with long text, and so I created a bookmarklet.
Using this page:
I added this naive css:
p:hover {
background-color: Highlight;
}
It works ok, if any fellow highlight readers want to give it a try, but does anyone with any sort of css-fu know how to make it more robust? I tried adding other tag:hovers, but nesting quickly makes this weird. Is there a way to select parents of text nodes?Re: Ask HN: Anyone highlight text as they read?
#35Yes. All the time. My co workers probably find me maddening in a collaborative google doc.
Re: Ask HN: Anyone highlight text as they read?
#36I've never actually thought to do this but its kind of genius.
It's more of a fidget/habit than any kind of reading comprehension hack.
Re: Ask HN: Anyone highlight text as they read?
#37Sometimes when I use multiple monitors and have several windows open, I select text so I don't lose my place when reading. I wish the colors of the letters would not change color when selected.
*::selection {
background: yellow;
color: inherit;
}Re: Ask HN: Anyone highlight text as they read?
#38I had no idea so many people did this, as I can't imagine wasting the time mousing around like that; so you can imagine how surprised I was at the first bug reports on gwern.net from people having problems with highlights (from the link-underlining using drop shadows, usually). "I'm amazed you noticed such a subtle bug! ...you what"
Re: Ask HN: Anyone highlight text as they read?
#39Re: Ask HN: Anyone highlight text as they read?
#40Yes. I usually triple click to select the line/paragraph I'm on. If some site fucks with that setting, I try to disable most of their javascript with the "Absolute Enable Right Click And Copy" add-on's "Absolute Mode" and if that doesn't work I close the site.
Thanks for the add-on recommendation. I tend to select paragraphs and sentences as I read articles just like OP, so this should do nicely to neuter sites that try to override selection behavior.
For those potentially interested, the add-on will remember your settings on a domain by domain basis.
Also beware, if you turn on absolute mode on a site and forget you have, it may break javascript-based custom text fields and controls for videos, and you may end up confused for awhile until you remember why.