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 / git.md
Created July 2, 2023 17:44
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)