Skip to content

Instantly share code, notes, and snippets.

View impliedgg's full-sized avatar
⚠️
Booked - unavailable for commission work

emily impliedgg

⚠️
Booked - unavailable for commission work
  • self-employed; open to job offers
  • 02:51 (UTC -05:00)
View GitHub Profile
@impliedgg
impliedgg / install.py
Last active June 4, 2022 09:23
minimal mcsnipergo installer
#!/usr/bin/env python3
RELEASE_SUFFIX = '_Linux_64-bit'
import os
stream = os.popen('curl -sL https://api.github.com/repos/kqzz/mcsnipergo/releases')
res = stream.read()[:-1]
import json
obj = json.loads(res)
url = ""
for asset in obj[0]['assets']:
if RELEASE_SUFFIX in asset['name']: