Skip to content

Instantly share code, notes, and snippets.

View mitchellaha's full-sized avatar
🔥

Mitch V Aureli mitchellaha

🔥
  • Logic 3ii
  • Denver, CO
View GitHub Profile
@mitchellaha
mitchellaha / prd.md
Created April 25, 2025 02:36 — forked from burkeholland/prd.md
TheUrlist PRD

Project Requirements Document: The Urlist Website

The following table outlines the detailed functional requirements of The Urlist website.

Requirement ID Description User Story Expected Behavior/Outcome
FR001 Creating a New URL List As a user, I want to be able to start a new, empty list so I can begin adding URLs. The system should provide a clear way for the user to initiate the creation of a new list, potentially presenting an empty list view or an "add new list" button.
FR002 A
@mitchellaha
mitchellaha / ApplicationPermissions.py
Created October 14, 2024 15:23
Microsoft Graph API
"""
! THIS ACCESS THE GRAPH API WITHOUT A SPECIFIC USER
! THIS USES API PERMISSIONS -> APPLICATION PERMISSIONS
!
"""
import json
import logging
import requests
@mitchellaha
mitchellaha / constants.js
Last active July 3, 2024 17:19
Javascript One Liners
export const URLS = {
AUTH_HOME: '/',
AUTH_LEADS: '/leads',
AUTH_LEAD: ':id/*',
AUTH_LEAD_DETAILS: 'details',
AUTH_LEAD_NOTES: 'notes',
AUTH_LEAD_CHECKLISTS: 'checklists',
AUTH_LEAD_SPEND: 'spend',
AUTH_DASHBOARD: '/dashboard',