Skip to content

Instantly share code, notes, and snippets.

View joelworsham's full-sized avatar

Joel Worsham joelworsham

View GitHub Profile
@joelworsham
joelworsham / gf-plugin-part.php
Created August 3, 2018 17:08
GF Plugin Exporting Spam
<?php
/**
* Class Lowry_GF_Exporting
*
* Customizes exporting entries. Specifically to include spam entries.
*
* @since {{VERSION}}
*/
// Exit if accessed directly
@joelworsham
joelworsham / ld-gb-user-grade.php
Created August 14, 2018 15:14
LearnDash Gradebook User Grade @ 1.3.6
<?php
/**
* Contains the grade for a given user.
*
* @since 1.0.0
*
* @package LearnDash_Gradebook
* @subpackage LearnDash_Gradebook/includes
*/
@joelworsham
joelworsham / proxyConfig.js
Created October 16, 2023 16:32
Rubrik MacOS Proxy PAC locahost -> postman mock
function FindProxyForURL(url, host) {
if (host === "localhost:3000") {
return "PROXY https://0ae9179a-3fc7-4862-ba27-c9366ed5724d.mock.pstmn.io; DIRECT";
}
return "DIRECT";
}