Skip to content

Instantly share code, notes, and snippets.

View goldstar611's full-sized avatar

goldstar611 goldstar611

  • There's something going on here.
View GitHub Profile
@goldstar611
goldstar611 / autoclicker.py
Last active March 16, 2024 16:48
An autoclicker. Or something like that
import time
import pyautogui
do_break = False
while True:
if do_break:
break
start_time = time.time()
while True:
@goldstar611
goldstar611 / Makefile
Last active January 15, 2023 02:35
CHIRP flatpak (python2+gtk2)
.PHONY: all export run clean dist-clean get_sdk
# `make run` will start chirpw
# `make run python` will start the python interpreter inside the flatpak
# `make run bash` will start bash shell inside the flatpak
args = $(filter-out $@,$(MAKECMDGOALS))
CMD ?= $(if $(args),$(args),chirpw)
all:
flatpak-builder --force-clean build-dir --repo repo/ com.danplanet.chirp.yml | tee build.txt