Skip to content

Instantly share code, notes, and snippets.

View chuckrincon's full-sized avatar
🚀
building...

Chuck Rincón chuckrincon

🚀
building...
View GitHub Profile
@chuckrincon
chuckrincon / wordpress-valet-install.md
Created January 3, 2019 15:49 — forked from orumad/wordpress-valet-install.md
How to install Wordpress from command line in Valet

How to install Wordpress from command line in Valet

I use Valet as my local web development environment (PHP, Laravel, Wordpress, ...)

This gist is my own recipe to install Wordpress from the command line to use it with Valet. Maybe this is useful for you too.

Install 'WP-CLI' command line tool

@chuckrincon
chuckrincon / wordpress-valet-install.md
Created January 3, 2019 15:49 — forked from orumad/wordpress-valet-install.md
How to install Wordpress from command line in Valet

How to install Wordpress from command line in Valet

I use Valet as my local web development environment (PHP, Laravel, Wordpress, ...)

This gist is my own recipe to install Wordpress from the command line to use it with Valet. Maybe this is useful for you too.

Install 'WP-CLI' command line tool

@chuckrincon
chuckrincon / gotham.md
Created August 5, 2020 23:36 — forked from mfd/ gotham.md
Gotham font
https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css

<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">

@chuckrincon
chuckrincon / webp-convert-directory.sh
Last active December 6, 2023 00:10 — forked from tabrindle/webp-convert-directory.sh
Convert all files in directory to webp, with default params, or standard cwebp params passed from command
#!/bin/zsh
# Define the image types to search for
extensions=("*.jpeg" "*.jpg" "*.tiff" "*.tif" "*.png" "*.ico")
# Iterate over each image type
for type in "${extensions[@]}"; do
# Find files of the specified image type
find . -type f -iname "$type" | while read -r IMAGE; do
# Get the filename without extension