Skip to content

Instantly share code, notes, and snippets.

View TobiTenno's full-sized avatar
:shipit:
Making code go brrrrrr

Matt TobiTenno

:shipit:
Making code go brrrrrr
View GitHub Profile
@TobiTenno
TobiTenno / v2.openapi.yaml
Created January 10, 2026 16:22
Warframe.Market v2 OpenAPI
openapi: 3.0.3
info:
title: Warframe Market API v2
description: |
Complete OpenAPI specification for Warframe Market API v2.
This API provides access to Warframe trading data including items, orders, rivens,
lich/sister weapons, and user profiles.
**Key Features:**
@TobiTenno
TobiTenno / git.md
Last active July 13, 2025 20:29
Recommended git settings
git config --global user.email "myEmail@domain.com"
git config --global user.name "TobiTenno"
git config --global pull.rebase true
git config --global rebase.autoStash true
git config --global --bool push.autoSetupRemote true

if you have git config user.signingkey configured

@TobiTenno
TobiTenno / ws-tester.py
Created June 20, 2022 19:17
WorldState
# ws testers for python
import requests
import json
url = 'https://api.warframestat.us/pc/?language=en'
response = requests.get(url)
print(response)