Live data from Hacker News

Show HN: Bionic Reading – Formats text to make it faster to read

bionic-reading.com

121–130 of 281 posts

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#122

The rules implemented are very simple (taken from the patent application [1], the exact numbers are configurable). If there are 4 letters, 40% of all letters are bold. There is this claim as the first text on the website: We are happy if as many people as possible can use the advantage of Bionic Reading. For this reason, Bionic Reading should be able to be integrated into existing apps and services. The benefit for t…

You could reduce this to just rounding using the 40% rule + minimum of 1 bold letter right?

1 * .4 = .4, 1 bold letter (minimum)

2 * .4 = .8, 1 bold letter

3 * .4 = 1.2, 1 bold letter

4 * .4 = 1.6, 2 bold letters

etc.

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#124
post #92

Earlier quoted context omitted.

Ich danke Dir vielmals noeltock. Ja ich hatte bereits zwei Browser Extensions (Chrome, Firefox) als Beta-Versionen. Aber die Erkenntnis war, dass sehr viele Websites — da diese ja individuell erstellt werden — keine gute Experience ergab. Deswegen habe ich mit Silvio Rizzi (Reeder5) getestet, wie es am besten nutzbar gemacht werden kann. Hab aus Fehlern gelernt, aber wir denken dass es viele Entwickler gibt, die BR i…

The problem is that since you've patented these 3 lines of code, I'm not sure many other can legally write a browser extension for this functionality. I'd like to use this in Safari on iOS, for example, but... I can't.

Clearly these three rules are a fact about human pyschology rather than an invention and should be ineligible for patents. I understand that New Zealand law for example classifies pure software inovation as categorically not being invention. I'm unsure of what hoops you'd have to jump through to take advantage of this fact to release a browser extension for example, but it seems like it should be possible, though code signing and stuff might cause problems.

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#125

I can totally see how it could benefit some people but for me I don't find it works, I feel like it forces a slow on few letters words or group of words that I could have read in one glance. Also I tried a bit of speed reading and I feel like I already read faster than I can process information and that my eyes are not the bottleneck when deep reading.

There is a cliff in speed reading (at least in my experience) where you're reading speed for a particular reading exceeds your ability to process and/or enjoy the words you are reading.

Similar to audio books ... some podcasts/audiobooks I can listen to at 2.5x or higher and others I need to reduce to 1.25 or 1.5x. Some readers are already fast enough and I listen a 1x; Mary Robinette Kowal for instance.

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#127
As a non native English speaker, this does not work.

Maybe because the part of the brain used to read/write/listen/speak a non native language is not the same as a native language. I really feel that I need to focus more while reading the example paragraph with the bionic stuff.

I tried the other examples, but I memorized enough of the text starting the 3rd example that I could not really infer anything. Putting the same text for all the examples is not really helpful in this case.

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#128
Cool, here's a quick hack to try a similar technique with the comments in this thread (copy and paste into dev tools:

    $$('span.commtext').forEach(span => {
        const frag = document.createDocumentFragment();
        span.textContent.split(/\s+/).forEach(word => {
          const len = Math.ceil(word.length * 0.3);
          const leading = document.createElement('strong');
          leading.textContent = word.slice(0, len);
          const trailing = document.createTextNode(word.slice(len) + ' ');
          frag.appendChild(leading);
          frag.appendChild(trailing);
        });
        span.parentNode.replaceChild(frag, span);
    })

Re: Show HN: Bionic Reading – Formats text to make it faster to read

#130
Site images blocked for me, and no examples in HTML.

Looks like “shortpixel.ai” blocked by AdGuard Base.

“Data on Swiss servers”, but shortpixel.com and shortpixel.ai owned by ID Scout of Romania. Their Wordpress plugin and CDN both superficially ‘act like’ plenty of free beacon tracker type image hosts, though this service offers paid plans and copy paste data legalese doesn’t reference advertising/measurement/aggregation third parties.

I haven’t the time to look into why AdGuard is blocking, but perhaps it’s that ad banner or ad injector companies like it:

https://github.com/AdguardTeam/AdguardFilters/search?q=short...

Post reply on HN