ssh ubuntu@{ip}
Enter yes to prompt
sudo adduser {username}
and follow prompts
provider "aws" { | |
region = "${var.region}" | |
} | |
### VPC | |
# Fetch AZs in the current region | |
data "aws_availability_zones" "available" {} | |
resource "aws_vpc" "datastore" { | |
cidr_block = "172.17.0.0/16" |
{ | |
roomInfo: { | |
zone: { | |
name: 'Bandit Hideout', | |
id: 1 | |
}, | |
y: 1, | |
x: 4, | |
shops: [], | |
players: [], |
Devinar Ideas: | |
CSS Layout: | |
- Holy Grail | |
- Sidebar | |
- 2 Sidebars | |
CSS Transitions | |
CSS Animations | |
Spinners & Loading Screens |
Phoenix 1.4 ships with exciting new features, most notably with HTTP2 support, improved development experience with faster compile times, new error pages, and local SSL certificate generation. Additionally, our channel layer internals receiveced an overhaul, provided better structure and extensibility. We also shipped a new and improved Presence javascript API, as well as Elixir formatter integration for our routing and test DSLs.
This release requires few user-facing changes and should be a fast upgrade for those on Phoenix 1.3.x.
The mix phx.new archive can now be installed via hex, for a simpler, versioned installation experience.
To grab the new archive, simply run:
docker-compose.yml
version: '3'
services:
db:
image: postgres:10.0-alpine
env_file: .env
volumes:
- pg-data-volume:/var/lib/postgresql/data
ports:
Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt. Use bcrypt.
These are all general purpose hash functions, designed to calculate a digest of huge amounts of data in as short a time as possible. This means that they are fantastic for ensuring the integrity of data and utterly rubbish for storing passwords.
How? Basically, it’s slow as hell. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be.
Ubuntu: https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04
OSX: https://store.docker.com/editions/community/docker-ce-desktop-mac
Ubuntu users create Dockerhub account at: https://hub.docker.com/ For Mac users, your Dockerhub credentials should have been created when you registered for Docker Store.