Skip to content

Instantly share code, notes, and snippets.

View gidgey's full-sized avatar
💭
I'm probably on Twitter @bridgetmwillard

Bridget Willard gidgey

💭
I'm probably on Twitter @bridgetmwillard
View GitHub Profile
@Shelob9
Shelob9 / bridget.css
Created February 16, 2018 18:28
Make the Caldera Forms submit button full width and orange For https://bridgetwillard.com/hire-bridget See: https://calderaforms.com/doc/button/
/*All Caldera Forms */
.caldera-grid .btn-default {
background-color: #e27737;
color: white;
width: 100%;
}
/*Just that one form (with the ID of CF59e795482d092) */
.CF59e795482d092 .btn-default {
background-color: #e27737;
@kevinwhoffman
kevinwhoffman / 2017-wordcamp-us-job-board.md
Last active December 9, 2018 19:09
2017 WordCamp US Job Board

The following table is a transcription of the job board at WordCamp US on December 1-3, 2017. The table includes a combination of individuals and companies that are either seeking jobs or hires related to WordPress.

Post Contact
Looking for affiliates to build church websites. aboundant.com
WordPress devs helping agencies and businesses. gtadev.ca
A full service digital agency can assist you with any of your WP needs. krishaweb.com
Web developer, WP, HTML, CSS, PHP. uark.edu
I do support. Hire me! kait.blog
I am a technical writer with WP and freelance writing experience. Nicole Plumlee Arguello, sites.uark.edu/blog
@aaroncampbell
aaroncampbell / twitter-build-list.sh
Last active November 3, 2017 21:56
Creates a list with all twitter users linked from a given URL. Requires https://github.com/sferik/t and you must have already authorized your Twitter account using it.
#!/usr/bin/env bash
# Load in our options
while getopts "u:l:d:a" option
do
case ${option} in
u) url=${OPTARG};;
l) list_name=${OPTARG};;
d) list_description=${OPTARG};;
a) append=1;;