Skip to content

Instantly share code, notes, and snippets.

View Trimatix's full-sized avatar
🍂

Jasper Trimatix

🍂
  • Denmark
  • 15:31 (UTC +02:00)
View GitHub Profile
@matinrco
matinrco / podmanOnDebianWSL.md
Last active October 5, 2022 02:19
Setting up Podman on WSL2 (Debian 10/buster) in Windows 10
  • Load OS related variables into shell:
    . /etc/os-release
    
  • Add repo:
    sudo sh -c "echo 'deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_${VERSION_ID}/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list"
    
  • Add apt key:
@Laura7089
Laura7089 / get_games.py
Last active November 15, 2020 17:33
Get steam games shared between accounts using custom urls/steamID64s. Requires https://pypi.org/project/steam/ and an API key, found at https://steamcommunity.com/dev/apikey.
#!/usr/bin/env python3
from os import environ, path
from sys import argv
from steam.steamid import SteamID
from steam.webapi import WebAPI
def get_api():