Skip to content

Instantly share code, notes, and snippets.

View melroser's full-sized avatar

melroser melroser

View GitHub Profile
@melroser
melroser / guestbook.gif
Last active May 23, 2024 06:36
Guestbook
<img src="https://i.pinimg.com/originals/e0/32/62/e03262a7025f3f77f39954a264d74202.gif" alt="this slowpoke moves" width="250" />
@melroser
melroser / resume.json
Last active April 29, 2024 12:25
Resume
{
"$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 professional with over a decade of industry experience designing, implementing, deploying, and maintaining software platforms for Fortune 500 companies. Seeking a software engineering role where I can work on impactful projects at a company that encourages a culture of learning",
"website": "https://melroser.com",
"email": "rob@devs.miami",
"phone": "305-859-1567",
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>"