Skip to content

Instantly share code, notes, and snippets.

View clairesarsam-wf's full-sized avatar

Claire Sarsam clairesarsam-wf

  • Workiva
  • Tempe, Arizona
View GitHub Profile
@imjasonh
imjasonh / markdown.css
Last active May 24, 2024 22:56
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}
@greglittlefield-wf
greglittlefield-wf / chrome-inspect.sh
Last active October 12, 2019 07:42
Chrome-inspect pages on adb-connected devices from the terminal
if [[ "$1" == "--help" ]]; then
echo "usage: $0 [-u page_url_substring] [-t page_title_substring]"
exit
fi
if ! builtin type -p chrome-cli &>/dev/null; then
echo chrome-cli is required to run this script.
echo You can use Homebrew to install it: "'brew install chrome-cli'"
exit 1
fi