Skip to content

Instantly share code, notes, and snippets.

View yutamago's full-sized avatar
👻
I may be slow to respond.

Angelo yutamago

👻
I may be slow to respond.
View GitHub Profile
// ==UserScript==
// @name immobilienscout++
// @namespace kch42
// @include https://www.immobilienscout24.de/*
// @version 2
// @grant none
// ==/UserScript==
/*
* Immobilienscout24 Suche verbessern.
@yutamago
yutamago / migrate-bs-2-tw.ts
Last active November 25, 2024 19:51
Deno script to migrate most bootstrap classes to tailwind classes. Angular-compatible
import * as fs from 'node:fs';
import * as path from 'node:path';
// TODO: Insert your own breakpoints -> make sure to set tailwind to use the same breakpoints.
// this script will not convert breakpoints to equivalent breakpoints in tailwind!
// ex. d-xxl-flex becomes xxl:tw-flex, not 2xl:tw-flex
const bootstrapScreenSizes = [
'sm',
'md',
'lg',
@yutamago
yutamago / personio-teams-links.js
Last active May 10, 2025 16:53
Personio Userscript: Open Teams-Chat with a person when clicking on their Email
@yutamago
yutamago / azd_start_sprint_button.js
Created March 26, 2026 14:10
Azure DevOps - Start Sprint button - Userscript
// ==UserScript==
// @name Azure DevOps Start Sprint
// @namespace https://dev.azure.com/
// @version 1.0.0
// @description Adds a "Start Sprint" button to the Azure DevOps sprint backlog view that fires confetti when clicked
// @author Yutamago
// @match https://dev.azure.com/*/_sprints/backlog/*
// @require https://cdn.jsdelivr.net/npm/canvas-confetti@1.9.4/dist/confetti.browser.min.js
// @grant none
// ==/UserScript==