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
| $ git checkout feature/my-feature | |
| $ git rebase -i master | |
| $ git checkout master | |
| $ git merge --ff-only feature/my-feature | |
| $ git push origin master | |
| $ git branch -d feature/my-feature |
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
| $ git checkout feature/my-feature | |
| $ git rebase -i master | |
| $ git checkout master | |
| $ git merge --no-ff feature/my-feature | |
| $ git push origin master | |
| $ git branch -d feature/my-feature |
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 os | |
| meses = [ | |
| 'enero','febrero','marzo','abril','mayo', 'junio', 'julio', | |
| 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre', | |
| ] | |
| resultados = [] | |
| for mes in meses: | |
| read_file = pd.read_excel(os.path.join(path, mes, + ".xlsx"), "Hoja1") |
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
| [ | |
| { | |
| "state":"Alaska", | |
| "latitude":61.3850, | |
| "longitude":-152.2683 | |
| }, | |
| { | |
| "state":"Alabama", | |
| "latitude":32.7990, | |
| "longitude":-86.8073 |
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
| export const openInNewTab = (url: string) => { | |
| const newWindow = window.open(url, '_blank', 'noopener,noreferrer') | |
| if (newWindow) newWindow.opener = null | |
| } |
OlderNewer