Mahmoud Al-Qudsi
Mahmoud Al-Qudsi
With the new convention to use the capitalized version of a short flag to indicate the opposite it's too bad that `-E` is already used to mean `--encoding`, as I...
I was bitten pretty hard (my fault!) by a subtle difference in eXtended mode's handling of spaces in character classes. I was expecting (except in a much more complicated context)...
``` mqudsi@ZBook /m/c/U/M/Downloads> parallel --shell thread 'main' panicked at 'byte index 9 is out of bounds of `--shell`', /checkout/src/libcore/str/mod.rs:2171:8 stack backtrace: 0: std::sys::imp::backtrace::tracing::imp::unwind_backtrace at /checkout/src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:49 1: std::sys_common::backtrace::_print at /checkout/src/libstd/sys_common/backtrace.rs:71 2:...
```fish ~>> echo ./zoomed\ in.png ./zoomed in.png ~> echo ./zoomed\ in.png | parallel 'file -ib "{}"' parallel: reading inputs from standard input cannot open `"./zoomed in.png"' (No such file or...
I originally understood `--quote` to escape the `{...}` substitutions, not the command. Maybe it should escape both? ```fish ~> echo "hello 'world'" | parallel --quote --dry-run file -ib parallel: reading...
If vim-gutentags is unable to create the tags file (for example, in a read-only directory), `:w` is blocked (under neovim). An error message appears and then the save is aborted....
**Let me preface this issue with the following: I don't know if HandBrake is supposed to automatically obtain these dependencies or not, but `./configure` completed without any warnings so I...
Currently `sql.js` supports creating custom SQL functions via the exposed `create_function` function. This allows you to use a locally-defined function from within SQLite queries, such as `SELECT custom_func(col) FROM ...`....
Chromeless 1.5.0 under TypeScript 1.7.2 imported as ```typescript import { Chromeless } from "chromeless"; // or // import Chromeless from "chromeless"; ``` returns the following error when the compiler attempts...
So long as SQLite is not running in single-threaded mode (and the default is that it's not), it should be safe to offer a `.clone()` implementation that would re-open the...