Keybase proof
I hereby claim:
- I am helen on github.
- I am helen (https://keybase.io/helen) on keybase.
- I have a public key whose fingerprint is 1E3E 18E3 41AE 69A5 C228 D820 C3A0 B55E D825 43A9
To claim this, I am signing this object:
<? | |
/** | |
* Repeatable Custom Fields in a Metabox | |
* Author: Helen Hou-Sandi | |
* | |
* From a bespoke system, so currently not modular - will fix soon | |
* Note that this particular metadata is saved as one multidimensional array (serialized) | |
*/ | |
function hhs_get_sample_options() { |
<?php | |
/** | |
* WordPress Chosen Taxonomy Metabox | |
* Author: Helen Hou-Sandi | |
* | |
* Use Chosen for a replacement taxonomy metabox in WordPress | |
* Useful for taxonomies that aren't changed much on the fly and are | |
* non-hierarchical in nature, as Chosen is for flat selection only. | |
* You can always use the taxonomy admin screen to add/edit taxonomy terms. | |
* Categories need slightly different treatment from the rest in order to |
# You can put this in your .zshrc | |
# Custom Spaceship section for SVN | |
SPACESHIP_SVN_SHOW="${SPACESHIP_SVN_SHOW=true}" | |
SPACESHIP_SVN_PREFIX="${SPACESHIP_SVN_PREFIX="$SPACESHIP_PROMPT_DEFAULT_PREFIX"}" | |
SPACESHIP_SVN_SUFFIX="${SPACESHIP_SVN_SUFFIX="$SPACESHIP_PROMPT_DEFAULT_SUFFIX"}" | |
SPACESHIP_SVN_SYMBOL="${SPACESHIP_SVN_SYMBOL="🐢 "}" | |
SPACESHIP_SVN_COLOR="${SPACESHIP_SVN_COLOR="yellow"}" | |
spaceship_svn() { | |
[[ $SPACESHIP_SVN_SHOW == false ]] && return |
green=$(tput setaf 2) | |
yellow=$(tput setaf 3) | |
magenta=$(tput setaf 5) | |
reset=$(tput sgr0) | |
# This was not working with \w, which has since been changed to \W in favor of window title showing $PWD | |
# PROMPT_DIRTRIM=3 | |
export EDITOR='code --wait'; | |
export SVN_EDITOR='code --wait'; |
git remote add KZeni git@github.com:KZeni/admin-color-schemer.git | |
git fetch KZeni | |
git checkout --track KZeni/patch-1 | |
git commit | |
git push KZeni patch-1 |
<?php | |
// Inspired by http://jsfiddle.net/desandro/Ew6Zt/ | |
add_action( 'admin_head', function(){ | |
?> | |
<script> | |
jQuery(document).ready( function($) { | |
var colorTime = 0, | |
waveTheta = 0, | |
maxCount = 100, |
I hereby claim:
To claim this, I am signing this object:
This needs to be written down somewhere outside of my currently open browser tabs, and I see no reason not to share it. Inclusion in the list does not necessarily mean I'm working on a patch, just that it's on my mind. If you're looking for something specific to work on and are looking for a starting point, one of these might be for you.
#!/bin/bash | |
# args | |
MSG=${1-'deploy from git'} | |
BRANCH=${2-'trunk'} | |
# paths | |
SRC_DIR=$(git rev-parse --show-toplevel) | |
DIR_NAME=$(basename $SRC_DIR) | |
DEST_DIR=~/Sites/wp-plugins/$DIR_NAME/$BRANCH |