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

Develoment with multiple remote repos

This can occur when using composer to manage dependencies. From the dependency directory git remote -v will list origin as well as composer. The branch will appear as hash.

If the branch exists on the remote already you can run git fetch --all before setting up the tracking.

I believe both of these acomplish the same thing

  • git checkout [branch] --track [remote]/[branch]
  • git checkout -b [branch] [remote]/[branch]

Disable darkmode for MySQL WorkBench

defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes

@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
@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 / pro_tips.md
Created October 21, 2019 14:26
Here are a few tips to make you awesome at Cacher.

Getting Started

Snippets are the most useful when you want to re-use a command or a specific code pattern. Here are a few we have in our library:

  • How to delete a git tag
  • Nginx configuration for staging server
  • Crash handler AWS Lambda function

Label everything

@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 / 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>]"