Skip to content

Instantly share code, notes, and snippets.

https://destinytracker.com/destiny-2/db/items/304659313?perks=474269988,3525010810,409831596,706527188,1546637391,4248210736,2323986101,4105787909,0,2285418970
https://destinytracker.com/destiny-2/db/items/1621558458?perks=878286503,839105230,1561002382,2450788523,957782887,4248210736,2323986101,1590375901,0,2285418970
https://destinytracker.com/destiny-2/db/items/1402766122?perks=1458010786,1047830412,3142289711,706527188,957782887,4248210736,2323986101,150943607,0,2285418970
https://destinytracker.com/destiny-2/db/items/1402766122?perks=1458010786,1332244541,3142289711,706527188,957782887,4248210736,2323986101,150943607,0,2285418970#fullchoke
https://destinytracker.com/destiny-2/db/items/3924212056?perks=2757685314,3250034553,3142289711,1168162263,1015611457,4248210736,2323986101,518224747,0,2285418970#rifled
@michaelgrosser
michaelgrosser / vagrantfile.rb
Last active November 7, 2017 11:11
Share Host AWS Credentials with Vagrant Guest
# Copy AWS credentials and config from host to guest
$aws_credentials_path = ENV['HOME'] + "/.aws/credentials"
$aws_config_path = ENV['HOME'] + "/.aws/config"
if File.file?($aws_credentials_path) && File.file?($aws_config_path) then
config.vm.provision "shell",
inline: "mkdir -p /root/.aws",
privileged: true
config.vm.provision "shell",
inline: "mkdir -p /home/nginx/.aws",