Skip to content

Instantly share code, notes, and snippets.

View dnnsmnstrr's full-sized avatar
:shipit:

Dennis Muensterer dnnsmnstrr

:shipit:
View GitHub Profile
@dnnsmnstrr
dnnsmnstrr / now.json
Last active February 23, 2025 21:40
Original Now as a Gist
{
"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": [
@marcoieni
marcoieni / index.md
Created June 14, 2024 16:31
Raycast slideshow

My awesome presentation

With subtitle

first pokemon

second pokemon

@DaniilBabanin
DaniilBabanin / monaco-editor-textfield.js
Last active May 24, 2024 06:25
Userscript that adds monaco editor ro gitlab textfields
// ==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==
@katagaki
katagaki / openerManifest-v5.20220120.json
Last active February 7, 2025 13:19
Opener manifest (openerManifest-v5.json) archived from 20 January 2022 from https://github.com/timonus/OpenerManifest/blob/master/openerManifest-v5.json.
{
"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",
@kiliman
kiliman / github-open-npm.js
Last active August 10, 2024 15:53
TamperMonkey script to open the npm package by Ctrl/Cmd+click on import statement from GitHub code view
// ==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==
{
"$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]",
@pmckernin
pmckernin / hidden_talents.md
Last active November 8, 2024 13:10
ice breaker prompts

Hidden Talents

  • What's a hidden talent of yours?
  • What's something someone you know can do that you find really impressive?
  • Can you do a really great impression of someone?
  • What's a talent you used to show off as a kid?
  • What's your human superpower? (For example: capable of falling asleep anywhere)
  • What is something you can teach in one minute?
@carodew
carodew / ice-breakers.md
Last active November 8, 2024 13:12
Ice breakers
@jerieljan
jerieljan / btt-screenshot.sh
Created May 22, 2021 13:32
Screenshot OCR with BetterTouchTool on MacOS
#!/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
@brenoprata10
brenoprata10 / steam-wishlist.js
Last active April 24, 2025 09:28
Shows widget for steam wishlist of given steamID on Scriptable app
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)
}