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 archlinux | |
# Need to create a non-root user, otherwise `makepkg` refuses to work | |
RUN useradd --no-create-home --shell=/bin/false build && usermod -L build | |
RUN echo "build ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers | |
RUN echo "root ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers | |
RUN pacman -Syu --noconfirm && pacman -S --noconfirm sudo | |
USER build |
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
import random | |
from copy import deepcopy | |
from collections import defaultdict | |
from itertools import product | |
from tqdm import tqdm | |
def play_game(size=3, verbose=False): | |
candidates = { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
os: linux | |
dist: xenial | |
language: python | |
python: 3.7 | |
addons: | |
apt: | |
sources: | |
- sourceline: 'ppa:ubuntugis/ppa' | |
packages: | |
- gdal-bin |
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 planet.api import ClientV1, filters | |
from simplekml import Kml, Style, Color | |
def get_items(item_type="SkySatScene", permission="assets.basic_panchromatic_dn:download"): | |
client = ClientV1() | |
query = filters.and_filter(filters.permission_filter(permission)) | |
request = filters.build_search_request(query, item_types=[item_type]) | |
result = client.quick_search(request) |