Skip to content

Instantly share code, notes, and snippets.

View popcorn245's full-sized avatar
👻

Bobby ^_^ popcorn245

👻
View GitHub Profile
@popcorn245
popcorn245 / package.json
Last active August 29, 2015 14:23
My standard Ionic Node.js dependen
{
"name": "madnessplatform",
"version": "1.0.0",
"description": "MadnessPlatform: The application stack used to develop at Madness Labs",
"scripts": {
"postinstall": "gulp install"
},
"devDependencies": {
"browser-sync": "^2.8.1",
"event-stream": "^3.3.1",
@popcorn245
popcorn245 / gulpfile.js
Last active March 12, 2016 23:30
My standard Ionic build process using Gulp 3. (REQUIRES: config.json)
/////////////////////////////////////
// REQUIRES
var bower = require('gulp-bower'),
browserSync = require('browser-sync').create(),
concat = require('gulp-concat'),
es = require('event-stream'),
fs = require('fs'),
gulp = require('gulp'),
intercept = require('gulp-intercept'),
jSass = require('gulp-json-sass'),
@popcorn245
popcorn245 / filters.php
Last active August 29, 2015 14:13
Seo4Ajax Filter for Laravel 4
/*
|--------------------------------------------------------------------------
| Seo4Ajax Filter
|--------------------------------------------------------------------------
|
| The following filter is used to load html from SEO4AJAX.com and
| serve it specifically to search engine / social networking bots.
| EXAMPLE - Route::get('/', array('before' => 'seo4ajax', 'uses' => 'controller@index'));
|
*/