Skip to content

Instantly share code, notes, and snippets.

View MaddoxRauch's full-sized avatar
👾
Trying to stay focused

Mark Rauch Richards Jr. MaddoxRauch

👾
Trying to stay focused
View GitHub Profile
@MaddoxRauch
MaddoxRauch / CreateQR.py
Created July 28, 2022 02:13
Create a QR code
import qrcode
img = qrcode.make("https://www.google.com/")
img.save("QR.jpg")
@MaddoxRauch
MaddoxRauch / example.py
Created July 28, 2022 01:51
A better way to chain comparisons
#instead of this
if a == 1 and b == 2 and c == 3:
print("All conditions met.")
# try this
if (a, b, c) == (1, 2, 3):
print("All conditions met.")
@MaddoxRauch
MaddoxRauch / sma.py
Created February 24, 2022 03:50
Simple Moving Average function
def sma(items: list, window: int = 5) -> list:
"""Simple moving average for list. Window is the amount to average."""
count = 0
averages = []
while count < len(items) - window + 1:
values = items[count: count + window]
avg = int(sum(values)/window)
averages.append(avg)
count += 1
return averages
import cv2
def img_show_components(labels): # Shows the different marks by assigning random colors to them.
# Map component labels to hue val
label_hue = np.uint8(179*labels/np.max(labels))
blank_ch = 255*np.ones_like(label_hue)
labeled_img = cv2.merge([label_hue, blank_ch, blank_ch])
# cvt to BGR for display
labeled_img = cv2.cvtColor(labeled_img, cv2.COLOR_HSV2BGR)
# set bg label to black
@MaddoxRauch
MaddoxRauch / multiword_replace.py
Created December 7, 2021 02:35
Replace multiple words with new words. Parameters are the text to be edited and dictionary of words to be replaced dictionary names are replaced with corresponding values.
import re
def multiword_replace(text, word_dict):
"""Replaces multiple words using dictionary. Dictionary names found are replaced with their corresponding values."""
rc = re.compile('|'.join(map(re.escape, word_dict)))
def translate(match):
return word_dict[match.group(0)]
return rc.sub(translate, text)
@MaddoxRauch
MaddoxRauch / send_texts.py
Created December 7, 2021 02:29
Send text messages using email servers and SMS gateways.
import smtplib
def send(message: str, username: str, password: str, phone: str) -> None:
"""Sends messages to phone using Gmail servers."""
# Some SMS gateways may be outdated or different, i.e. @txt.att.net was @sms.att.net
carriers = {
'att': '@txt.att.net',
'tmobile': '@tmomail.net',
'verizon': '@vtext.com',
@MaddoxRauch
MaddoxRauch / pyanal.py
Last active November 19, 2021 04:21
Just add import and class to python file, then you can use as a wrapper to functions using '@timetrack' to see how long it takes to execute. Or keep file separate and use 'from pyanal import TimeTrack' and use as wrapper.
import timeit
class TimeTrack:
def __init__(self, func):
start = timeit.default_timer()
func()
stop = timeit.default_timer()
print("Time to get %s" % (stop-start))
@MaddoxRauch
MaddoxRauch / multiexpressionbutton.py
Last active August 3, 2022 12:00
Kivy Multi-Expression Button (on_long_press, on_single_press, on_double_press events)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
MultiExpressionButton extends the Kivy Button object and adds three different events; on_single_press,
on_double_press, and on_double_press. DOUBLE_PRESS_TIME determines how long it will wait for the second press before
concluding it is a single press and LONG_PRESS_TIME determines how long the button must be held down to be considered
a long press.
"""
from kivy.uix.button import Button
@MaddoxRauch
MaddoxRauch / Kivy Aligned TextInput
Last active November 19, 2021 04:21 — forked from MelleB/Kivy Aligned TextInput
Kivy Aligned Text Input - halign + valign for TextInput
Note: This just aligns the position of the textblock, not the text itself.