From clean install Ubuntu 18.04LTS
- Firefox Quantum : Because i love firefox and the multi-sync account is awsome.
- VSCode : Very cool ide with a lot of extensions, using sync extension.
| #!/bin/bash | |
| # Find existing files in download/complete that are not in movies or tvshows. | |
| export DOWNLOAD_FOLDER=path/to/downloads | |
| export MOVIES_FOLDER=path/to/movies | |
| export TVSHOWS_FOLDER=path/to/tvshows | |
| findExistingFile() { | |
| file=$(find $MOVIES_FOLDER/ $TVSHOWS_FOLDER/ -samefile "$1") |
| version: "3.9" | |
| services: | |
| traefik: | |
| image: traefik:latest | |
| ports: | |
| - 80:80 | |
| - 443:443 | |
| command: | |
| - --api=true |
| ## Regex flavors: PCRE | |
| ^(?<client>\S+) \S+ (?<userid>\S+) \[(?<datetime>[^\]]+)\] "(?<method>[A-Z]+) (?<request>[^ "]+)? HTTP\/[0-9.]+" (?<status>[0-9]{3}) (?<size>[0-9]+|-) "(?<referrer>\S+)" "(?<user_agent>\S+)" (?<requestsTotal>)\d+ "(?<router>\S+)" "(?<server_URL>\S+)" (?<request_duration>\d+)ms | |
| ## Regex flavors: .NET, Java 7, XRegExp, PCRE 7, Perl 5.10, Ruby 1.9 | |
| ^(?P<client>\S+) \S+ (?P<userid>\S+) \[(?P<datetime>[^\]]+)\] "(?P<method>[A-Z]+) (?P<request>[^ "]+)? HTTP\/[0-9.]+" (?P<status>[0-9]{3}) (?P<size>[0-9]+|-) "(?P<referrer>\S+)" "(?P<user_agent>\S+)" (?P<requestsTotal>)\d+ "(?P<router>\S+)" "(?P<server_URL>\S+)" (?P<request_duration>\d+)ms |
From clean install Ubuntu 18.04LTS