Skip to content

Instantly share code, notes, and snippets.

View dukesnuz's full-sized avatar

David Petringa dukesnuz

View GitHub Profile
@dukesnuz
dukesnuz / Deploy-a-Vue.js-App-to-Digital-Ocean-Using-Github.md
Last active July 22, 2022 09:54
How-to-Upload-a-Vue.js-App-to-Digital-Ocean-With-Github.md
  # How to upload a Vue.js App to Digital Ocean With Github
 
    In this tutorial we will upload a Vue.js app from local development to a  
    [Digital Ocean](https://m.do.co/c/3ec7cdf44173) Droplet
    This tutorial assumes you already have a Digital Ocean Droplet, a Github account and 
    your [Vue.js](https://vuejs.org/v2/guide/installation.html)
    app is connected to a github repository with a master branch  

  1. Open your text editor and navigate to your Vue.js app. Open .gitignore. The /dist folder may not be 
     commented out. Comment this out by type # before dist/. So it will look like #dist/. This will allow
@dukesnuz
dukesnuz / vscode_shortcuts.md
Created November 1, 2019 16:01 — forked from bradtraversy/vscode_shortcuts.md
Helpful shortcuts for VSCode

VSCode Shortcuts

List of helpful shortcuts for faster coding

Official List of all commands

Open/View

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

@dukesnuz
dukesnuz / httpd.conf
Created September 30, 2017 16:41
httpd.conf
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do. They're here only as hints or reminders. If you are unsure
@dukesnuz
dukesnuz / SassMeister-input-HTML.html
Created July 9, 2016 19:08 — forked from dpheitmeyer/SassMeister-input-HTML.html
Starting Point for "Working with Sass" exercise
<nav id="sitenav">
<ul>
<li id="nav-home"><a href="#">Home</a>
</li>
<li id="nav-registration"><a href="#">Registration</a>
</li>
<li id="nav-course"><a href="#">Course&#160;Map</a>
</li>
<li id="current"><a href="#">Results</a>
</li>