This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Twitch / Vim Chat Integration | |
```vimrc | |
Fraq zft | |
<leader>tw | |
Copy last 5 msgs | |
<leader>tr | |
Search msgs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]): |