Skip to content

Instantly share code, notes, and snippets.

View drew-wallace's full-sized avatar

Drew Wallace drew-wallace

  • Turner Broadcasting
  • Atlanta, GA
View GitHub Profile
// ==UserScript==
// @name Auto Check-In to Southwest Flights
// @namespace http://www.ryanizzo.com/southwest-auto-check-in/
// @version 1.8
// @author Nicholas Buroojy (http://userscripts.org/users/83813)
// @contributor Ryan Izzo (http://www.ryanizzo.com)
// @contributor JR Hehnly (http://www.okstorms.com @stormchasing)
// @contributor Trevor McClellan (github.com/trevormcclellan)
// @description Automatically check in to Southwest Airline flights at the appropriate time.
// @include https://www.southwest.com/air/check-in/index.html*
@drew-wallace
drew-wallace / jamf.md
Created August 27, 2019 18:53 — forked from a7ul/jamf.md
removing all restrictions on jamf managed macos device - Provided you have root access.

REMOVE JAMF RESTRICTIONS ON MAC

REMOVE ONLY RESTRICTIONS

sudo jamf removeMDMProfile removes all restrictions

sudo jamf manage brings back all restrictions and profiles

REMOVE ALL RESTRICTIONS AND DISABLE JAMF BINARIES WHILE KEEPING YOUR ACCESS TO VPN AND OTHER SERVICES

sudo jamf removeMDMProfile removes all restrictions

@drew-wallace
drew-wallace / getBroadcastDateRange.js
Created July 31, 2018 20:38 — forked from sonyseng/getBroadcastDateRange.js
Given a Gregorian Date, get the Broadcast Date Ranges for Week, Month, Quarter, and Year
(function (url, onLoad) {
var script = document.createElement('script');
script.addEventListener('load', onLoad);
script.src = url;
document.getElementsByTagName('head')[0].appendChild(script);
}('https://cdn.jsdelivr.net/npm/moment@2.19.2/moment.min.js', function () {
const fmt = 'MM/DD/YYYY';
function getBroadcastWeek(momentDate) {