Skip to content

Instantly share code, notes, and snippets.

View ryanb8's full-sized avatar

Ryan Boyer ryanb8

  • Birmingham, AL
  • 09:33 (UTC -05:00)
View GitHub Profile
@ryanb8
ryanb8 / ethernet_or_wifi.5m.sh
Last active December 28, 2023 22:30
xbar plugin - Print active internet interface
#!/usr/bin/env bash
# A simple plugin for xbar to print the interface you are conntected to the internet with.
# See: https://github.com/matryer/xbar and https://xbarapp.com/
# Probably could be a plugin in xbar repo, TBD.
# Use case - sometimes my mac uses wifi when it shoudl use ethernet.
# Instructions:
# Name `ethernet_or_wifi.5m.sh`
# chmod +x it
@jordan-brough
jordan-brough / git-recent
Last active April 1, 2025 15:55
Git: Display a list of recently checked out branches/tags/commits
#!/usr/bin/env bash
# Source: https://gist.github.com/jordan-brough/48e2803c0ffa6dc2e0bd
# See also: https://stackoverflow.com/a/25095062/58876
# Download this script as "git-recent" (no extension), chmod it to be executable and put it in your
# path somewhere (e.g. /usr/bin). You can then use it via `git recent` from inside any git repo.
# Examples:
@rxaviers
rxaviers / gist:7360908
Last active April 24, 2025 13:49
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@killercup
killercup / pandoc.css
Created July 3, 2013 11:31
Add this to your Pandoc HTML documents using `--css pandoc.css` to make them look more awesome. (Tested with Markdown and LaTeX.)
/*
* I add this to html files generated with pandoc.
*/
html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}