INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
Open about:config and set mousewheel.default.delta_multiplier_y to negative, e.g. -100 if the current value is (the default) 100
This should only be necessary on platforms where Firefox isn't honouring the global setting. For instance on a Mac or Windows it's not necessary if you've set the scrolling direction to reverse globally, but on Linux, Firefox doesn't honour KDE's setting. I haven't tested GNOME ….
The default setting is fine for an actual mouse-wheel, but when using a touchpad to two-finger-scroll (or a trackball), it's more Natural for the page to scroll down when you swipe your fingers up: it seems more like how a paper page will shift.
| #!/bin/bash | |
| # | |
| # █▄▄ █░█ █▀▄▀█ █▀█ ▄▄ █░█ █▀▀ █▀█ █▀ █ █▀█ █▄░█ | |
| # █▄█ █▄█ █░▀░█ █▀▀ ░░ ▀▄▀ ██▄ █▀▄ ▄█ █ █▄█ █░▀█ | |
| # | |
| # Description: | |
| # - This script automates bumping the git software project's version using automation. | |
| # - It does several things that are typically required for releasing a Git repository, like git tagging, | |
| # automatic updating of CHANGELOG.md, and incrementing the version number in various JSON files. |
| from glob import glob | |
| from google.api_core.client_options import ClientOptions | |
| from google.cloud import documentai # type: ignore | |
| # TODO(developer): Uncomment these variables before running the sample. | |
| project_id = "PROJECT_ID" | |
| location = "us" # Format is "us" or "eu" | |
| file_paths = sorted(glob("document-chunk-*.pdf")) | |
| processor_display_name = "BOOK_OCR_PROCESSOR" # Must be unique per project, e.g.: "My Processor" |