Skip to content

Instantly share code, notes, and snippets.

View phaethonp's full-sized avatar

Phaethon Psichis phaethonp

View GitHub Profile
@phaethonp
phaethonp / invite-accept-opportunity.html
Created April 18, 2026 07:13
Invite-to-opportunity flow spec (5 stages: email → click → landing → submit → signed-in)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=1440,initial-scale=1" />
<title>Invite-to-opportunity · full flow · 2026-04-18</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700&display=swap" rel="stylesheet">
@phaethonp
phaethonp / mathpix2gpt.py
Created April 27, 2023 23:38 — forked from danielgross/mathpix2gpt.py
mathpix2gpt.py
import requests
import time
import os
import sys
import openai
import tiktoken
from termcolor import colored
openai.api_key = open(os.path.expanduser('~/.openai')).read().strip()