Vladimir Vissoultchev
Vladimir Vissoultchev
... changed `constraint` to `raint` and `constraints` to `raints`. Just FYI.
Generating next `timestamp` *after* executing query might miss time interval needed to process the query itself. Consider this code snippet: # For given list of topics, get all the messages...
Refactor to use direct API calls to fetch needed info. Dependency troubles on clean Win7 first mentioned [here](https://github.com/wqweto/UMMM/issues/29#issuecomment-1105109618). Edit: Apparently on Win11 `TLBINF32.DLL` depends on .NET 3.5 being installed too.
https://docs.microsoft.com/en-us/windows/win32/sbscs/application-manifests#activeCodePage
http://www.vbforums.com/showthread.php?840333-SXS-and-UMMM-with-inter-thread-marshalling Probably best would be to just ignore the `TypeLib` part when looking up for interfaces as multiple typelibs in a dll are not supported.
#### Feature request type Ability to pre-process input log file before hitting filters classes with a simple find and replace regex. #### Description The idea is for instance this log...
In `ClientConnection::NegotiateProtocolVersion` function (in `ClientConnection.cpp` file) for protocol version `RFB 003.008` there is a comment left like this else if (m_minorVersion == 8) // adzm 2010-09 - RFB 3.8 {...
https://github.com/wolfgarbe/SymSpell/blob/master/SymSpell.Demo/SymSpell.Demo.cs#L56 Is "work" there some kind of troll like this issue title?
[Line 33](https://github.com/rads/sqlite-okapi-bm25/blob/master/okapi_bm25.c#L33) is currently `int currentX = X_OFFSET + (3 * searchTextCol * (i + 1));` should become `int currentX = X_OFFSET + (3 * (searchTextCol + i * colCount));`...
You need to check `avgLength` when calculating `rightSide`. This can be zero if the `searchTextCol` column contains only NULLs