Skip to content

Instantly share code, notes, and snippets.

@DavidLutton
DavidLutton / wol.py
Created November 14, 2023 20:57
Wake on LAN
import struct
import socket
def wake_on_lan(mac, *, broadcast="192.168.1.255"):
"""Send WOL pachet.
https://en.wikipedia.org/wiki/Wake-on-LAN
"""
@DavidLutton
DavidLutton / dashboard.desktop
Last active January 24, 2023 20:38
Auto start pattern for a Pi
[Desktop Entry]
Type=Application
Name=Run Dashboard
Comment=NA
NoDisplay=false
Exec=/usr/bin/chromium-browser --kiosk "http://HOST/playlists/play/1?kiosk=tv&autofitpanels"
NotShowIn=GNOME;KDE;XFCE;
@DavidLutton
DavidLutton / dpglogger.py
Created April 15, 2022 19:07
DearPyGui logger that takes input from a logging QueueHandler
import logging
import queue
from datetime import datetime as dt
from logging.handlers import QueueHandler
import dearpygui.dearpygui as dpg
class mvLogger:
"""https://github.com/hoffstadt/DearPyGui_Ext/blob/master/dearpygui_ext/logger.py ."""
Label Symbol
Block
Product
Floor ⌊ fn ⌋
Ceil ⌈ fn ⌉
Nearest int ⌊ fn ⌉
Intersection
Summation
Integral
@DavidLutton
DavidLutton / get_normalized.py
Last active April 3, 2020 10:29
Intended to normalize to dataframe columns to Hz
def get_normalized(df):
"""Normalize frequencies (MHz, GHz) in a DataFrame to Hz."""
SI_PREFIXES = 'yzafpnum kMGTPEZY'
SI_SCALE_FACTOR = dict([(key, 10**((-8+i)*3)) for i, key in enumerate(SI_PREFIXES)])
for column in df:
xHz = [ r for r in re.split(r'[\(*\)]', column) if r not in ''][-1]
# find eg 'MHz' from the column name 'Frequency (MHz)'
@DavidLutton
DavidLutton / venv_create.py
Last active May 26, 2020 11:51
Create venv and config for Python / VS Code
import fileinput
import os
import venv
from pathlib import Path
# venvtarget = Path('.').resolve().name.replace(' ', '_')
# header = Path(venvtarget / 'Scripts/python.exe').as_posix()
# print(header)
from pathlib import Path
older, newer = sorted(list(Path('.').glob('prefix_????-??-??.ext')))[-2:] # last 2 files
@DavidLutton
DavidLutton / bootimgwithphysicaldisk.sh
Last active July 8, 2019 00:00
Boot .img in qemu-kvm with a physical disk /dev/sdb
sudo chown root:$USER /dev/sdb && qemu-kvm -hda LibreELEC*.img -m 4096 -drive format=raw,file=/dev/sdb ; sudo chown root:disk /dev/sdb
import math
import pandas as pd
import numpy as np
def measurementfunction(columns=['Input', 'Output']):
# Inital call of next() runs the init/setup
print('Init/Setup of Instrument')
buffer = {}
# A initial call of next(generatorobject) will get to this point
x = yield # Where first input is outside the while loop
find . -name "$1" -exec grep -Hn "$2" '{}' \;