Skip to content

Instantly share code, notes, and snippets.

View multiplehats's full-sized avatar
🎯
Focusing

Chris Jayden multiplehats

🎯
Focusing
View GitHub Profile
@multiplehats
multiplehats / audit-your-codebase.md
Created August 16, 2026 09:23 — forked from aarondfrancis/audit-your-codebase.md
A read-only, agent-orchestrated codebase audit prompt for data structures, state modeling, algorithms, and ownership.

Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.

This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.

You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.

  1. Establish the coverage contract

Inspect the repository and inventory every identifiable subsystem.

@multiplehats
multiplehats / DialogProvider.vue
Created January 10, 2022 19:11 — forked from wobsoriano/DialogProvider.vue
Vuetify + Composition API Dialog component that can be used globally
<template>
<div v-frag>
<slot />
<v-dialog
v-model="isOpen"
:max-width="options.width"
:persistent="options.persistent"
>
<v-card>
<v-card-title>{{ title }}</v-card-title>
@multiplehats
multiplehats / class.php
Created December 19, 2020 15:12 — forked from hlashbrooke/class.php
A complete, versatile options page class for any WordPress plugin
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
class WordPress_Plugin_Template_Settings {
private $dir;
private $file;
private $assets_dir;
private $assets_url;
private $settings_base;
@multiplehats
multiplehats / thrivecart-affiliate-link-cart-footer.html
Last active October 21, 2020 13:02
Allows to insert your own affiliate link on the ThriveCart footer logo
@multiplehats
multiplehats / everwebinar-deadlinefunnel.html
Last active September 22, 2020 10:22
Deadline Funnel x EverWebinar
<script>
/**
* Everwebinar x Deadline Funnel
* Checks for the Everwebinar Product Offers Popup (Settings >> Live >> Product Offers) and adds the email from the attendee to the URL.
* If no email is present it will default to the sales link set in the Product Offers setting.
* Ideally the link you set in the Product Offers setting is the DLF link without the ?em= query string in the URL.
* As confirmed by the DLF team, this will create a new tracking for that user. However, if that user clicks on an email later on, those 2 trackings will be merged into one.
*
* Author: Chris Jayden - chrisjayden.com
**/