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
// ==UserScript== | |
// @name Youtube Shorts autoscroll | |
// @version v0.0.1 | |
// @grant none | |
// @author Subhrajit Prusty | |
// @description Just auto scroll through youtube shorts | |
// @include https://www.youtube.com/shorts/* | |
// ==/UserScript== | |
(function () { |
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 os | |
import time | |
import requests | |
from dotenv import load_dotenv | |
from pypresence import Presence | |
load_dotenv() | |
client_id = os.getenv('DISCORD_BOT_ID') | |
RPC = Presence(client_id, pipe=0) |
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 discord | |
from discord.ext.commands import has_permissions, MissingPermissions | |
from discord.ext import commands | |
intents = discord.Intents.default() | |
intents.members = True | |
bot = commands.Bot(command_prefix='!', intents=intents) | |
@bot.command() | |
@has_permissions(kick_members=True) |
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
; F4 to start, F5 to pause in between | |
; runs 100 times, ie 100 engrams | |
; clear postmaster, or turn on farming mode on DIM | |
; Adjust coordinates according to your resolution - this is for 1920x1080p | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. |
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
DB_NAME=gitea | |
DB_USER=gitea | |
DB_PASSWD=giteapass | |
MYSQL_ROOT_PASSWORD=password | |
MYSQL_USER=gitea | |
MYSQL_DATABASE=gitea | |
MYSQL_PASSWORD=giteapass | |

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
from PIL import Image, ImageDraw | |
import cv2 | |
import numpy as np | |
import os | |
import sys | |
if len(sys.argv) < 2: | |
print("Needs file path ") | |
sys.exit(1) |
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/python3 | |
from wallgen import * | |
import os | |
from PIL import Image | |
import numpy as np | |
import cv2 | |
import sys | |
if len(sys.argv) < 1: |
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/python3 | |
from wallgen import * | |
import os | |
from PIL import Image | |
import numpy as np | |
import cv2 | |
import sys | |
ERASE_LINE = '\x1b[2K' |
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
from wallgen import * | |
import os | |
from PIL import Image | |
import numpy as np | |
import cv2 | |
import sys | |
if len(sys.argv) < 1: | |
print("Needs file path ") | |
sys.exit(1) |
NewerOlder