Skip to content

Instantly share code, notes, and snippets.

View skwid138's full-sized avatar
🐅
Tiger Style

Hunter Rancourt skwid138

🐅
Tiger Style
View GitHub Profile
@skwid138
skwid138 / nvm_commands.sh
Last active November 3, 2020 16:21
# NVM cheat sheet of use useful commands [Forked From Here](https://gist.github.com/chranderson/b0a02781c232f170db634b40c97ff455)
# ZSH may require the versions to be in quotes (see comments below)
# Check version
node -v || node --version
# List installed versions of node (via nvm)
nvm ls
# Install specific version of node
nvm install 6.9.2
/****************
***** FONT ******
***************/
body {
font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif !important;
font-size: 1rem !important;
font-weight: 300;
line-height: 1.5;
color: #83ACD8 !important;
}
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage Twenty_Seventeen
@skwid138
skwid138 / git-check.sh
Last active June 23, 2020 15:36
Git How far local branch is behind/ahead of remote branch
#!/bin/bash
###
# Use -r to compare against a remote branch
###
## Example w/o this script
## git fetch --all | git rev-list --left-right --count origin/master...master
$USAGE="$0 [-r <remote branch>]"
@skwid138
skwid138 / accept-github-invites.sh
Last active June 23, 2020 15:35
Accept all invitations to collaborate on Github
#!/bin/bash
# must install JQ
# https://stedolan.github.io/jq/download/
# on OSX brew install jq
# must set Github Personal Access Token with full repo access only
### Set named arguments -t
while getopts ":t:" opt; do
@skwid138
skwid138 / wp-ngrok.md
Last active June 23, 2020 15:35
WordPress local development with ngrok.

WordPress Local Development and ngrok (macOS)

Setup

  • Install ngrok with hombrew brew cask install ngrok
  • Run ngrok for your local site ngrok http -host-header=my.site.local 80
  • Copy the https url that appears in the terminal and use it below to replace the ngrok.io url
  • If using the standard WP setup add the following to the bottom of wp-config.php
<?php
// Add a value if using NGROK
@skwid138
skwid138 / fortune-cowsay-lolcat.md
Last active June 23, 2020 15:33
When you open new shell/terminal window on macOS show cowsay with a fortune in rainbow colors.

Fortune with random Cowsay character and lolcat

  • On macOS using Homebrew run the following to install the packages

    brew install cowsay fortune lolcat

  • Next add the following to ~/.bash_profile

# If brew installed fortune, cowsay, and lolcat
# Upon opening a new shell show a cowsay character with a random forutune in rainbow colors

PHP Memory Limit

In PHP Script

  • Specified ammount of memeory ini_set('memory_limit','2048M');
  • Unlimited memory ini_set('memory_limit', '-1');

In WordPress