Skip to content

Instantly share code, notes, and snippets.

View aaronheath's full-sized avatar

Aaron Heath aaronheath

View GitHub Profile
@aaronheath
aaronheath / original-function.php
Last active June 14, 2024 04:41
WP Function Takes HTML and Word List and Injects Links
function originalReplaceWordsAndLinks($wordsAndLinks, $string) {
foreach ($wordsAndLinks as $word => $data) {
// Regular expression pattern to find the word in the string (case-insensitive)
$pattern = '/\b' . preg_quote($word, '/') . '\b/i';
// Callback function to replace the word while preserving its case
$replacement = function($matches) use ($data) {
// Preserve the original case of the matched word
$target = $data['new_window'] ? 'target="_blank"' : '';
return '<a href="' . htmlspecialchars($data['url']) . '" ' . $target . '>' . $matches[0] . '</a>';
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
#!/usr/bin/env bash
##############################
## Laravel ##
##############################
# Migrate & Seed (Vagrant VM)
alias do_migrate_and_seed="cd /vagrant ; php artisan migrate:refresh --seed ; cd -"
# Migrate & Seed SLDM (Vagrant VM)
@aaronheath
aaronheath / php-upgrade-5.6.sh
Last active August 15, 2016 22:13
Personal php5.6 upgrade script
#!/bin/sh
## Upgrades Ubuntu 14.04 php5 package to php5.6
## Also includes several common php5.6 packages that I use
sudo apt-get remove -y php5
sudo add-apt-repository -y ppa:ondrej/php
sudo apt-get update