By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
## Install NGINX | |
## when installing on Amazon Linux AMI, use: | |
$ sudo yum install nginx -y | |
## when installing on Amazon Linux 2 AMI, use | |
$ sudo amazon-linux-extras install nginx1.12 -y | |
## Install PHP and PHP-FPM | |
# for PHP version 7.1 use php71 and php71-fpm instead | |
$ sudo yum install php -y | |
$ sudo yum install php-fpm -y |
// I'd suggest you create an alias somewhere: | |
// alias uao=java --enable-preview --source 21 $HOME/bin/UAO.java | |
// RUN: uao $HOME/Downloads/demo.zip | |
import java.io.*; | |
import java.util.function.*; | |
import java.util.* ; | |
void main(String[] args) throws Exception { | |
var zipFile = new File(args[0]); |