Skip to content

Instantly share code, notes, and snippets.

View amurrell's full-sized avatar

Angela Murrell amurrell

View GitHub Profile
@amurrell
amurrell / Alphabetized List
Last active May 23, 2017 19:16
Alphabetize list of items (cities)
var alphabetCities = {
init: function(regions, startLetter) {
this.addLetters(regions);
this.addLetterPicker(regions);
this.selectLetter(startLetter, regions)();
},
letters: [
'a', 'b', 'c', 'd', 'e',
'f', 'g', 'h', 'i', 'j',
@amurrell
amurrell / init-server.sh
Last active July 17, 2017 02:27
Bash Script for PHP-7.0, nginx, git, etc on Ubuntu 14.04 LTS Server
#!/bin/bash
# Run as root
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
apt-get update && \
apt-get install -y nano && \
@amurrell
amurrell / sed-collation-issue-fixes
Created August 19, 2017 00:25
Fix collation and character set error from old mysql
# Unknown collation: 'utf8mb4_unicode_520_ci'
sed -i'.bak' "s/utf8mb4_unicode_520_ci/utf8mb4_unicode_ci/g;" file.sql
# COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'utf8mb4'
sed -i'.bak' "s/utf8_general_ci/utf8mb4_unicode_ci/g;" file.sql
grep processor /proc/cpuinfo
@amurrell
amurrell / custom-post-hierarchy.php
Last active October 6, 2024 04:31
Allow wordpress posts to have hierarchy - figures out slugs
<?php
add_action('registered_post_type', 'make_posts_hierarchical', 99, 2);
/**
* Ensure posts post type is hierarchal and allows page attributes
*
* Initial Setup - Runs after each post type is registered
*/
function make_posts_hierarchical($post_type, $pto)