Skip to content

Instantly share code, notes, and snippets.

View dingman's full-sized avatar

Jon Dingman dingman

View GitHub Profile
function checkHttpStatus(url) {
if (!url) {
return 'No URL';
}
try {
var response = UrlFetchApp.fetch(url, {'muteHttpExceptions': true});
return response.getResponseCode();
} catch (e) {
return "Error";
Authored by @crswll
// Config
const inflatePlugin = function ({ addComponents, theme, variants, e }) {
const spacing = theme('spacing', {})
Object.entries(spacing).forEach(([name, padding]) => {
addComponents(
{
[`.${e(`inflate-${name}`)} > *`]: { padding },
Design
* https://www.colorbox.io/
This will be updated over time.
#!/usr/bin/env bash
# WP-CLI Back up Script to Amazon S3
# Source: https://www.jonathan.vc
# Author: Jonathan Dingman
# Adapted from Mike at WP Bullet
#define local path for backups
BACKUPPATH=/tmp/backups
#path to WordPress installations