Skip to content

Instantly share code, notes, and snippets.

View vaibhav9392's full-sized avatar

Vaibhav Saxena vaibhav9392

View GitHub Profile
@neerajsohal
neerajsohal / setup.sh
Created April 28, 2014 08:10
Setup LAMP + composer + bower in Amazon EC2 Ubuntu 14.04 LTS
# update repo
sudo apt-get update
# upgrade and install latest updates
sudo apt-get upgrade
# generate UTF-8 lang
sudo locale-gen UTF-8
# install lamp
@Serhioromano
Serhioromano / backup.php
Last active February 20, 2021 10:43
AWS EC2 automatic volume daily snapshot.
#!/usr/bin/php -q
<?php
date_default_timezone_set('UCT');
$dryrun = FALSE;
$interval = '24 hours';
$keep_for = '10 Days';
$volumes = array('vol-9677d14a');
$api_key = 'AKI****EYUA';
$api_secret = 'IzMni****ct';