Skip to content

Instantly share code, notes, and snippets.

View davidbegin's full-sized avatar

Begin davidbegin

View GitHub Profile
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
# 2020 - 3 - 17
## Resources
- <https://www.wikiwand.com/en/John_Backus>
- <https://www.wikiwand.com/en/Unix_domain_socket>
## Challenges
- st is crashing when I open it now
#!/usr/bin/bash
# Create a new detached Tmux Session and name is make_workflow
tmux new-session -d -s make_workflow
# Split the window horizontally
tmux split-window -h
# Resize the pane to be 20 smaller
tmux resize-pane -R 20
import random
import mingus.core.progressions as progressions
import mingus.core.chords as chords
import mingus.core.notes as notes
import mingus
# import mingus.core.diatonic as diatonic
# print(diatonic.get_notes("C"))
key_int = random.randint(0,12)
key = notes.int_to_note(key_int)
# Twitch / Vim Chat Integration
```vimrc
Fraq zft
<leader>tw
Copy last 5 msgs
<leader>tr
Search msgs
from abc import ABC, ABCMeta
import abc
import typing
from typing import TypeVar, Generic
T = TypeVar("T")
# THIS DOESN'T WORK as expected
# class Semigroup(ABC, Generic[T]):