UTC: 2025-04-06 08:26
Smart123s/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | [Releases](https://github.com/Smart123s/chocola
UTC: 2025-04-06 08:26
Smart123s/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | [Releases](https://github.com/Smart123s/chocola
#!/bin/bash | |
# Read the value of state from me.pou.app_preferences.xml | |
state=$(grep -oPm1 '(?<=<string name="state">)[^<]+' me.pou.app_preferences.xml) | |
# Format state to the hashable string & calculate it's hash | |
check=$(echo -n "p@v_4"${state//"/\"} | md5sum | awk '{ print $1 }') | |
# Update the value of check in the me.pou.app_preferences.xml | |
# Regex from https://stackoverflow.com/a/17333829/9767089 |
In this tutorial I'm going to guide you through setting up a cron job, that opens https://www.gog.com/giveaway/claim every day, which adds the game currently on giveaway to your account. I'm going to use a Raspberry Pi with Raspberry Pi OS, but any Linux distro should work, as long as it's powered on during the time you plan to run the cron job. If you don't have a Raspberry Pi at home, I'd recommend using a free VPS. Google Cloud and Oracle Cloud both offer a reliable, and free VPS. For the setup, I'm going to use Chrome, but any browser is feasible.
You can do this on your desktop machine.
#!/usr/bin/python3 | |
""" | |
Transform a PGP private key to an OpenSSH private key | |
Requirements: | |
pgpy>=0.6.0 | |
Usage: | |
Install dependencies with `pip install pgpy` |