Skip to content

Instantly share code, notes, and snippets.

View ricardoochoa's full-sized avatar

Ricardo Ochoa Sosa ricardoochoa

View GitHub Profile
@ricardoochoa
ricardoochoa / R_random_numbers_MWE.R
Created December 8, 2019 04:40
[Random numbers] Create random numbers in R #random
# Select random numbers from a list with no replacement
sample(x = 1:18, # vector with numbers to choose from
size = 18, # size of the sample
replace = F) # no replacement
@ricardoochoa
ricardoochoa / network_on_off.sh
Created March 16, 2020 21:52
Turn on / off your wifi network card in the Ubuntu terminal
# find the name of your wifi card
iwconfig
# if needed, install net-tools
sudo apt-get install net-tools
# turn it off
sudo ifconfig wlp2s0 down
# turn it on again
sudo ifconfig wlp2s0 up