Skip to content

Instantly share code, notes, and snippets.

View lorcalhost's full-sized avatar
🌵

Lorenzo Callegari 乐子睿 lorcalhost

🌵
View GitHub Profile
@lorcalhost
lorcalhost / correlated-coin-lists.json
Created May 17, 2021 22:18
BTB-manager-telegram coming soon :)
{}
@lorcalhost
lorcalhost / crackwatch-games-list.json
Last active October 25, 2023 17:42
[Updated every 12 hours] Crackwatch AAA games list for /lorcalhost/galaxy-integration-crackwatch
[
{
"slug": "ancient-cities",
"title": "Ancient Cities"
},
{
"slug": "crash-bandicoot-4-it-s-about-time",
"title": "Crash Bandicoot 4: It's About Time"
},
{
@lorcalhost
lorcalhost / unsplash-rpab.py
Created June 3, 2019 20:17
Unsplash random picture at boot (On run it downloads the picture in next_image.png)
import shutil
import requests
url = 'https://source.unsplash.com/1600x900/?food'
try:
response = requests.get(url, stream=True)
if response.status_code is 200:
shutil.copyfile('next_image.png', 'current_image.png')
with open('next_image.png', 'wb') as out_file:
shutil.copyfileobj(response.raw, out_file)