Adam

Results 19 issues of Adam

Consider the match-syntax pattern: `before !(not|no|maybe|perhaps){0,9} after` Which could be described as: "the word _before_ followed by 0-9 words that can be anything except the words `(not|no|maybe|perhaps)`, followed by the...

yesss
enhancement

Found a _hmmm_ bug in `compromise-dates` where it's matching an invalid date in format `dd/mm/{invalid 3-digit year}` **Steps to reproduce:** ``` nlp(`30/01/194`).dates().out('array') ``` **Expected:** `[]` **Actual:** `["30/01/194"]` **Discussion** I thought...

hmmm
enhancement

Given a `run-scripts` config as follows: ```json "scripts": { "reinstall": "run-s reinstall:* build:install", "reinstall:modules": "npx --ignore-existing --quiet rimraf package-lock.json node_modules", "reinstall:cache": "yarn cache clean", } ``` And the command: `npm...

**The goal** My HTML contains `` form controls. The parser extracts the text for every `` in the menu. I want it to only extract the control as it's displayed...

According to [Extend Markdown Parser](https://shd101wyy.github.io/markdown-preview-enhanced/#/extend-parser?id=extend-markdown-parser), the parser extensions are stored in the user's home directory: `~/.mume/parser.js` I have a project that needs some customised markdown parsers. They only apply to...

With oboe in a web worker, I have no errors in v2.1.4 in v2.1.5, with no other code changes, I get error: ``` oboe-browser.js:2788 Uncaught ReferenceError: window is not defined...

Is it possible to update your performance table to include [FuzzySharp](https://github.com/JakeBayer/FuzzySharp)?

Trying to extract text from PDF using `textract.fromFileWithPath()` in a Windows environment. Using textract v2.5.0 The following config is set: ``` { preserveOnlyMultipleLineBreaks: true, pdftotextOptions: { eol: 'dos', layout: 'raw',...

When running a command like: ```term tsqllint ./MyProject ``` How can I ignore specific subfolders like `./MyProject/bin`, `./MyProject/obj` ?

enhancement

The following NodeSSPI options successfully auth a user (without prompting for credentials) accessing https://myhost:9990/ over XHR request (node v14.15.1): ```js options = { // sspi cache = 1 hour cacheTTL:...