Skip to content

Instantly share code, notes, and snippets.

View ClayMav's full-sized avatar

Clay McGinnis ClayMav

View GitHub Profile
@ClayMav
ClayMav / config
Created October 29, 2017 19:20
Sway Config
# Default config for sway
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod1
@ClayMav
ClayMav / bucket-sort-visualization.tex
Created April 3, 2018 14:38
Visualize Bucket Sort in Latex
\begin{tabular}{|c|ccc}
0\tikzmark{a2} & \tikzmark{h2} & & \\
1\tikzmark{b2} & \tikzmark{i2}0.22 & & \\
2\tikzmark{c2} & \tikzmark{j2}0.31\tikzmark{o2} & \tikzmark{q2}0.42 & \\
3\tikzmark{d2} & \tikzmark{k2}0.45 & & \\
4\tikzmark{e2} & \tikzmark{l2}0.71 & & \\
5\tikzmark{f2} & \tikzmark{m2}0.73\tikzmark{p2} & \tikzmark{r2}0.79 & \\
6\tikzmark{g2} & \tikzmark{n2} & & \\
\end{tabular}
\begin{tikzpicture}[overlay, remember picture, yshift=.25\baselineskip, shorten >=.5pt, shorten <=.5pt]
@ClayMav
ClayMav / directory-challenge.md
Created August 27, 2019 20:46
Multirotor Robot - Directory Assignment Description

Multirotor Directory Assignment

Description

For this assignment, you will be creating a Python 3.X program which will be accessible via the command line (CLI). This application will be capable of storing and accessing a directory of things, the things of which you may choose for yourself.

Objectives

After completing this assignment, you should have a solid understanding of:

  • Dictionary types
  • Class/Object paradigms
  • Built in Python functions