Skip to content

Instantly share code, notes, and snippets.

View craigiswayne's full-sized avatar

Craig Wayne craigiswayne

View GitHub Profile
@craigiswayne
craigiswayne / functions.php
Created September 20, 2018 10:27
How to Render YouTube Video in WordPress (given the URL)
<?php
$ytURL = https://www.youtube.com/watch?v=dQw4w9WgXcQ;
echo wp_oembed_get( $ytURL );
@craigiswayne
craigiswayne / install-wp-cli-composer-imagick.sh
Last active January 29, 2019 08:25
Install WP-CLI, Composer and Imagick on Digital Ocean WordPress Droplet (Ubuntu 16)
echo "Installing WP-CLI...";
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
php wp-cli.phar --info
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
echo "Installing Composer...";
sudo apt-get update;
sudo apt-get install curl php-cli php-mbstring git unzip -y;
cd ~;
@craigiswayne
craigiswayne / composer.json
Last active October 8, 2018 21:06
Requiring non composer package in composer
"repositories": [
{
"type": "package",
"package": {
"name": "vendor-name/package-name",
"version": "dev-master",
"type": "library",
"source": {
"url": "https://gitlab.com/vendor-name/package-name.git",
"type": "git",
@craigiswayne
craigiswayne / Gravity_Boots.php
Created July 10, 2018 15:03
Bootstrap 3 styles for Gravity Forms
if( !is_admin() && class_exists('\DOMDocument' ) ){
/**
* Checks if a gravity form has been submitted
* @return bool
*/
function form_submitted(){
return isset( $_POST['gform_submit'] ) && '1' === $_POST['gform_submit'];
}
@craigiswayne
craigiswayne / window.open.debug.js
Last active June 25, 2018 10:26
Debugging the window.open function
/**
* Debugging window.open function
* Overwrites the origin window.open function so that you can see the call stack
* And debug variables
* @see https://www.w3schools.com/Jsref/met_win_open.asp
*/
window.open = function( URL, name, specs, replace ){
console.group("Debugging the window.open function");
console.log("URL : " + URL);
console.log("name : " + name);
@craigiswayne
craigiswayne / README.md
Created June 8, 2018 12:44
How i tried to test my Travis Build Locally (for PHP)

How i tried to test my Travis Build Locally (for PHP)

TLDR; didn't work

docker run --name travis-debug -dit travisci/ci-garnet:packer-1512502276-986baf0 /sbin/init
docker exec -it travis-debug bash -l

From inside the docker container

@craigiswayne
craigiswayne / follow_url.sh
Created May 29, 2018 07:40
Follow Redirects on URL
URL=www.google.com
curl -sILk $URL;
@craigiswayne
craigiswayne / README.md
Created May 22, 2018 09:49
Nginx Verbose Access Log Format

The snippet below outputs a verbose version of the nginx access log

To use it, simply copy the contents of verbose-access.conf and paste it into your http block.

NB:

make sure to remove / comment out any existing access_log definitions such as access_log /var/log/nginx/access.log;

Example output:

@craigiswayne
craigiswayne / setup.sh
Last active May 20, 2018 09:43
Raspberry PI 3, OSMC and Plex Setup
###
# References https://craigiswayne.wordpress.com/2018/01/20/my-media-centre/
###
####
# Variables
####
PI_IP=192.168.8.112;
PI_USERNAME=osmc;
@craigiswayne
craigiswayne / extensibility.sh
Last active July 12, 2018 23:17
How Extensible is a WordPress Plugin
# Find all do_action's and add_action's
grep -En "(add|do)_action\(" . -R --context=2 --include="*.php"
# Find all apply_filter's and add_filter's
grep -En "(apply|add)_filters?\(" . -R --context=2 --include="*.php"