Glenn Slayden
Glenn Slayden
> @pukkandan writes: > It would be much more helpfull to have an option to remove any arbitary field from the infojson. _**In fact, this already exists..**_ Indeed, it's called...
All kidding aside, why not go this route? It would be nice to have (and likely trivial to implement) integrated **jq** scripting support as a **yt-dlp** postprocessor extension. @nao20010128nao would...
Based on my testing, it's a simple matter of removing the 'Prefer32Bit' option in the **string-theory** `.csproj` and then it was able to attach to my 64-bit WPF app (It's...
@0xd4d Really confused. If you go to the provided branch "[clrmd @ 0ae3d41](https://github.com/drewnoakes/clrmd/tree/0ae3d415b4b465d8a5ab4c8bef14e79352d52af5)" of **drewnoakes/clrmd** -- or the [master](https://github.com/drewnoakes/clrmd/tree/master) of that fork -- or even in fact the [Microsoft/clrmd](https://github.com/Microsoft/clrmd) master...
Here's the cloning problem I encounter when I try to clone **string-theory** in Visual Studio with the "Recursively Clone Submodules" option selected: >Could not read from remote repository. >Please make...
> I suspect you don't have an SSH key registered with GitHub. Surely.
I agree with @kyanha; I was initially excited to discover (and learn about) dokan(y), but I was assuming my custom filesystem would be able to emit NTFS reparse points, the...
If you're able to stick with `--prefer-ffmpeg`, the following **youtube-dl** option fixed the **`av_interleaved_write_frame()`** error for me: --postprocessor-args "-vsync drop" [edit:] additional details [here](https://github.com/ytdl-org/youtube-dl/issues/10719#issuecomment-535267968)
Target a set of simple CSV files, 1 per RDBMS table, accessible in a (given) writeable file system directory (table name == filename), where the directory also contains one additional...
public fixed DXGI_RGB GammaCurve[1025]; // ... DXGI_RGB my_rgb; How is this different from... [StructLayout(LayoutKind.Explicit, Size = 1025)] public struct DXGI_RGB { } // ... DXGI_RGB my_rgb;