Skip to content

Instantly share code, notes, and snippets.

View amjohnson38's full-sized avatar

Angela Johnson amjohnson38

  • VA
View GitHub Profile
'use strict';
const util = require('util');
const fetch = require ('node-fetch');
const client_id = process.env.client_id; // Your client id
const client_secret = process.env.client_secret; // Your secret
exports.handler = (event, context, callback) => {
// done is called in order to send information back to the client
let done = (err, res) => {
if (err) {
@amjohnson38
amjohnson38 / city-or-state-population-tool-beta.markdown
Created March 18, 2017 18:45
City or State Population Tool-Beta

City or State Population Tool-Beta

A tool that allows users to retrieve population data by either using a specific city or state as a search paramater.

A Pen by Angela Johnson on CodePen.

License.

@amjohnson38
amjohnson38 / american-florist-website.markdown
Created February 15, 2017 13:21
American Florist Website
@amjohnson38
amjohnson38 / index.html
Created February 1, 2017 00:17
Javascript #30 Sort Without Articles
<html>
<head>
<meta charset="UTF-8">
<title>Dr. Seuss Book Titles</title>
</head>
<body>
<div class="book-list">
<h1>Dr. Seuss Book Titles </h1>
<ol class="books"></ol>
</div>
@amjohnson38
amjohnson38 / index.html
Last active January 27, 2017 18:36
Text Shadow Move With Mouse Movement
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Text Shadow Move With Mouse Movement</title>
</head>
<body>
<div class="text-area">
<div>
@amjohnson38
amjohnson38 / index.html
Last active April 25, 2017 23:37
Javascript #30 Slide In On Scoll
<html>
<head>
<meta charset="UTF-8">
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta name='author' content='AMJ Webservices, amjwebservices2@gmail.com'>
<meta name='description' content='Example web application showing pictures sliding in on scroll'>
<meta name='keywords' content='javascript, webdevelopment, website,'>
<title>Pictures Sliding In On Scroll</title>
@amjohnson38
amjohnson38 / index.html
Created December 10, 2016 15:10
Portfolio
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Portfolio</title>
</head>
<body>
<div id="siteContainer">
@amjohnson38
amjohnson38 / index.html
Created October 28, 2016 15:32
Simple Parallax Website Template
<html>
<body>
<div class="nav-container">
<div class="nav">
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#About">About</a></li>
<li><a href="#Services">Services</a></li>
<li><a href="#Contact">Contact</a></li>