Skip to content

Instantly share code, notes, and snippets.

View shiftgeist's full-sized avatar
🪄
Conjuring CSS

Felix Hungenberg shiftgeist

🪄
Conjuring CSS
  • 20:28 (UTC +02:00)
View GitHub Profile
export function watchForElement<T extends Element = Element>(
selector: string,
callback: (element: T, observer: MutationObserver) => void,
options: MutationObserverInit = { childList: true },
targetNode = document.body,
) {
const observer = new MutationObserver((mutationsList) => {
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
const element = document.querySelector<T>(selector);
@shiftgeist
shiftgeist / random-redirect.userscript.js
Created December 4, 2024 14:51
Some websites are a time waste.
// ==UserScript==
// @name Random redirector
// @namespace Violentmonkey Scripts
// @match *://**/*
// @grant none
// @version 1.0
// @author shiftgeist
// @description 12/4/2024, 3:46:35 PM
// @run-at document-start
// ==/UserScript==
@shiftgeist
shiftgeist / gh-pr.js
Last active September 23, 2024 15:16
Userscript to hide github pull requests based on string in title or pr number.
// ==UserScript==
// @name Hide Github pr's
// @namespace shiftgeist custom Github script
// @match https://github.com/*/pulls*
// @icon https://github.com/fluidicon.png
// @grant GM.getValue
// @grant GM.setValue
// @version 1.1
// @author -
// @description 23/09/2024, 10:02:18
@shiftgeist
shiftgeist / lazyload.ts
Last active September 19, 2024 10:48
Minimal lazy load images
// Based on https://github.com/ApoorvSaxena/lozad.js
interface Options {
selector: string;
rootMargin: IntersectionObserverInit['rootMargin'];
threshold: IntersectionObserverInit['threshold'];
load(target: Element): void;
loaded(target: Element): void;
}
@shiftgeist
shiftgeist / yt-wl-quick-delete.js
Created August 29, 2024 13:35
Youtube Watch Later Quick Delete Button
// ==UserScript==
// @name Youtube Watch Later Quick Delete
// @namespace Violentmonkey Scripts
// @match https://www.youtube.com/playlist?list=WL
// @icon https://www.youtube.com/favicon.ico
// @grant none
// @version 1.0
// @author shiftgeist
// @description 29/08/2024, 14:41:36
// ==/UserScript==
@shiftgeist
shiftgeist / add-likes-to-playlist.js
Last active March 29, 2025 08:50
Soundcloud: Add all liked songs to playlist
// 1. Start on https://soundcloud.com/you/likes
// 2. Scroll all the way to the bottom (may only add 300 items at a time because of soundcloud api)
// (playlists are limited to 500 songs)
playlistName = 'Likes' // <== your playlist
list = Array.from(document.querySelectorAll('.badgeList__item .sc-button-more'))
console.log('Found', list.length, 'liked songs')
@shiftgeist
shiftgeist / timeout-promise.js
Last active March 6, 2024 11:21
setTimeout Promise
await new Promise(resolve => setTimeout(resolve, 1000));
@shiftgeist
shiftgeist / enum-const.ts
Created January 23, 2024 14:34
Enum with Const + Type
const Permission = {
Read: 'r',
Write: 'w',
Execute: 'x'
} as const;
type Permission = typeof Permission[keyof typeof Permission];
@shiftgeist
shiftgeist / vite.config.ts
Created January 9, 2024 12:21
Vite: Fetch package.json version
const fetchVersion = () => {
return {
name: 'html-transform',
transformIndexHtml(html) {
return html.replace(
/__APP_VERSION__/,
`v${process.env.npm_package_version}`
)
}
}
/**
* If a object has a property with Array<{ [key]: val }> and you want to make the array object values partial
*/
export type PartialByArray<T, K extends keyof T> = Exclude<T, K> & {
[key in K]: Array<{ [B in keyof T[K]]: Partial<T[K][B]> }>
}