Skip to content

Instantly share code, notes, and snippets.

@Fogggy
Fogggy / nginx.default.conf
Created August 7, 2019 19:59 — forked from sumardi/nginx.default.conf
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \
Artisan::command('drop-tables', function () {
if ($this->confirm("Dude, are you sure that you really want to drop all the tables in the database? All your data will be lost!") &&
$this->ask("Type 'drop tables' to confirm operation") == 'drop tables') {
Schema::dropAllTables();
/**
* Drop Functions
*/
@Fogggy
Fogggy / ViewController.swift
Last active August 23, 2016 06:49
UITableView. Add header to table section programmatically
class ViewController: UITableViewController {
let headerId = "headerId"
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
tableView.sectionHeaderHeight = 50
tableView.registerClass(MyTableHeader.self, forHeaderFooterViewReuseIdentifier: headerId)
@Fogggy
Fogggy / 0_reuse_code.js
Created August 23, 2016 06:25
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console