Draw my age
This code was made by Adam Pearce (at http://bl.ocks.org/1wheel/07d9040c3422dac16bd5be741433ff1e ) and the data comes from Our World in Data https://ourworldindata.org/fertility/.
Vagrant.configure("2") do |config| | |
config.vm.box = "mvbcoding/awslinux" | |
config.vm.network "private_network", ip: "192.168.33.10" | |
config.vm.provision "shell", inline: <<-SHELL | |
sudo yum update -q -y | |
su - vagrant | |
wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh | |
chmod +x miniconda.sh | |
./miniconda.sh -b -p /home/vagrant/miniconda | |
echo 'export PATH="/home/vagrant/miniconda/bin:$PATH"' >> /home/vagrant/.bashrc |
Draw my age
This code was made by Adam Pearce (at http://bl.ocks.org/1wheel/07d9040c3422dac16bd5be741433ff1e ) and the data comes from Our World in Data https://ourworldindata.org/fertility/.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |