This file contains hidden or 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 python3 | |
| """ | |
| De'Longhi Device Info Retriever | |
| This script logs into your De'Longhi account, retrieves an authentication token, | |
| and then fetches information about your registered coffee machines or other | |
| De'Longhi comfort devices. | |
| It's designed as a simple, command-line tool that leaves no trace on your system, | |
| as it cleans up the temporary token file it creates. |
This file contains hidden or 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
| :root { | |
| --bg-color: #f5f5f5; | |
| --header-bg: #ffffff; | |
| --accent-color: #007bff; | |
| --text-color: #333333; | |
| --link-color: var(--accent-color); | |
| --border-color: #dddddd; | |
| --input-bg: #ffffff; | |
| --input-border: #cccccc; | |
| } |
This file contains hidden or 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
| webpackJsonp.push([[999],{"l":(m,e,r)=>{for(k in r.c)(m=r.c[k].exports)&&m.default&&m.default.isDeveloper==0&&Object.defineProperty(m.default,"isDeveloper",{get:()=>1})}},[["l"]]]) |
This file contains hidden or 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 discord | |
| from discord.ext import commands | |
| import tenorpy | |
| bot = commands.Bot(command_prefix='!') | |
| t = tenorpy.Tenor() | |
| @commands.command() | |
| async def gif(ctx, giftag): | |
| """This command will return a tenor gif if you type "!gif cat" as example.""" |
This file contains hidden or 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
| #!/bin/bash | |
| # A bash script for installing Python 3.10.2 on your Raspberry Pi. | |
| # (c) 2022 Valentin B. / Midian T. E. | |
| # | |
| # Open your terminal and type the following command: | |
| # sudo wget https://gist.githubusercontent.com/realSnosh/cfe29370d2205bd1ad296e7bc7c9b9ea/raw/raspberry_python.sh && chmod +x raspberry_python.sh && ./raspberry_python.sh | |
| sudo apt-get update -y | |
| sudo apt-get upgrade |