Skip to content

Instantly share code, notes, and snippets.

View xoste49's full-sized avatar
🏠
Working from home

Pavel Korchagin xoste49

🏠
Working from home
  • RU, Dubna
  • 11:12 (UTC +03:00)
View GitHub Profile
@SkyyySi
SkyyySi / youtube-vanced-alternatives.md
Last active April 7, 2025 00:27
A list of alternatives after the shutdown of Vanced

NONE OF THESE CLIENTS ARE VERIFIED BY ME FOR SECURITY OR ANYTHING ELSE! USE AT YOUR OWN RISK!

These are the current alternatives (with links when possible):

@anson-vandoren
anson-vandoren / .drone.yml
Created May 21, 2019 02:05
Sample .drone.yml configuration file
---
################
# Build & Test #
################
kind: pipeline
name: run_tests
steps:
# Run tests against React client app (with Jest)
@IrSent
IrSent / celery.py
Created November 12, 2016 19:12
Celery Best Practices
# Safe Queue Celery App Settings
from __future__ import absolute_import, unicode_literals
from celery import Celery
app = Celery('some_project',
broker='amqp://',
backend='amqp://',
include=['some_project.tasks'])