Skip to content

Instantly share code, notes, and snippets.

View jeffdodge's full-sized avatar
🏠
Working from home

Jeff Dodge jeffdodge

🏠
Working from home
View GitHub Profile
@jeffdodge
jeffdodge / keybase.md
Created August 7, 2022 02:56
keybase.md

Keybase proof

I hereby claim:

  • I am jeffdodge on github.
  • I am jeffdodge (https://keybase.io/jeffdodge) on keybase.
  • I have a public key ASAB_-g6zpROnrqoBqjX7m1Ya4O0tTzXv5A3tr6XiqSPugo

To claim this, I am signing this object:

@jeffdodge
jeffdodge / tailwind-webpack-setup.md
Created June 17, 2022 16:12 — forked from bradtraversy/tailwind-webpack-setup.md
Setup Webpack with Tailwind CSS

Webpack & Tailwind CSS Setup

Create your package.json

npm init -y

Create your src folder

Create a folder called src and add an empty index.js file. The code that webpack compiles goes in here including any Javascript modules and the main Tailwind file.

@jeffdodge
jeffdodge / laravel_valet_setup.md
Created June 17, 2022 16:12 — forked from bradtraversy/laravel_valet_setup.md
Laravel Valet install on mac

Laravel Valet Setup (Mac)

This will get you setup with Laravel & Valet on your Mac. Quentin Watt has a good video tutorial on getting setup here as well

Install Homebrew

Go to https://brew.sh/ and copy the command and run in your terminal

It will be something like this...

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH