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
# 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 |
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
# 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 |