Skip to content

Instantly share code, notes, and snippets.

View nathanfitzgerald's full-sized avatar

Nathan Fitzgerald nathanfitzgerald

View GitHub Profile
/* ckeditor configuration */
CKEDITOR.disableAutoInline = true;
CKEDITOR.on('instanceCreated', function(event) {
var editor = event.editor;
var element = editor.element;
if (element.is('div', 'h1', 'h2', 'h3', 'h4', 'h5', 'p', 'li')) {
editor.on('configLoaded', function() {
editor.config.allowedContent = true;
@nathanfitzgerald
nathanfitzgerald / gist:a3dd83e5ab82c176cd87
Last active August 29, 2015 14:01
f9core.sample.php
<?php
class Frequency9 {
/**
* @var ahDebug A reference to the ahDebug object
*/
public $debug = null;
/**
* @var modX A reference to the modX object.
*/
public $modx = null;
@nathanfitzgerald
nathanfitzgerald / gist:eb8c6dd2f61c14ccdb1b
Last active August 29, 2015 14:01
mia.success.sample.html
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Get Any Result You Want Online</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Nathan Fitzgerald">
<title>Marketing Timesaver</title>
@nathanfitzgerald
nathanfitzgerald / nginx.default.conf
Last active December 24, 2015 06:49 — forked from sumardi/nginx.default.conf
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI configured for wildcard domains and MODX Revolution
# 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 \