Skip to content

Instantly share code, notes, and snippets.

View helen's full-sized avatar
🥇
#first-name-club

Helen Hou-Sandi helen

🥇
#first-name-club
View GitHub Profile
@helen
helen / spaceship_prompt_svn.sh
Last active September 11, 2020 03:12
I still do stuff with Subversion so here's what I have to add a tiny amount of info to my Spaceship prompt
# 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
@helen
helen / gh-pr-branch.txt
Last active March 6, 2018 23:20
Making changes to a GitHub PR branch on a fork
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
@helen
helen / better-wp.php
Last active December 16, 2016 18:29
Make WordPress Great Again
<?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,
{
"color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme",
"detect_slow_plugins": false,
"drag_text": false,
"file_exclude_patterns":
[
"*.min.*",
".DS_Store"
],
"font_face": "SourceCodePro-Light",
@helen
helen / keybase.md
Last active April 12, 2016 16:28
Keybase

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:

@helen
helen / wp-trac-list.md
Last active December 23, 2015 20:59
WP Trac hit list

WP Trac Hit List

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.

Tickets

  • #25408: Ability to specify that a list table column is "primary"
  • #26302: Specify display priority for list table columns
  • #25284: Support tax queries using term_taxonomy_id without specifying a taxonomy
  • #24859: Media Library does not have a loading indicator
#!/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
@helen
helen / .bashrc
Last active January 26, 2024 19:49
My ~/.bashrc
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';
@helen
helen / repeatable-fields-metabox.php
Created January 11, 2012 04:42
Repeating Custom Fields in a Metabox
<?
/**
* 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() {