Really looking forward to working with these guys this year. https://youtu.be/njit-tAWIZQ. #mumfuddensuns #mumfordandsons #gigs #musicmusicmusic #garymullins #timkay

seen from Malaysia
seen from China
seen from China
seen from Canada
seen from Australia
seen from Qatar
seen from United Kingdom
seen from United Kingdom

seen from Canada

seen from Malaysia
seen from China

seen from United States
seen from China

seen from Malaysia
seen from China
seen from United States

seen from Sweden
seen from Australia
seen from China

seen from Hong Kong SAR China
Really looking forward to working with these guys this year. https://youtu.be/njit-tAWIZQ. #mumfuddensuns #mumfordandsons #gigs #musicmusicmusic #garymullins #timkay
Tim Kay Club Mix 2014 by TIM KAY http://ift.tt/1Iz6lsC @OfficialTrento
Old Notes on Static S3 Website Guide
Tim Kay's AWS command line tools
Simply download them, move to usr/bin/ and make executable
sudo mv ~/Downloads/aws sudo chmod +x /usr/bin/aws export S3_DIR=bucket
Example (if S3_DIR not set):
aws put [bucketName]/[object] [file] # leave off [object] for same name
Install s3fs (this seems to be the way to go)
Install notes
Unpack it
Install dependencies
change to ./s3fs-* dir
run ./configure --prefix=/usr
run make
run sudo make install
Setup the .passwd-s3fs (accessKeyId:secretAccessKey) file and start mounting
chmod 600 ~/.passwd-s3fs /usr/bin/s3fs bucketName /mnt/dirName
I found it best to create a new directory under /mnt and change the owner to the desired user
sudo mkdir /mnt/dirName sudo chown benjamin /mnt/dirName
To unmount
sudo umount /mnt/dirName
(Third Option) Install s3cmd (winner!!)
Install instructions
wget -O- -q http://s3tools.org/repo/deb-all/stable/s3tools.key | sudo apt-key add - sudo wget -O/etc/apt/sources.list.d/s3tools.list http://s3tools.org/repo/deb-all/stable/s3tools.list sudo apt-get update && sudo apt-get install s3cmd
Now that it is installed, run the configuration:
s3cmd ---configure
Use encryption and set a password. Test it out. Good to go.
Common commands:
s3cmd [-h, --help] s3cmd mb s3://BUCKET # make a bucket s3cmd put s3cmd ls s3cmd la s3cmd get s3cmd del s3cmd sync
DNS Settings
Point the naked domain A-record at the wwwizer service
Reference:
Step by step guide
Chris O's guide with naked domain redirect
HighScalability overview of implementation Pros/Cons
Further reading with Werner Vogels (CTO at amazon)
His original post