Skip to content

Instantly share code, notes, and snippets.

View rmnmjw's full-sized avatar
😁
HYPED!

Roman Majewski rmnmjw

😁
HYPED!
View GitHub Profile
// ==UserScript==
// @name whatsapp - show number in title
// @namespace Violentmonkey Scripts
// @match https://web.whatsapp.com/
// @grant none
// @version 1.0
// @author -
// @description 8.12.2023, 17:17:41
// ==/UserScript==
// ==UserScript==
// @name MailHog QuickDelete
// @namespace Violentmonkey Scripts
// @match http://localhost:8025/
// @grant none
// @version 1.0
// @author -
// @description 5.4.2023, 19:05:12
// ==/UserScript==
// ==UserScript==
// @name telegram.org - show number in title
// @namespace Violentmonkey Scripts
// @match https://web.telegram.org/a/
// @grant none
// @version 1.0
// @author -
// @description 8.12.2023, 16:26:01
// ==/UserScript==
@rmnmjw
rmnmjw / wikipedia-contents.css
Last active November 23, 2023 18:55
wikipedia proper style
@media screen and (min-width: 1463px) {
#toc {
position: absolute;
z-index: 99999999;
top: -72px;
right: calc(960px + 10px);
min-width: unset !important;
width: calc((100vw - 960px - 68px) / 2);
background-color: unset;
border: unset;
@rmnmjw
rmnmjw / media-playback-rate.js
Created November 23, 2023 18:41
change media playback rate with + and - on any website
// ==UserScript==
// @name media playbackRate + / -
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// @version 1.0
// @author -
// @description 17.3.2023, 18:04:04
// ==/UserScript==
@rmnmjw
rmnmjw / Wikipedia Skin Changer & lang adder.js
Last active February 1, 2024 09:37
Wikipedia Skin Changer
// ==UserScript==
// @name Wikipedia Skin Changer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Changes the skin of Wikipedia
// @match *://*/*
// @grant none
// ==/UserScript==
(() => {
@rmnmjw
rmnmjw / clockify_web_app_add_badge.js
Created June 24, 2023 15:21
Clockify Web App Add Badge
// ==UserScript==
// @name clockify - badge
// @namespace t89sjuvq8x
// @match https://app.clockify.me/*
// @grant none
// @version 1.0
// @author rmnmjw
// @description 2023-06-24, 17:20:00
// ==/UserScript==
@rmnmjw
rmnmjw / radio2spotify.py
Last active June 24, 2023 11:10
Quick and dirty program to play Idobi radio songs from last.fm on Spotify and save those songs into a playlist
# inspiration: https://github.com/razzledazze/Now-Playing/blob/master/Now%20Playing.py
from functools import lru_cache
from lxml import html
import random
import re
import requests
import spotipy
import time