Skip to content

Instantly share code, notes, and snippets.

@TG-Techie
TG-Techie / cs250_2023fall_hw3_p4_1_6.py
Last active October 21, 2023 00:27
CS250 2023Fall HW3 Problem 4.1.6
"""
CS250 2023Fall HW3 Problem 4.1.6
Author: Jonah Y-M
Copyright: (CC BY-SA 4.0) Attribution-ShareAlike 4.0 International
"""
import sys
assert sys.version_info >= (3, 12), "Python 3.12+ required."
@TG-Techie
TG-Techie / macOS-ref-info.md
Created May 26, 2022 19:20
macOS Reference Info

macOS Reference Info

Extended Attributes

Keywords: xattr

Extended attributes are metadata associated with a file in a os managed key-value store. These can be accessed/editeid with the xattr command. (may need installation?)

@TG-Techie
TG-Techie / simpleroundrect.py
Created February 6, 2021 19:00
CircuitPython displayio simple round rect using vectorio
# The MIT License (MIT)
#
# Copyright (c) 2021 Jonah Yolles-Murphy (TG-Techie)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions: