Dr. Robert van Engelen

Results 10 issues of Dr. Robert van Engelen

A `test.pl` file: ~~~ :- module(test, [rule/1]). :- use_module([library(lists),library(qsave)]). set_ops :- op(1098, fx, test:[prefix]). :- set_ops. :- initialization set_ops. rule(prefix F) :- atom(F), !, op(100, fy, F). rule(A) :- atom(A),...

**Describe the bug** I'm a daily user of MacVim and my work depends on it. MacVim occasionally hangs for minutes with hundreds of threads (500 or more) when editing some...

Updated versions of [gsoap](https://sourceforge.net/projects/gsoap2/files/gsoap-2.8/) were released since mid June 2017 to fix a potential server-side vulnerability. See the [advisory](https://www.genivia.com/advisory.html) for details. Updating the NVT devices is strongly recommended. Also [Older...

Updated versions of [gsoap](https://sourceforge.net/projects/gsoap2/files/gsoap-2.8/) were released since mid June 2017 to fix a potential server-side vulnerability. See the [advisory](https://www.genivia.com/advisory.html) for details. Updating the NVT devices is strongly recommended. Also the...

Most *nix utilities support argument `-` to specify that standard input should be read. This is useful for several reasons, such as when standard input should be processed together with...

ugrep can run faster by refactoring the search logic to break up the large code block in `advance()` into separate functions that get called quicker e.g. by a switch to...

enhancement

Nice project! I came across it because a ugrep user found a Reddit post about the project. Thanks for including ugrep in the benchmarks. It is always interesting how ugrep...

As I wanted to compare hypergrep and ugrep, I'm trying to install hypergrep, but I'm having trouble building on MacOS 12.6.9 Monterey Intel x64 with the latest vcpkg version 2023-09-15...

Update v7 overhauls the search engine internals to further improve ugrep's search speeds. This update includes new SIMD logic and improved pattern analysis to collect metrics for the heuristic selection...

enhancement

Case insensitive match the filename extensions specified in `--filter` arguments to invoke commands. Currently case sensitive. For example, `ug --filter="pdf:pdftotext % -"` filters .pdf files but not .PDF files which...

enhancement