This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file containes interfaces that represent the content of the | |
* webhook request's body. I won't be using all of these but figured | |
* someone might find this useful one day <3 | |
* | |
* Copyright (C) 2022 Joseph Diragi | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import praw | |
import re | |
import requests | |
search_api = 'https://steamcommunity.com/actions/SearchApps/' | |
steam_link = 'https://store.steampowered.com/app/' | |
## Populate with your own client_id, etc. from: | |
## https://www.reddit.com/prefs/apps | |
reddit = praw.Reddit( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# screenFetch - a CLI Bash script to show system/theme info in screenshots | |
# Copyright (c) 2010-2017 Brett Bohnenkamper <kittykatt@kittykatt.us> | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |