- Node JS
- Lighthouse https://github.com/GoogleChrome/lighthouse
- Lighthouse Batch https://github.com/mikestead/lighthouse-batch
<?php | |
include_once '../wp-load.php'; | |
$groups = acf_get_local_field_groups(); | |
$json = []; | |
foreach ($groups as $group) { | |
// Fetch the fields for the given group key | |
$fields = acf_get_fields($group['key']); |
var allLinks = document.links,links = [];for (var i=0; i<allLinks.length; i++) {var link = allLinks[i];links.push('"'+link.text+'"'+','+link.href);}document.write(links.join('<br>')); |
#!/bin/bash | |
# This Bash script requires WP CLI be installed and executeable as 'wp'. | |
# 1. Create your database and user as needed. | |
# 2. Create the directory you want WP to install in | |
# 3. 'cd' into that directory | |
# 4. Run this script | |
# IMPORTANT! This is a modified version of the base 5-minute install which removes | |
# and resets some of the default content and options. This is not meant to be used | |
# with existing WP installs or databases. |
#!/bin/bash | |
wp core update | |
wp plugin list | |
wp plugin update --all | |
wp core language update |
source ~/.profile | |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Credit: This profile is forked from Yosuke Hasumi's bash profile example: | |
# https://gist.github.com/yosukehasumi/fb5c97f661ee3d4e1b41049707606fb5 | |
# | |
# Sections: |
This is a Ruby gem which collects outgoing email messages from your app and displays them in a webmail portal.
The general install directions are provided on the site, however there are several variances with my own developement environment which have proved a challenge.