Skip to content

Instantly share code, notes, and snippets.

View charlesastwood's full-sized avatar

Charles Astwood charlesastwood

View GitHub Profile
arcot.com
clicksafe.lloydstsb.com
paypal.com
paypal.co.uk
secure.barclaycard.co.uk
securesuite.co.uk
verifiedbyvisa.barclays.co.uk
lloydstsb.com
@charlesastwood
charlesastwood / excel-missing-links.md
Created December 10, 2019 11:47
Fix Excel Missing links
@charlesastwood
charlesastwood / script.sh
Last active January 30, 2024 13:06
Install Symfony on AWS
sudo yum update
sudo yum install httpd24 php70 php70-cli php70-intl php70-gd php70-zip php70-xml php70-mysqlnd php70-mbstring php70-dom php70-soap php70-memcached memcached php70-fpm php70-opcache php70-mcrypt git
sudo service httpd start
sudo chkconfig httpd on
sudo groupadd www
sudo usermod -a -G www ec2-user
exit
sudo chown -R root:www /var/www
sudo chmod 2775 /var/www
@charlesastwood
charlesastwood / Vagrantfile
Created July 1, 2016 08:59
Vagrantfile for Ubuntu Symfony Setup
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
@charlesastwood
charlesastwood / Vagrant.bootstrap.sh
Last active July 1, 2016 14:56
Vagrant Ubuntu Setup for Symfony
#!/usr/bin/env bash
# ---------------------------------------
# Virtual Machine Setup
# ---------------------------------------
# Adding multiverse sources.
cat > /etc/apt/sources.list.d/multiverse.list << EOF
deb http://archive.ubuntu.com/ubuntu trusty multiverse
deb http://archive.ubuntu.com/ubuntu trusty-updates multiverse