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
| _5a34971da639c5b9eb49bedf7f462269.eboleta.sii.cl | |
| _dmarc.pjud.cl | |
| 10.inapi.cl | |
| 11.alo.mop.cl | |
| 11.inapi.cl | |
| 12.alo.mop.cl | |
| 12.inapi.cl | |
| 13.inapi.cl | |
| 14.alo.mop.cl | |
| 14.inapi.cl |
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
| resolvers: | |
| - 1.1.1.1 | |
| - 1.0.0.1 | |
| - 8.8.8.8 | |
| - 8.8.4.4 | |
| - 9.9.9.9 | |
| - 9.9.9.10 | |
| - 77.88.8.8 | |
| - 77.88.8.1 | |
| - 208.67.222.222 |
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
| # Install IPython: python3 -m pip install ipython | |
| import IPython | |
| from traitlets.config import get_config | |
| cfg = get_config() | |
| cfg.InteractiveShellEmbed.colors = "Linux" # syntax highlighting | |
| cfg.InteractiveShellEmbed.confirm_exit = False | |
| alias interacti IPython.embed(config=cfg) |
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/env bash | |
| { set +x; } 2>/dev/null | |
| IFS=$'\n' | |
| set "$@" $(find ~ -name ".*" ! -name ".CFUserTextEncoding" ! -type l -mindepth 1 -maxdepth 1) # dotfiles | |
| set "$@" $(find ~ -name "Google *" -mindepth 1 -maxdepth 1) # Google Drive | |
| set "$@" ~/git # store on github/etc :) | |
| set "$@" ~/node_modules | |
| set "$@" ~/Applications # install apps with brew cask |
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
| def write_to_clipboard(output): | |
| import subprocess | |
| process = subprocess.Popen('pbcopy', env={'LANG': 'en_US.UTF-8'}, stdin=subprocess.PIPE) | |
| process.communicate(output.encode()) |