Skip to content

Instantly share code, notes, and snippets.

View kyletaylored's full-sized avatar
🍝
unfurling wet spaghetti

Kyle Taylor kyletaylored

🍝
unfurling wet spaghetti
View GitHub Profile
@kyletaylored
kyletaylored / wds-hello-world.php
Created March 23, 2022 21:03 — forked from Oceas/wds-hello-world.php
WDS WP-CLI 101 Complete
<?php
/*
Plugin Name: WDS Hello World
Plugin URI: https://webdevstudios.com/
Description: Teaching the basics of WP-CLI
Author: Web Dev Studios
Version: 1.0.0
Author URI: https://webdevstudios.com/
*/
class WDS_CLI {
@kyletaylored
kyletaylored / lift-example.js
Last active October 2, 2018 21:10 — forked from monan/www.crozerkeystone.org.user.js
Acquia Lift API example
// ==UserScript==
// @name www.crozerkeystone.org
// @namespace https://www.crozerkeystone.org/
// @version 0.1
// @description Implements Acquia Lift
// @author Mike Monan
// @match *://www.crozerkeystone.org/*
// @grant none
// @xrequire https://code.jquery.com/jquery-latest.js
// @copyright 2017 acquia.com
@kyletaylored
kyletaylored / dom-loaded-test.html
Last active September 17, 2018 21:10 — forked from passcod/dom-loaded-test.html
onload, readyState, and DOMContentLoaded
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function () {
console.log(''+(+new Date)+': Onload fired');
};
document.onreadystatechange = function () {
console.log(''+(+new Date)+': Ready state changed');
@kyletaylored
kyletaylored / Remove all git tags
Created July 11, 2016 20:08 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d