GPFSimon / Speed-Bionic-Reading

Speed reading technique that has recaptured public interest due to Bionic Reading done in a VBA Macro

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table of Contents

===================================

Speed-Bionic-Reading

Speed reading technique that has recaptured public interest due to Bionic Reading done with a VBA Macro for Word documents.

Speed reading technique is to highlight important words or parts of words in a text so when you review you can quickly absorb the word and move on before your mind needs to read every word in your head slowly. You can understand what you're reading without saying the entire word in your head.

Shout out to Bionic-Reading.com

They explain this technique as:

Facilitating the reading process by guiding the eyes through text with artificial fixation points. As a result, the reading is only focusing on the highlighted initial letters and lets the brain center complete the word.

The Macro Logic

Macro Name Txt Name Logic
SpeedReaderSelection ConvertHighlighted.txt Affects only highlighted text
Words 1-3 characters = 1 letter bolded
Words 5+ chars = Half bolded, rounded up
SpeedReaderFullDoc ConvertEntireDoc.txt Affects entire document
Words 1-3 characters = 1 letter bolded
Words 5+ chars = Half bolded, rounded up
SpeedReaderSelectionRoundDown ConvertHighlightBoldLess.txt Affects only highlighted text
Words 2-3 characters = 1 letter bolded
Words 5+ chars = Half bolded, rounded down
SpeedReaderFullDocRoundDown ConvertEntireBoldLess.txt Affects entire document
Words 2-3 characters = 1 letter bolded
Words 5+ chars = Half bolded, rounded down

Importing the Macro

The macros are included in a .bas file here, when you are in Word press Alt+F11 to open the VB Editor. In VB Editor go to File > Import, or just press Ctrl+M. In the dialog that opens, find and select the .bas file to import your macro.

Alternatively you can just paste the VBA code directly into your module from here. And if you like neat little progress bars, you can find the form and file here.

Getting the Macro to work

The macro relies on Regex, so you must enable the Microsoft VBScript Regular Expressions 5.5 reference. Press Alt+F11, go to Tools > References > and then Select "Microsoft VBScript Regular Expressions 5.5"

Enable Macros

If you don't already have macros enabled in your Microsoft office go to: File > Options > Trust Center > Trust Center Settings > Macro Settings > Then Enable "Trust access to the VBA project object model"

If you're having difficulties, please refer to the Microsoft Support page for instructions to enable them.

Recommended Fonts

If you really want your document to look like Bionic-Reading, I recommend downloading and installing the IBM Plex Serif font found here. I also recommend making the font a slightly lighter shade of black, perhaps 25% lighter.

Output Example

If reading the left is easier than reading the right, then this is a great tool for you.

Neurodiversity

There is a lot of talk that this tool is great for neurodivergent people. It definetly can help. It certainly helps me. However, I don't believe it is a solution that will help most. Because this is a speed-reading technique, and a lot of people comprehend better by taking their time. All the bolded letters could make reading more difficult rather than easier for you.

If this does not work for you, there are other speed reading or focusing techniques. I'm not dyslexic, but I found the OpenDyslexic font has helped me.

Self Shoutout

If you'd like to learn about me, or support me; check out my linktree here: https://linktr.ee/gpfsye! You can watch my videos, purchase my book, join me in my Reddit streams, or even buy me a cup of coffee!! All links on the Linktree!

About

Speed reading technique that has recaptured public interest due to Bionic Reading done in a VBA Macro


Languages

Language:VBA 100.0%