Skip to content

Instantly share code, notes, and snippets.

View the-moog's full-sized avatar
💭
Not looking for a new job

Jay the-moog

💭
Not looking for a new job
  • Qualcomm/QTI, UK, Cambridge
  • Cambridge, UK
  • 08:04 (UTC +01:00)
View GitHub Profile
@the-moog
the-moog / fixexec.py
Last active June 8, 2024 10:59
Python script to fix the "exec format error" seen with tools like gzip in WSL with Ubuntu 22.04 in Q1/Q2 2022
#!/usr/bin/env python
r"""
This script can be used to fix the "exec format error" seen with tools like gzip in
WSL with Ubuntu 22.04 in Q1/Q2 2022
A hacky fix for broken executables in WSL/Ubuntu 22.0
see https://github.com/microsoft/WSL/issues/8219
@the-moog
the-moog / inner.py
Created April 22, 2022 12:04
Using concurrent.futures to call secondary Python scripts with parameters and collect the results
# inner.py
# Note we did not load sys module, it gets passed to us
script_name = sys.argv[0]
import time
import random
state = "!! RESTARTED !!" if restarted else "loaded"
runtime = 1 if not restarted else 15
@the-moog
the-moog / signed_hex.py
Created January 4, 2022 12:10
A Python class that produces proper 2's compliment binary/hex representations of integers.
"""
Python's handling of negative hex numbers is rubbish
It has a two's compliment but that does not know about bytes
This class fixes that by allowing a negative hex number that is not just a hex number
with a minus in front of it
doctest below here....
Negative of 127
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.