This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google.com,A | |
www.google.com,A | |
microsoft.com,A | |
data.microsoft.com,A | |
netflix.com,A | |
events.data.microsoft.com,A | |
cloud.netflix.com,A | |
prod.cloud.netflix.com,A | |
ftl.netflix.com,A | |
prod.ftl.netflix.com,A |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google.com | |
www.google.com | |
microsoft.com | |
data.microsoft.com | |
netflix.com | |
events.data.microsoft.com | |
cloud.netflix.com | |
prod.cloud.netflix.com | |
ftl.netflix.com | |
prod.ftl.netflix.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import argparse | |
import urllib.request | |
import urllib.parse | |
import json | |
from collections.abc import Mapping | |
from pprint import pprint | |
import os.path | |
global dict_endpoints |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import object_finder | |
import unittest | |
class Test(unittest.TestCase): | |
def test_technical_skills_test_1(self): | |
result = object_finder.process_dict( | |
{"a": {"b": {"c": "d"}}}, "a/b/c" | |
) | |
self.assertEqual(result, "d") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
repo_update: true | |
repo_upgrade: all | |
write_files: | |
- encoding: b64 | |
owner: root | |
content: | | |
"${docker_compose_file}" | |
path: "/tmp/docker-compose.yml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
traefik: | |
image: traefik | |
ports: | |
- 80:80 | |
- 8080:8080 # optional for the status board, don't expose to internet | |
- 443:443 | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM traefik | |
ADD traefik.toml . | |
EXPOSE 80 | |
EXPOSE 8080 | |
EXPOSE 443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
quasselcore: | |
environment: | |
- PGID=999 | |
- PUID=999 | |
image: 'linuxserver/quassel-core:latest' | |
ports: | |
- '4242:4242' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#env > /docker/media/log | |
fullpath="$sonarr_series_path" | |
rootpath=$1 | |
bwlimit=$2 | |
amzepath=$(echo "$fullpath" | sed "s@$rootpath@@") | |
#amzepath=$(printf '%q\n' "$sedpath") |