Skip to content

Instantly share code, notes, and snippets.

View nolds9's full-sized avatar
🎓
Always learning

Nicholas Olds nolds9

🎓
Always learning
  • Capital One
  • Ausitn, TX
View GitHub Profile
@nolds9
nolds9 / html_boilerplate.bash
Created February 17, 2016 21:26 — forked from jblakeman/html_boilerplate.bash
HTML Boilerplate Generator
# Output HTML boilerplate code to a file name specified by the first argument
# If no arguments are provided, outputs to index.html
# example:
# html_boilerplate example.html
html_boilerplate() {
local name="$1"
if [[ $name ]]; then
[[ $name != *.html ]] && name+=.html
@nolds9
nolds9 / gist:c93a94769c5f46be3785
Last active August 29, 2015 14:24
JavaScript Basic HW
// What is the return value of the below code sample? Provide a sentence or two of explanation.
typeof( 15 );
* 'number', 15 is an integer.
// What is the return value of the below code sample? Provide a sentence or two of explanation.
typeof( "hello" );
*'String'', there are characters between quotes.
<!DOCTYPE html>
<html>
<head>
<title>Nicholas Olds</title>
</head>
<body>
<header>
<h1>Nicholas Olds</h1>
<p>nolds9@yahoo | (410) 897-7223 | github.com/nolds9</p>
</header>