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(…).| // 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 |
| # 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 |
Let's say you receive an app (e.g. MyApp.ipa) from another developer, and you want to be able to install and run it on your devices (by using ideviceinstaller, for example).
Or your certificates and provision profiles have expired and you want to provide a new build to your clients without having to make a new build on the latest XCode or iOS SDK.
The first step is to attain a Provisioning Profile which includes all of the devices you wish to install and run on. Ensure that the profile contains a certificate that you have installed in your Keychain Access (e.g. iPhone Developer: Some Body (XXXXXXXXXX) ). Download the profile (MyProfile.mobileprovision) so you can replace the profile embedded in the app.
| # /etc/nsmb.conf - macOS 11.3 - 2021-04-29 | |
| #------------------------------------------------------------------------------ | |
| # SMB configuration for macOS 11.3 <-> Synology | |
| #------------------------------------------------------------------------------ | |
| # Additional information: | |
| # ----------------------- | |
| # https://support.apple.com/de-de/HT211927 | |
| # https://support.apple.com/en-us/HT208209 | |
| # https://apple.stackexchange.com/questions/309016/smb-share-deadlocks-since-high-sierra | |
| # https://photographylife.com/afp-vs-nfs-vs-smb-performance |