Skip to content

Instantly share code, notes, and snippets.

View paulshryock's full-sized avatar
👨‍💻

Paul Shryock paulshryock

👨‍💻
View GitHub Profile
@paulshryock
paulshryock / ppvm.sh
Last active December 21, 2023 12:50
Paul's PHP Version Manager
#!/usr/bin/env bash
##
# Paul's PHP version manager. Runs on Homebrew.
#
# @param {string} $version PHP version to switch to or install.
# @return {void}
#
# @see https://github.com/shivammathur/homebrew-php
##
@paulshryock
paulshryock / placeholder-shown.css
Created March 1, 2019 15:00
CSS :placeholder-shown
/* Applying style to input applies to both input text and placeholder */
input { color: red; }
/* Applying style *just* to placeholder */
input::placeholder { color: blue; }
/* Applying style to input when placeholder is shown */
input:placeholder-shown { color: yellow; }
/* Applying style to input but *not* placeholder */