I hereby claim:
- I am ianmjones on github.
- I am ianmjones (https://keybase.io/ianmjones) on keybase.
- I have a public key ASAJqnJdznVxMNPRftyDQs0LIF-HFMavw8IBTB1mhcWpvwo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -e | |
| if [ ! -d src/amazon-s3-and-cloudfront ]; then | |
| echo 'This script must be run from the repository root.' | |
| exit 1 | |
| fi | |
| for PROG in composer find sed unzip |
| <?php | |
| namespace Mosaika; | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; | |
| } | |
| /** | |
| * Register our custom commands. |
| #!/usr/bin/env bash | |
| set -e | |
| if [ ! -d src/amazon-s3-and-cloudfront ]; then | |
| echo 'This script must be run from the repository root.' | |
| exit 1 | |
| fi | |
| for PROG in composer find sed |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| cd `dirname $0` | |
| source ./.env | |
| while getopts "u:p:h:d:ct:z:s:vkge:" ARG | |
| do | |
| case ${ARG} in | |
| e) TEST_ENV=$OPTARG;; |
| version: '2' | |
| services: | |
| # | |
| # Base services. | |
| # | |
| data: | |
| image: deliciousbrains/data@sha256:6fbc27c3c84c0e4d40b261e2c8246a2065a96916481ab475facfcd6e81548f31 | |
| labels: | |
| com.deliciousbrains.service: "data" | |
| com.deliciousbrains.project: "${COMPOSE_PROJECT_NAME}" |
| <?php | |
| /** | |
| * @link https://github.com/ianmjones/wp-cron-pixie | |
| * @since 1.0 | |
| * @package Cron_Pixie | |
| * | |
| * @wordpress-plugin | |
| * Plugin Name: WP Cron Pixie | |
| * Plugin URI: https://github.com/ianmjones/wp-cron-pixie |
| var CronPixie = CronPixie || {}; | |
| (function( $, CronPixie ) { | |
| 'use strict'; | |
| /** | |
| * A mixin for collections/models. | |
| * Based on http://taylorlovett.com/2014/09/28/syncing-backbone-models-and-collections-to-admin-ajax-php/ | |
| */ | |
| var AdminAjaxSyncableMixin = { |
| <?php | |
| /** | |
| * Returns list of cron schedules. | |
| * | |
| * @return array | |
| */ | |
| private function _get_schedules() { | |
| // Get list of schedules. | |
| $schedules = wp_get_schedules(); |
| <?php | |
| /** | |
| * Enqueues the JS scripts when the main dashboard page is loading. | |
| * | |
| * @param string $hook_page | |
| */ | |
| public function enqueue_scripts( $hook_page ) { | |
| if ( 'index.php' !== $hook_page ) { | |
| return; | |
| } |