If you see this, gubatron.com has successfully moved to Amazon Web Services.
Related Posts
How to reset Mac USB
Your Mac won’t recognize your USB device until you reset, what a pain in the ass right? Open Activity Monitor Search for “usbmuxd” Terminate Process (You will need an Adminstrator password) Re-Insert your USB device, it should be recognized now. Worked everytime for Bose USB Audio.
How to use environment variables in your Eclipse project Run Configuration
Say you have some environment variables that you’d love to use as arguments of an executable in your project. 1. Go to “Run Configurations” 2. Click on the “Environment” tab. 3. Click the “Select” button. 4. A list with all of your environment variables will be shown. Choose the environment variables you need for this […]
s3cmd – how to put files with expiration on S3/CloudFront #AWS #s3
[bash]s3cmd put –add-header "Cache-Control: 604800" -P ./* s3://mybucket.com/path/to/files/[/bash] If you have your CloudFront Distribution pointed to your S3 bucket, files will expire after the number of seconds specified in Cache-Control have passed. You will need the wonderful s3cmd tool