Skip to content

Instantly share code, notes, and snippets.

View WolfpackWilson's full-sized avatar

Jack Wilson WolfpackWilson

  • North Carolina State University
  • Raleigh, NC
View GitHub Profile
@WolfpackWilson
WolfpackWilson / #Excel Queueing Macro
Last active April 12, 2024 05:34
A queuing macro script for excel.
A queuing macro script for excel.
@WolfpackWilson
WolfpackWilson / #Astar Algorithm
Last active April 12, 2024 05:35
An A* algorithm using numpy and written in Python.
An A* algorithm using numpy and written in Python.
@WolfpackWilson
WolfpackWilson / #OpenCV Modular Unit Test
Last active April 12, 2024 05:35
A test for creating modular units in OpenCV and placing them in an array.
A test for creating modular units in OpenCV and placing them in an array.
@WolfpackWilson
WolfpackWilson / #Multi-terminal Batch
Last active April 12, 2024 05:36
Batch process for beginning a multi-terminal workspace (git and jupyter notebook).
Batch process for beginning a multi-terminal workspace (git and jupyter notebook).
@WolfpackWilson
WolfpackWilson / tag.py
Last active August 22, 2020 22:01
Sample code from one of my projects for Python learning purposes. The purpose of this class is to format and create XML tag sets based on the information it is given.
import re
class Tag:
NAME_RE = re.compile(r'(^xml)|(^[0-9]*)', re.IGNORECASE)
def __init__(self, tag_name: str, **attrs):
"""Create and store XML tag information in the proper formatting.
@WolfpackWilson
WolfpackWilson / CATIA_extract_test.py
Last active July 9, 2020 18:07
A small script to test extracting information from CATIA via Python [instead of VBA]
import win32com.client
def get_catia():
catia = win32com.client.Dispatch("CATIA.Application")
return catia
def main():
cat = get_catia()