
This file contains hidden or 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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Robert Melrose", | |
"label": "Full-Stack Software Engineer", | |
"image": "", | |
"summary": "Skilled Full-Stack Software Engineer with over a decade of experience designing, implementing, and maintaining software platforms for Fortune 500 companies. Proficient in JavaScript frameworks, object-oriented programming (OOP), and database design. Seeking a software engineering role where I can work on impactful projects at an innovative company", | |
"website": "https://melroser.com", | |
"email": "[email protected]", | |
"phone": "305-859-1567", |
This file contains hidden or 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
from requests_oauthlib import OAuth2Session | |
from flask import Flask, request, redirect, session, url_for | |
from flask.json import jsonify | |
import os | |
app = Flask(__name__) | |
# This information is obtained upon registration of a new GitHub | |
client_id = "<your client key>" |