I hereby claim:
- I am noraworld on github.
- I am noraworld (https://keybase.io/noraworld) on keybase.
- I have a public key whose fingerprint is D491 DABF 480A 29F0 B22D E586 6D59 C95E B487 3A43
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Toggle closed caption on watch.pokemon.com by pressing "c" key | |
| let count = 0 | |
| document.addEventListener('keydown', (event) => { | |
| if (event.key === 'c') { | |
| count++ | |
| if (count % 2 === 0) { | |
| document.querySelector('.vjs-menu-item.vjs-subtitles-menu-item').previousElementSibling.click() | |
| } |
| # This sample retrieves all the repositories that you have and that use even a little Python | |
| # It may take a little time to get the results | |
| # | |
| # You may change the following parameters: | |
| # | |
| # 1. Change "100" if you have more than 100 repositories | |
| # 2. Change "Python" if you want to find repositories in another language | |
| # | |
| gh repo list -L 100 | | |
| awk '{ print $1 }' | |
| Domain | Country Name |
|---|---|
| www.amazon.com.au | Australia |
| www.amazon.com.be | Belgium |
| www.amazon.com.br | Brazil |
| www.amazon.ca | Canada |
| www.amazon.cn | China |
| www.amazon.eg | Egypt |
| # frozen_string_literal: true | |
| def main | |
| dir = if ARGV.empty? | |
| '**/*' | |
| elsif ARGV.first.end_with?('/') | |
| "#{ARGV.first}**/*" | |
| else | |
| "#{ARGV.first}/**/*" | |
| end |