Skip to content

Instantly share code, notes, and snippets.

View pinheadtf2's full-sized avatar
👋
alo im pinpin

pinhead pinheadtf2

👋
alo im pinpin
View GitHub Profile
@pinheadtf2
pinheadtf2 / backlog.md
Last active September 6, 2022 01:32
pinhead's game backlog

✅ - 100% Completion
🟢 - Completed
▶️ - Currently Playing
💤 - Started, on hold
❌ - Not started
🔴 - Not Purchased

Desktop

Favorites

@XYZenix
XYZenix / backlog.md
Last active March 27, 2024 23:16
game backlog

welcome to my game backlog that i put on github for no reason

as of march 16, i've completely restarted this backlog and only categories with games i've at least started playing will be listed

Pokémon

Game Start/End Progress Team Dex (caught/seen)
Red Feb 2024
⏹️ Ended
HoF Lv64 Venusaur♂️
Lv63 Graveler♀️️
Lv61 Lapras♀️
Lv58 Beedrill♀️
Lv62 Pidgeot♀️
43/123
Silver Feb 2024⏹️ Ended HoF, 16 badges Lv61 Beedrill♀️Lv63 LugiaLv62 Graveler♀️Lv62 Gyarados♂️✨Lv61 Pidgeot♀️ 24/183
@bcahue
bcahue / ConvertNewSteamID.markdown
Created September 24, 2014 15:04
Converting New SteamID Formats in Python

Seeing how SteamIDs have changed recently, I thought I'd write a Gist to help others (including myself!) decypher how to convert these from one format to the other in Python. First, let's go over basics to convert a 64bit CommunityID into a SteamID:

steamid64ident = 76561197960265728

def commid_to_steamid(commid):
  steamid = []
  steamid.append('STEAM_0:')
  steamidacct = int(commid) - steamid64ident