Use _NS_4445425547 or NS🐞 for enables debuggging panel. When enabled it, a ladybug 🐞 menu appears in the app menu bar.
“4445425547” means DEBUG in Unicode table.
0x44=D
0x45=E
0x42=B
0x55=U
0x47=G
| # /// script | |
| # requires-python = ">=3.11" | |
| # dependencies = [ | |
| # "aiohttp", | |
| # "yarl", | |
| # ] | |
| # /// | |
| from __future__ import annotations | |
| import argparse |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] | |
| "ShowDownloadsToolbarButton"=dword:00000001 | |
| "ShowRecommendationsEnabled"=dword:00000000 | |
| "CopilotPageContext"=dword:00000000 | |
| "ShowAcrobatSubscriptionButton"=dword:00000000 | |
| "PersonalizeTopSitesInCustomizeSidebarEnabled"=dword:00000000 | |
| "Microsoft365CopilotChatIconEnabled"=dword:00000000 | |
| "NewTabPageContentEnabled"=dword:00000000 |
| type: vertical-stack | |
| cards: | |
| - type: horizontal-stack | |
| cards: | |
| - type: custom:mushroom-title-card | |
| title: Bambu Lab X1C | |
| alignment: start | |
| - type: custom:mod-card | |
| card: | |
| type: custom:mushroom-chips-card |
Update 17.10.2024: macOS 15 no longer requires root privileges for hidutil, you need to add hidutil and Terminal to 'Input Monitoring' in Settings/Privacy & Security tab.
Update 13.04.2024: On macOS 14.2 hidutil requires root privileges.
If you have a mac with an INT (ISO) keyboard you might want to change the ± key to ~. During my research I found that the information on this topic is not at all centralized. I prefer this option because it does not involve installing new software.
With macOS 10.12 Sierra Apple introduced hidutil as a tool to remap keyboard keys. See TN2450.
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).| %hook NSObject | |
| %new | |
| - (id)getIvar:(NSString *)arg1 { | |
| id obj; | |
| @try { | |
| const char *str = [arg1 UTF8String]; | |
| obj = MSHookIvar<id>(self, str); | |
| } |
| // A minimal iOS app set up entirely in code using Objective-C rather than using a storyboard and UIApplicationSceneManifest in the Info.plist. | |
| // Last updated for iOS 18. | |
| // Swift version: https://gist.github.com/douglashill/b8125f7e2336b6a47461df0d4898f64d | |
| @import UIKit; | |
| @interface SceneDelegate : UIResponder <UIWindowSceneDelegate> | |
| @end | |
| @implementation SceneDelegate |
A userscript for displaying the actual date & time (relative to local time) of when a Twitch clip (and video) was created.
FYI: It only works on URLs that start with https://clips.twitch.tv/.
This script does not work with URLs that are on the Twitch "channel pages" (https://www.twitch.tv/CHANNEL_NAME_HERE/clip/...).
This has been added as of v0.5.0.
"Under the hood" the script uses Date.toLocaleString() to format the date. The format of the date & time may differ from the screenshots below.
| # Automator > Quick Action | |
| # Workflow receives current "files or folders" in "Finder" | |
| # Add "Run Shell Script" action | |
| # Copy script below to "Run Shell Script" window | |
| # Replace <text-editor-app> at row 36 with your preferred text editor app | |
| # Save quick action as: "Remove signature from Profile & open in <app>" | |
| # Quick Actions live in: ~/Library/Services | |
| # Target folder |