cd /var/www
git clone [email protected]:dgtlmoon/changedetection.io.git
cd changedetection.ioEdit the configuation
nano docker-compose.ymlcd /var/www
git clone [email protected]:dgtlmoon/changedetection.io.git
cd changedetection.ioEdit the configuation
nano docker-compose.yml| #!/usr/bin/env python3 | |
| # This code is distributed in the hope that it will be useful, | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. The author | |
| # accepts no responsibility for its use, of which you do so at | |
| # your own risk. | |
| import json | |
| import requests |
| #!/bin/bash | |
| # README: A more updated version is on the comments by (ashmna)[https://gist.github.com/ashmna] | |
| # See at: https://gist.github.com/allangarcia/938b052a7d55d1652052e4259364260b?permalink_comment_id=4265898#gistcomment-4265898 | |
| # this is for tools required | |
| brew update | |
| brew install ninja | |
| brew install cmake |
| """ | |
| A minimal implementation of Monte Carlo tree search (MCTS) in Python 3 | |
| Luke Harold Miles, July 2019, Public Domain Dedication | |
| See also https://en.wikipedia.org/wiki/Monte_Carlo_tree_search | |
| https://gist.github.com/qpwo/c538c6f73727e254fdc7fab81024f6e1 | |
| """ | |
| from abc import ABC, abstractmethod | |
| from collections import defaultdict | |
| import math |