This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": "Working at 3st as a Full Stack Developer. Now with formatting", | |
"playlist": { | |
"name": "Warten", | |
"uri": "5k4CrIEvYeNCg0go3BPR56" | |
}, | |
"activities ": [ | |
"Saw the RTO and Jan Böhmermann in Cologne" | |
], | |
"plans": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Replace Gitlab textareas with Monaco Editor | |
// @namespace Violentmonkey Scripts | |
// @match https://gitlab.org/* | |
// @grant none | |
// @version 1.0 | |
// @author Daniil Babanin & Dennis Münsterer & CHATGPT4o | |
// @description Replace comment and issue textfields with Monaco Editor and inject custom snippets | |
// @license MIT | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"actions":[ | |
{ | |
"title":"Open Tweet", | |
"regex":"https?://(mobile\\.|www\\.|m\\.)?twitter\\.com/(@?[a-zA-Z0-9_]{1,15}/)?(status|i/web/status|statuses|i/topics/tweet)/(\\d+).*$", | |
"testInputs":[ | |
"https://twitter.com/zpower/status/588561590997352448", | |
"https://mobile.twitter.com/kiebk/status/599159327056863232?cn=cmVwbHk%3D&refsrc=email", | |
"https://twitter.com/i/web/status/814237378382622720", | |
"https://twitter.com/hamburger/statuses/221225038941126657", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GitHub open npm from import | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1.1 | |
// @description Opens the npm package by Ctrl/Cmd+click on import statement | |
// @author Kiliman | |
// @match https://github.com/* | |
// @icon https://www.google.com/s2/favicons?domain=github.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Dennis Muensterer", | |
"label": "Developer & Maker", | |
"pronouns": "He / Him", | |
"image": "https://avatars.githubusercontent.com/u/3686989?v=4", | |
"picture": "https://avatars.githubusercontent.com/u/3686989?v=4", | |
"avatar": "https://avatars.githubusercontent.com/u/3686989?v=4", | |
"email": "[email protected]", |
(avoid revealing class background) I ask students to choose one from a list of 4.
Longest you have ever kept a plant alive?
What is a food that everyone seems to love but you dislike?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Usage: | |
# - Install `tesseract` with `brew install tesseract` | |
# - In BetterTouchTool, create a trigger of your choice. | |
# (I recommend a Keyboard Shortcut with Cmd+Shift 6) | |
# - Add an Execute Shell Script / Task action | |
# - Paste this script. | |
# NOTE: You'll need to authorize BTT to the Screen Recording permission in Security and Privacy at System Preferences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const STEAM_STORE_URL = "https://store.steampowered.com" | |
const steamId = args.widgetParameter ?? "76561198008818777" | |
try { | |
const wishListGames = await fetchWishListById(steamId) | |
const widget = await createWidget(wishListGames) | |
renderWidget(widget) | |
} catch(error) { | |
const widget = await createErrorWidget(error) | |
renderWidget(widget) | |
} |
NewerOlder