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
| """Compares existing strings.xml file with another xml file.* | |
| The script expects exactly two arguments, existing_file_path, and | |
| new_file_path, respetively. | |
| e.g., `python3 compare-translations.py strings-fr.xml more-strings-fr.xml` | |
| Any strings already found to be translated in the existing file will be | |
| removed from the new file, and the new file will be appended to the | |
| existing file. |
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
| ''' | |
| Python PoC to interact with COROS Training Hub. | |
| URL : https://training.coros.com/ | |
| This script retrieves COROS's activity list for 2022/12. | |
| $ python3 coros_activity_list.py | |
| date,name,sportType,totalTime,distance,calorie,trainingLoad | |
| 20221230,Foo Run,100,9538,14651.11,1266085,117 |
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
| # alacritty --class help-prompt -T help-prompt -e help-prompt.sh | |
| !/bin/bash | |
| echo "Here are your keybinds, my princess: | |
| As a note, keys like Shift, Alt, Ctrl, and the Windows key are considered \"modifiers\". | |
| It is common practice in tiling window managers like you have here to designate a | |
| modifier key (aka a Super key) as the main one for activating keybindings. Let's set | |
| the Windows key as your modifier and refer to it as \"mod\" from here on out. | |
| mod+Enter: Terminal |
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
| ||badexample.com^$important | |
| ||yt3.ggpht.com^$important | |
| ||ad-delivery.net^$important | |
| ||syndicatedsearch.goog^$important | |
| ||subscriptionsfirstparty-pa.clients6.google.com^$important | |
| ||taskassist-pa.clients6.google.com^$important | |
| ||moltron-pa.clients6.google.com^$important | |
| ||realtimesupport.clients6.google.com^$important | |
| ||www.googleadservices.com^$important | |
| /rr[0-9].*sn-j.*googlevideo.com/ |
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
| # | |
| # ~/.bash_alises | |
| # | |
| alias c='clear' | |
| alias r='fc -s' | |
| alias rr='fc -s -2' | |
| alias h=history | |
| alias cd..='cd ..' | |
| alias ls='ls --color=always' |