Skip to content

Instantly share code, notes, and snippets.

View caffeinatedMike's full-sized avatar

Michael Hill caffeinatedMike

View GitHub Profile
@caffeinatedMike
caffeinatedMike / README.md
Created July 27, 2022 03:18 — forked from vulcan25/README.md
Flask + sqlalchemy declarative base example

TODO: write readme

@caffeinatedMike
caffeinatedMike / resume.json
Last active July 7, 2022 23:19
JSON-Schema Resume
{
"meta":{
"theme":"elegant"
},
"basics":{
"name":"Michael Hill",
"label":"Python Developer",
"image":"https://i.imgur.com/W6jGvtE.png",
"summary":"Self-taught workaholic whose strongest areas are API and microservice-related development, as well as webscraping. I learn what I need to when I need to. Highly-driven & low-maintenance. Only interested in backend development, looking to move away from full-stack.",
"email":"michaelhill24@comcast.net",
@caffeinatedMike
caffeinatedMike / fwcim.js
Created April 19, 2021 23:10
amazon fwcim.js decoded
////////////////////////////////////////////
;
(function(packageFunction) {
var p = window.AmazonUIPageJS || window.P;
var attribute = p._namespace || p.attributeErrors;
var namespacedP = attribute ? attribute("FWCIMAssets", "") : p;
if (namespacedP.guardFatal) {
namespacedP.guardFatal(packageFunction)(namespacedP, window);
} else {
@caffeinatedMike
caffeinatedMike / api_example.py
Created February 21, 2018 16:23
Simple Jira Api Class
import requests
import json
class JiraAPI():
def __init__(self, root, username, password):
#Initialize Data Variables
self.root = root
self.username = username
self.password = password
self.credentials = {'username': self.username,