Ross Smith II

Results 188 comments of Ross Smith II

See https://github.com/secretlint/secretlint/blob/master/docs/configuration.md#ignoring-error-by-comments and https://github.com/secretlint/secretlint/blob/master/docs/configuration.md#secretlintignore

@joefitzgerald: Check out https://github.com/misheska/basebox-packer/blob/master/template/windows2012r2/floppy/win2012r2-standard/Autounattend.xml#L89 We moved the `FirstLogonCommands` commands out of `Autounatted.xml`, to separate scripts, for just that reason: so we can view (with optional pausing) and log the results.

Executables are at: https://github.com/rasa/git-crypt/releases and can be installed via scoop: `scoop install git-crypt`

See #145 and https://github.com/AGWA/git-crypt/blob/0dec70739b3f4e6d22007c102f581448c4e9d2f1/Makefile#L19

Here's a regex that covers most, if not all, of the reserved IP addresses: ``` ^( 0?10\.| 127\.| 169\.254\.| 172\.0?1[6-9]\.| 172\.0?2[0-9]\.| 172\.0?3[01]\.| 192\.168\.| 192\.0?0?0\.0?0?[02]\.| 192\.0?88\.0?99\.| 198\.0?1[89]\.| 198\.0?51\.100\.| 203\.0?0?0\.113\.| 233\.252\.0?0?0\.| 255\.255\.255\.255|...

> I took a stab at this, but signald is [hard-wired](https://git.callpipe.com/finn/signald/blob/master/src/main/java/io/finn/signald/Main.java#L60) to use Unix sockets. Windows supposedly now has support for Unix sockets. See https://unwcf.com/posts/unix-sockets/ as well as: https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/

On a side note, is there any interest in solving the underlying issue via https://github.com/syncthing/syncthing/pull/7876 ?

A slight improvement: ``` strings() { if (($#)); then strings < "$1" return fi local IFS line while read -r line; do printf -- '%s\n' "${line//[^[:alnum:][:blank:][:punct:]]}" done } ``` will...

On a Windows 7 x64 box, using Python 2.7.15 and 3.7.2, I had issues with subsync freezing running ffmpeg. After about 15 seconds, or ~60% the way thru a 1.6GB...

@smacke After reverting my hack, and upgrading, I am unable to reproduce the lockups, after testing with multiple inputs. Thanks for the quick fix!