Skip to content

Instantly share code, notes, and snippets.

View aljp's full-sized avatar

Adam Jacquier-Parr aljp

  • GalaBid
  • Australia
View GitHub Profile
@aljp
aljp / .env
Last active May 24, 2016 05:25
Given a .env file in the working directory with lines in the format ENV_NAME=ENV_VALUE, it will assign these environment variables
MY_ENV=MY_VAL
MY_ENV_2=MY_VAL_2
MY_ENV_3=MY_VAL_3
MY_ENV_WITH_EQUAL=MY_VAL=BROKEN
@khelll
khelll / install-redis.sh
Last active March 12, 2024 08:33
Installing Redis on Amazon Linux
#!/bin/bash
###############################################
# To use:
# chmod +x install-redis.sh
# ./install-redis.sh
###############################################
version=3.2.0
echo "*****************************************"
echo " 1. Prerequisites: Install updates, set time zones, install GCC and make"