1. Disable PVE enterprise repo:
sed -i 's/^deb/# deb/' /etc/apt/sources.list.d/pve-enterprise.list2. Disable Ceph enterprise repo:
sed -i 's/^deb/# deb/' /etc/apt/sources.list.d/ceph.list1. Disable PVE enterprise repo:
sed -i 's/^deb/# deb/' /etc/apt/sources.list.d/pve-enterprise.list2. Disable Ceph enterprise repo:
sed -i 's/^deb/# deb/' /etc/apt/sources.list.d/ceph.list| version: '6.9' | |
| services: | |
| # Block explorer server | |
| electrs: | |
| image: ghcr.io/vulpemventures/electrs:latest | |
| container_name: electrs | |
| entrypoint: | |
| - /build/electrs | |
| command: | |
| - -vvvv |
| import base64 | |
| import json | |
| from requests_cache import CachedSession | |
| from datetime import timedelta | |
| from itertools import count | |
| item_session = CachedSession( # Cache POST requests to avoid sending the same data twice | |
| 'items_cache', | |
| expire_after=timedelta(days=21), # expire responses expire after 21 days | |
| allowable_methods=['GET', 'POST'], |
| def get_merchants(): | |
| # go to directory | |
| # grab all categories | |
| # go to all categories | |
| # grab all pub keys on each page | |
| # return a list of pubkeys | |
| if os.path.isfile("merchants.txt"): | |
| print("Merchants list found, delete it to update.") | |
| with open("merchants.txt", "r") as fileobj: |
| // Copyright 2013-2015, University of Colorado Boulder | |
| /* | |
| * The front of a bucket (does not include the hole) | |
| */ | |
| define( function( require ) { | |
| 'use strict'; | |
| // Includes | |
| var Color = require( 'SCENERY/util/Color' ); |