Skip to content

Instantly share code, notes, and snippets.

View lisantwi's full-sized avatar
🤓

Lisa Antwi Adjei lisantwi

🤓
  • Washington, DC
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
## Lisa Antwi Adjei
_Washington, DC · lisaantwi@gmail.com · 8148808836 · [www.github.com/lisantwi](www.github.com/lisantwi) · [lisantwi.github.io)_
**EDUCATION**
**George Washington University** _Washington, DC_
MS Information Systems Technology - GPA: 3.68
Relevant Courses: Structured Programming, Internet Computing, Information Systems Security,
Relational Databases, Web and Social Data Analytics. Aug 2017 - Aug 2019
const factorial = function(n) {
if(n == 0) {
return 1
} else {
return n * factorial(n - 1);
}
}
document.addEventListener('DOMContentLoaded', () => {
console.log("loaded")
fetchCountryData()
})
function fetchCountryData () {
fetch('http://api.worldbank.org/v2/country/US/indicator/NY.GDP.MKTP.CD?format=json')
.then(resp => resp.json())
.then(data => {
let years = data[1].map(year => year.date).reverse()
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Project</title>
<meta name="description" content="Basics Variables Lab in the Learn.co curriculum">
<meta name="author" content="Flatiron School">
</head>
@lisantwi
lisantwi / gist.rb
Last active July 11, 2019 04:39
updated fist
require 'net/http'
require 'open-uri'
require 'json'
require 'pry'
class GetProducts
URL = "https://makeup-api.herokuapp.com/api/v1/products.json?product_type=eyeshadow"
def get_products
require 'net/http'
require 'open-uri'
require 'json'
require 'pry'
class GetProducts
URL = "https://makeup-api.herokuapp.com/api/v1/products.json?product_type=eyeshadow"
def get_products
@lisantwi
lisantwi / Portfolio.html
Last active April 10, 2019 06:37
Portfolio
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">