Go to regional settings.
For each unwanted language:
- add preferred language - unwanted one
- remove this language
For each unwanted kbd layout:
- pick language options
- add keyboard - pick unwanted layout
- remove unwanted layout
| ($json.error.title ?? "") | |
| //=== consider sanitizing whitespaces | |
| //=== crop to intial 5 words | |
| .replace( | |
| /((\w+\s+){4}\w+)(\s.*)/, // find 5 words: 4 words followed by whitespaces + 1 word excluding the following space | |
| "$1<=>$2") // demark the boundary with '<=>' | |
| .split("<=>") | |
| // remove empty entries (meaning there were no words to remove) | |
| .filter(s=>s.length) | |
| // replace non-empty tail with "" |
Go to regional settings.
For each unwanted language:
For each unwanted kbd layout:
Ask Questions like a Boss!
+ orudenko (dev) replex $ dolt status
- ERRO[0011] load stats init failure: cannot update manifest: database is read only
On branch dev
nothing to commit, working tree clean
+ orudenko (dev) replex $ dolt checkout main
- The current directory is not a valid dolt repository.
run: dolt init before trying to run this command| [Link](#custom-id) |
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| text | Wrong original link to #custom-id |
Proper link to #header-custom-id |
anArray
.filter(x => x % 2) // odd only
.reduce(
(chain, x) => chain.then(() => networkCall(x)), // network call using an odd
Promise.resolve()
)
.then(() => console.log('all done')) // all calls complete