Skip to content

Instantly share code, notes, and snippets.

View daviirodrig's full-sized avatar
🙃

Davi Rodrigues daviirodrig

🙃
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spin</title>
<style>
html,
body {
@daviirodrig
daviirodrig / j.css
Created November 17, 2023 22:28
Put this on obs Custom CSS field on the browser source of the chat. URL used, replace CHANNEL: https://www.giambaj.it/twitch/jchat/v2/?channel=CHANNEL&hide_commands=true&hide_badges=true&size=3&font=2&stroke=2&shadow=1
/* Transparent background and fade in animation */
body {
background-color: rgba(0, 0, 0, 0);
margin: 0px auto;
overflow: hidden;
}
.chat_line {
animation: fadeInRight 0.3s ease forwards;
@daviirodrig
daviirodrig / kap.css
Last active February 14, 2023 05:38
Put this on obs Custom CSS field on the browser source of the chat. URL used, replace CHANNEL: https://nightdev.com/hosted/obschat?theme=undefined&channel=CHANNEL&fade=false&bot_activity=false&prevent_clipping=false
/* Just transparent background and text-shadow */
body {
background-color: rgba(0, 0, 0, 0);
margin: 0px auto;
overflow: hidden;
text-shadow: 1px 1px 0px #000;
}
"""
This script remove the version from package version
"""
import re
from typing import List
regex = re.compile(r"(.*)(-)(.*)(-)(\d)")
def read_file() -> List[str]:
"""
@daviirodrig
daviirodrig / lyricsSkipAd.py
Created September 13, 2021 04:49
Python script to auto skip spotify ads and display lyrics on terminal.
import time
import os
import lyricsgenius
import win32gui
import win32api
from win32con import VK_MEDIA_NEXT_TRACK, KEYEVENTF_EXTENDEDKEY
np = ""
def get_song_name():
windows = []