This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 % |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |