View domains
# 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
%YAML 1.2 | |
--- | |
scope: source.todo | |
file_extensions: | |
- todo.txt | |
contexts: | |
main: | |
- match: '^(?=\S)' | |
push: todo | |
- include: url |
View Dockerfile
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 \ |