Jack
Jack
Zeit's Hyper has same issues @extensionsapp Didn't make a difference in hyper at least. Iterm2 on the other hand is perfect!
I can reliably reproduce this on yabai v4 and latest Chrome. It's usually quite infrequent but when using gmail I get it a few times per day. I can reliably...
``` const KEYCODES = { ENTER: 13 }; document.addEventListener('keydown', function(event) { if (event.which === KEYCODES.ENTER) { //... } } ``` When u wish actual enums existed xD
@toddmantell Enums can not be changed. Objects can be, unless you freeze them. That's the only behavioural difference I can think of. Other than that, aesthetics, I guess.
I have seen the same issue when trying to filter by tags + branches. It works fine if i only filter by tags. Is it the case that GitHub's filtering...
@EyePulp @BurntCaramel +1 Is it worth just putting a note in the readme that month can be achieved with 28 days or 4 weeks?
You can use any Kafka client i think
set PATH in scripts/ files to `PATH=/opt/homebrew/bin/:$PATH`. > /usr/local for macOS Intel, /opt/homebrew for Apple Silicon and /home/linuxbrew/.linuxbrew for Linux from https://docs.brew.sh/Installation
I've had to `echo "" >> ~/.ssh/known_hosts` after `shimataro/ssh-key-action` to `~/.ssh/known_hosts`, otherwise when the next entry to `~/.ssh/known_hosts` is added (automatically) it is clobbered onto the same line. ``` -...
Some further detail..  Branch - https://github.com/jacktuck/test-clone-bitbucket-in-actions/tree/test Action - https://github.com/jacktuck/test-clone-bitbucket-in-actions/runs/981813541?check_suite_focus=true Notice `known_hosts` has 2 hosts on a single line: > bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw== > |1|2FtTJRZ200SPXLQCxNP2/9V1HWs=|fsCeDD6DQl+/GmGaaIEXPjAm0oA= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw==$ The latter is...