Maksym Kryvchun
Maksym Kryvchun
Relates to #266 and #464. The method adds the support of cancelling blocking operations in the Publish method. The PR replaces mutex with semaphore. The changes are not breaking. All...
## Description Support JSON with comments as an input: ```jsonc { /* The most popular text. */ "hello": "world" // My first JSON. } ``` ## Why? Comments improve readability,...
``` issues: fix: true exclude-rules: - linters: - thelper source: "^.*f\\.Scenario.*$" ```
+ **VK driver** + **OK driver**: the additional parameter APPLICATION_KEY (https://apiok.ru/en/dev/app/) is required + Add `Sig()` function to the OK driver for calculating signatures of a requests + Use **Functional...
https://cs.opensource.google/go/go/+/refs/tags/go1.18.3:src/regexp/syntax/regexp.go;l=246 Edit: deploy as an online tool.
```go // x*? zero or more x, prefer fewer // x+? one or more x, prefer fewer // x?? zero or one x, prefer zero // x{n,m}? n or n+1...
#### Definition ``` (?flags) set flags within current group; non-capturing (?flags:re) set flags during re; non-capturing Flag syntax is xyz (set) or -xyz (clear) or xy-z (set xy, clear z)....
| symbol | description | Suggestion | |-----------|-----------------------------------------------------------------------------------------------|----------------------------------------------| | \A | at beginning of text | `Chars.BeginOfText()` | | \b | at ASCII word boundary (\w on one side and...
https://stackoverflow.com/questions/26771592/negative-look-ahead-in-go-regular-expressions https://betterprogramming.pub/demystifying-look-ahead-and-look-behind-in-regex-4a604f99fb8c Generate composite? ``` NotText("hello") // (?:[^h]|h[^e]|hel[^l]|hell[^o]) ```