View domains
This file contains 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
# https://stopads.io/lists/UKcatchuptvblocklist.txt | |
tom.itv.com | |
2a7e9.v.fwmrm.net | |
p.videologygroup.com | |
2356e.v.fwmrm.net | |
# https://www.reddit.com/r/pihole/comments/hnpig6/does_anyone_have_a_custom_list_to_block_uk_tv/fxe4x0l/ | |
cdn.ss.anno.channel4.com | |
webstats.channel4.com | |
tom.itv.com |
View todo.sublime-syntax
This file contains 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
%YAML 1.2 | |
--- | |
scope: source.todo | |
file_extensions: | |
- todo.txt | |
contexts: | |
main: | |
- match: '^(?=\S)' | |
push: todo | |
- include: url |
View Dockerfile
This file contains 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 python:3.6-stretch | |
RUN apt-get update \ | |
&& apt-get -y install autoconf automake autotools-dev g++ pkg-config libtool make unzip | |
RUN cd /tmp && \ | |
wget -O pyflame-master.zip https://github.com/uber/pyflame/archive/master.zip \ | |
&& unzip pyflame-master.zip \ | |
&& cd pyflame-master \ | |
&& ./autogen.sh \ |