Skip to content

Instantly share code, notes, and snippets.

@hestela
hestela / README.md
Created June 22, 2025 23:20 — forked from droberin/README.md
Meshtastic tile map downloader for Device-UI (MUI)

Meshtastic Map/tile download script

Basics

  • Download the files in this repo/gist! into a decent folder
  • Access that folder on a terminal (cmd or powershell should work but haven't tested out of Linux distros)
  • Create your account at https://www.thunderforest.com/docs/apikeys/ (free or paid, up to you)
  • Alternatively: can also use https://apidocs.geoapify.com/playground/maps/ (defaults to thunderforest (style atlas))
  • Validate your account on your email using received validation link.
  • Log in
  • Copy API Key from website.
#!/bin/bash
# Run from location where you have audio
# from the <game-dir>/streammusic directory
mp3s=(
[0-5]*.wav
mus_{a,b,t}*.wav
evil_ending.wav
credits.wav
@hestela
hestela / pyqt5_scraper.py
Last active March 28, 2020 09:51 — forked from brbsix/pyqt5_scraper.py
PyQt5 Scraper (Basic Example)
#!/usr/bin/env python3
import sys
import requests
import bs4 as bs
from pyvirtualdisplay import Display
from PyQt5 import QtWebEngineWidgets, QtCore, QtWidgets
from PyQt5.QtWidgets import QApplication
class Page(QtWebEngineWidgets.QWebEnginePage):