Skip to content

Instantly share code, notes, and snippets.

View mansour-gabteni's full-sized avatar

Mansour Gabteni mansour-gabteni

View GitHub Profile
@mansour-gabteni
mansour-gabteni / install_lamp_16.sh
Created February 20, 2018 21:53 — forked from ankurk91/install_lamp_ubuntu.sh
Ubuntu 16.04 - PHP development (php 7.1, MySQL 5.7, apache 2.4)
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
# Ubuntu 16.04 Dev Server
# Run like - bash install_lamp.sh
# Script should auto terminate on errors
echo -e "\e[96m Adding PPA \e[39m"
sudo add-apt-repository -y ppa:ondrej/apache2
.bluebtn {
padding: 0px 146px 0px 195px;
margin-left: 21px;
}
.countdown {
font-size: 26px;
font-weight: 700;
color: #ddd;
background: #fff;
class ComboItem
{
private String key;
private String value;
public ComboItem(String key, String value)
{
this.key = key;
this.value = value;
}