First go at building buttons. A work in progress, using standards from css-chassis and material design.
A Pen by Christian Hapgood on CodePen.
curl -O https://wordpress.org/latest.zip | |
unzip latest.zip | |
mv wordpress site | |
rm latest.zip | |
//add this to your bash profile to install worpress to your desired folder | |
function wp-install() { curl -O https://wordpress.org/latest.zip && unzip latest.zip && mv wordpress $1 && rm latest.zip }; |
#add 'node_modules' to .gitignore file | |
git rm -r --cached node_modules | |
git commit -m 'Remove the now ignored directory node_modules' | |
git push origin master |
import java.util.Arrays; | |
import javax.swing.JList; | |
import javax.swing.JOptionPane; | |
public class Application { | |
//initialize 2D boolean array | |
boolean[][] seats = new boolean[4][4]; | |
//string array to hold the passengers and assigned seats ****Initialize so the Arrays.sort works***** |