Skip to content

Instantly share code, notes, and snippets.

View gugat's full-sized avatar

Gustavo Salazar gugat

  • Buk
  • Santiago - Chile
View GitHub Profile
@gugat
gugat / give_me_paremeter.sh
Created September 25, 2019 13:36
How to exit if no arguments are given to the script
#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo 'Give me a parameter :D'
exit 0
fi
@gugat
gugat / conteo_votos.R
Created February 11, 2021 14:35 — forked from loreabad6/conteo_votos.R
Diferencia entre @yakuperezg y @LassoGuillermo, tweets de @angiegomeza de los resultados del CNE.
library(rtweet)
library(tidyverse)
library(lubridate)
library(gganimate)
# Extraer tweets de Andrea Gomez
reconteo = search_tweets(
q = "angiegomeza AND Actualización AND Diferencia",
include_rts = F
)