Skip to content

Instantly share code, notes, and snippets.

View kuchi's full-sized avatar

Anthony Rynes kuchi

View GitHub Profile
@huytd
huytd / wordle.md
Last active May 16, 2024 20:39
Wordle in less than 50 lines of Bash

image

How to use:

./wordle.sh

Or try the unlimit mode:

@TheOldMyronSiren
TheOldMyronSiren / dpgDonutGraph.py
Created October 13, 2021 15:09
Wrapper for creating a donut graph to be used with DearPyGUI
import matplotlib.pyplot as plt
from matplotlib.backends.backend_agg import FigureCanvasAgg
import dearpygui.dearpygui as dpg
import numpy as np
class donutGraph():
def __init__(self,width:int=500,height:int=500,dpi:int=100,tightLayout:bool=True,pad:int=0,colors:list=None,labels:list=[],values:list=None,background:str=None,labelSize:int=14,labelColor:str="white"):
"""Creates a donut graph with matplotlib and returns it has an image for use as a texture in DearPyGUI.
Attributes:
@betrcode
betrcode / README.md
Created June 24, 2014 06:36
Using Python to check if remote port is open and accessible.
@eabait
eabait / charting.libraries.md
Last active July 13, 2017 04:34
Charting Libraries