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> |
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; | |
} |
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 |
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" | |
}); |
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 --> |