View Mac Homebrew from Snazzy Labs.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
credits & twitter: Quinn Nelson @SnazzyQ | |
youtube video: https://www.youtube.com/watch?v=Ym2pxzWpTNw | |
pastebin: https://pastebin.com/jV9XzPrs | |
**PRELIMINARY** | |
// Install Xcode Tools: xcode-select —install | |
// Install Homebrew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
**CASK** | |
//Install Cask brew install cask |
View codecracklepop.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<h2>Code CracklePop</h2> | |
<p id="print"></p> | |
<script> |
View linkedin_js_quiz_on_export.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const baz = () => "Hello, world!"; | |
export const foo = { | |
name: "Albert" | |
}; | |
export function bar(){ | |
return 42; | |
} |
View gist:48d177f501091b3b9b91755a5e0efa02
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const app = express(); | |
const mysql = require('mysql'); | |
const pool = mysql.createPool({ | |
connectionLimit : 10, | |
host: "localhost", | |
user: "yourusername", | |
password: "yourpassword" | |
}); |
View gist:0c7a0c716fd309ee2f13ad69f620e884
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Preloader Start --> | |
<div class="preloader--1 Preloader"> | |
<div class="preloader--1-spinners"> | |
<div class="preloader--1-spinner preloader--1-spinner-1"></div> | |
<div class="preloader--1-spinner preloader--1-spinner-2"></div> | |
</div> | |
</div> | |
<!-- Preloader End --> |