This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Nice command to convert the readme.txt in the current | |
# directory to a readme.md | |
alias wp2ghreadme='python /Users/simon/Scripts/wp2github/wp2github.py --source ./readme.txt --target ./readme.md; echo "readme.md created"; subl ./readme.md;' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Code For The People are firm believers, and enthusiastic participants in the Open Source movement | |
generally and WordPress in particular. We build WordPress sites which are as easy to manage as a | |
blog, but can handle the kind of traffic burst you get when you tweet a link to two million | |
fans. One of only two WordPress.com VIP Featured Partners outside the US, our clients span the | |
length and breadth of UK society, from Stephen Fry to the Rolling Stones, via Oxford University | |
and the UK Government. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gad-admin-options.php b/gad-admin-options.php | |
index 09c3f2f..e6afefb 100644 | |
--- a/gad-admin-options.php | |
+++ b/gad-admin-options.php | |
@@ -67,7 +67,7 @@ class GADAdminOptions | |
function admin_plugin_menu() | |
{ | |
- add_options_page(__('Google Analytics Dashboard Options'), __('Google Analytics Dashboard'), 8, __FILE__, array(&$this, 'admin_plugin_options')); | |
+ add_options_page(__('Google Analytics Dashboard Options'), __('Google Analytics Dashboard'), 'manage_options', __FILE__, array(&$this, 'admin_plugin_options')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gad-admin-options-ui.php b/gad-admin-options-ui.php | |
index 4ceae90..dc91950 100644 | |
--- a/gad-admin-options-ui.php | |
+++ b/gad-admin-options-ui.php | |
@@ -191,8 +191,9 @@ class GADAdminOptionsUI | |
<?php | |
} | |
- function display_admin_handle_login_options($gauth) | |
+ function display_admin_handle_login_options() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Automattic Updater | |
Description: Get updates to Automattic code from GitHub | |
Version: 1.0 | |
Author: Code for the People | |
Author URI: http://codeforthepeople.com/ | |
Copyright © 2013 Code for the People Ltd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Simon Log.app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get a field key from a field name. Why isn't this an | |
* ACF API function? | |
* | |
* @param string $field_group The name of the field_group to search | |
* @param string $field_name The name of the field to find a key for | |
* @return string|bool The field key if found, else false | |
* | |
* @author Simon Wheatley | |
**/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Takes a composer controlled repo and pushes a | |
# composed PACKAGE into a branch called "PACKAGE". | |
( | |
# SANITY CHECKS | |
# Check for uncommitted changes, and refuse to proceed if there are any | |
if [ -n "$(git ls-files . --exclude-standard --others)" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* | |
* @package | |
**/ | |
class GlowSyndication { | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Remove all files called example.html and | |
# containing the string | |
# "<title>Genericons</title> | |
# | |
# Copyright Automattic Inc, 2015 | |
# | |
# This script is free software, and is released under the | |
# terms of the GPL version 2 or (at your option) any |