This file contains 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 | |
#################################################### | |
# Make sure `rename` is available on your system | |
#################################################### | |
# Exit on error, undefined and prevent pipeline errors, | |
# use '|| true' on commands that intentionally exit non-zero | |
set -euo pipefail | |
# The directory from which the script is running | |
readonly LOCALDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
readonly TARGET_DIR="$LOCALDIR/censo2020" |
This file contains 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 pandas as pd | |
# El dataframe de ejemplo | |
df = pd.DataFrame( | |
{'A':['toto', 'titi', 'tete', 'tete', 'titi', 'toto'], | |
'B':["ayer titi vio a toto", "Hola tete", "bye", "tititete", " ", "tite"]} | |
) | |
# La lista de todos los personajes de Cancion de Hielo y Fuego | |
got_dt = pd.read_csv("https://raw.githubusercontent.com/mathbeveridge/asoiaf/master/data/asoiaf-all-nodes.csv") |
This file contains 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
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(custom-enabled-themes (quote (wombat))) | |
'(display-time-mode t) | |
'(package-selected-packages | |
(quote | |
(pc-bufsw perspective projectile org-bullets auctex org-gcal use-package magit elpy))) |
This file contains 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
" Mi propia vimrc, copiada de un lado si, y otro tambien | |
" | |
" Julio Waissman Vilanova | |
" Pensado usando mvim, instalado desde HomeBrew | |
" Requerido por Vundle | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" Path e inicialización de Vundle |