Sébastien Gross
Sébastien Gross
Maybe you can use kujtimiihoxha/go-brace-expansion to allow brace expansions. This will help in generating hosts configuration since using `host-*.example.com` does not allow bash completion whereas `host-{foo,bar}-{01..42}.example.com` will generate all 84...
You should also use gopkg.in/yaml.v3 which allows full YAML syntax, especially anchors. These are useful for inheritance: ```yaml _default: &_default User: john IdentityFile: ~/.ssh/id_rsa _default_root: &_default_root
There is a problem with regexes and globs naming: shell completion does not work correctly because it does not know how to complete the hostnames. Brace expansion solves this problem...
I use it for o-blog since version 2.6: http://renard.github.io/o-blog-v2.6/ (see https://github.com/renard/o-blog branch 2.6) I also use it on my personal blog: https://renard.chezwam.org/ Thanks for the nice looking font
By the way it would be nice to have a way to automatically select the most recent full backup when performing a PITR. For example if you do a full...
@noborus That is a great job. I did a very simple test and it looks good for me.
Any new about that issue? I got something like: ``` python if __name__ == "__main__": try: obs = Observer() obs.start() str = Stream(callback, live, file_events=True) obs.schedule(str) except KeyboardInterrupt: print "Going...
@wtarreau on MacOS without your patch(es) the supported bauds are: ```$ ./bin/bt -b 460800 No port specified, using cu.usbserial-14230 (last registered). Use -l to list ports. Trying port cu.usbserial-14230... Failed....
Just a copy / blast: the original uses a `stuct`, your code does not. this comment (https://github.com/avrdudes/avrdude/issues/771#issuecomment-1061060824) states the driver may deny the use of non standard baud rates.
fair enough I do not have such devices to test the effective speed. Maybe @deepcoder has.