Skip to content

Instantly share code, notes, and snippets.

View nathanpitman's full-sized avatar
💭
I may be slow to respond.

Nathan Pitman nathanpitman

💭
I may be slow to respond.
View GitHub Profile
@nathanpitman
nathanpitman / EE2 dev conditional
Created October 28, 2011 13:40
If you're using ExpressionEngine 2 and you want to have a global variable which you can use to conditionally include content in a dev environment just paste this switch statement into your index.php file at around about line 95.
switch ($_SERVER['HTTP_HOST']) {
//development
case 'dev.example.com':
$assign_to_config['global_vars']['site_mode'] = 'dev';
break;
//default
default:
$assign_to_config['global_vars']['site_mode'] = 'live';
break;
}
@nathanpitman
nathanpitman / MY_Parser.php
Created September 14, 2012 09:31
MY_Parser Library extension with 'conditionals' for CodeIgniter
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* CodeIgniter
*
* An open source application development framework for PHP 4.3.2 or newer
*
* @package CodeIgniter
* @author Rick Ellis
* @copyright Copyright (c) 2006, EllisLab, Inc.
* @license http://www.codeignitor.com/user_guide/license.html
@nathanpitman
nathanpitman / pi.change_site.php
Created September 20, 2012 21:22
An ExpressionEngine plug-in to allow you to manually switch sites through the front end.
<?php
$plugin_info = array(
'pi_name' => 'Change Site URL',
'pi_version' =>'1.0',
'pi_author' =>'Nine Four Ltd',
'pi_author_url' => 'http://www.ninefour.co.uk/labs/',
'pi_description' => 'Changes the current site URL.',
'pi_usage' => Change_site::usage()
);
@nathanpitman
nathanpitman / gist:4038248
Created November 8, 2012 11:20
Responsive 'insets' / 'negative offsets' for Twitter Bootstrap
.inset12 {
margin-left: -940px;
}
.inset11 {
margin-left: -860px;
}
.inset10 {
margin-left: -780px;
}
@nathanpitman
nathanpitman / child-cat-count-ee
Last active January 3, 2016 09:59 — forked from zgordon/child-cat-count-ee
Modified to use category IDs instead of category URLs
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$plugin_info = array(
'pi_name' => 'Child Category Count',
'pi_version' =>'1.0',
'pi_author' =>'Nathan Pitman',
'pi_author_url' => 'http://ninefour.co.uk/labs',
'pi_description' => 'Returns number of child categories given a parent category ID',
@nathanpitman
nathanpitman / gist:8453950
Last active January 3, 2016 11:09
How to set Shuttle.app up as a convenient tool for connecting to a remote server with a single click from the menu bar.
How to set Shuttle.app up as a convenient tool for connecting to a remote server with a single click from the menu bar.
Install Homebrew (http://brew.sh/) by opening a new terminal window and pasting in:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Follow the prompts. After installation is complete install the 'sshpass' formula:
brew install https://raw.github.com/eugeneoden/homebrew/eca9de1/Library/Formula/sshpass.rb
@nathanpitman
nathanpitman / Auto Store SKU
Created March 28, 2014 16:23
Automatically populates the Expresso Store SKU field with the corresponding entry_id value on save if no custom value is specified.
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* ExpressionEngine - by EllisLab
*
* @package ExpressionEngine
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2003 - 2011, EllisLab, Inc.
* @license http://expressionengine.com/user_guide/license.html
* @link http://expressionengine.com
@nathanpitman
nathanpitman / charge_better_create_member_ext.php
Created July 3, 2014 09:56
Leverages https://github.com/joshfraser/PHP-Name-Parser to better populate ExpressionEngine member fields when using Charge 'create_member'
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* ExpressionEngine - by EllisLab
*
* @package ExpressionEngine
* @author ExpressionEngine Dev Team
* @copyright Copyright (c) 2003 - 2011, EllisLab, Inc.
* @license http://expressionengine.com/user_guide/license.html
* @link http://expressionengine.com
@nathanpitman
nathanpitman / gist:4d8512b78f03bbbe9cb7
Created September 16, 2014 13:19
Slow EE Category Query
Time: 0.1710
SELECT DISTINCT(exp_categories.cat_id), parent_id FROM exp_categories
LEFT JOIN exp_category_posts ON exp_categories.cat_id = exp_category_posts.cat_id
LEFT JOIN exp_channel_titles ON exp_category_posts.entry_id = exp_channel_titles.entry_id
WHERE group_id IN ('13','13','13') AND exp_category_posts.cat_id IS NOT NULL AND exp_channel_titles.channel_id IN ('1','8','5','6','10','11','13','18','14','15','16','19','20','22','41','42','30','31','33','34','35','36','37','39','40','43','44') AND exp_channel_titles.status != 'closed' AND exp_channel_titles.entry_date < 1410873364 AND (exp_channel_titles.expiration_date = 0 OR exp_channel_titles.expiration_date > 1410873364) AND parent_id = 0 ORDER BY group_id, parent_id, cat_order
#APP/libraries/Template.php L:1559 Channel::categories()
(function($){
$(function(){
var $form = $('#search'), // Search form
$target = $('#results'), // Results container
$rp = 'search/ajax-results'; // Template for results only
// Function to execute on success
var success = function(data, status, xhr) {
$target.html(data);
};