Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
# AppleScript for macOS Sonoma that opens a new Finder window/tab showing the directory of | |
# a selected item (file or folder). If no item is selected, the script does nothing. Can be | |
# used in a Shortcut.app, as a Service in the menubar item, or as a Quick Action extension. | |
# | |
# Author: H. Duraki <[email protected]> | |
# <https://github.com/duraki> | |
# Jan 11, 2025 | |
tell application "Finder" | |
-- Check if there is a selection of Item/Folder |
{ | |
"schemaVersion": "1.2", | |
"key": "halis-publish-addon", | |
"name": "Halis Publish Addon", | |
"description": "A sample addon that for pentesting", | |
"baseUrl": "https://example.com", | |
"minimalSubscriptionPlan": "FREE", | |
"lifecycle":[], | |
"webhooks":[], | |
"components": [], |
MATCH_PATTRN_RFI_VALID_WORLD_DOMINATION_PROJECT |
; A minimal Mach-o x64 executable for OS X (also see below Mountain Lion version) | |
; | |
; $ nasm -f bin -o tiny_hello tiny_hello.s | |
; $ chmod +x tiny_hello | |
; $ ./tiny_hello | |
; Hello World! | |
; $ | |
; c.f. | |
; http://osxbook.com/blog/2009/03/15/crafting-a-tiny-mach-o-executable/ ( the original tiny mach-o executable ) |
tell application "Finder" | |
set visible of every process whose visible is true and name is not "Finder" to false | |
set the collapsed of windows to true | |
end tell |
+
in the lower right cornerApple ID
First, a little theory. The brushes and, accordingly, the switch have 5 main modes of operation of the brushes: | |
3 - The fastest mode. | |
2 - Continuous mode (With "nuances". What? Read below!). | |
1 - Intermittent mode. | |
0 - Not working (off). | |
1. If the turn signal switch is pressed in until it is in the most extreme position, the marker on one side (parking marker) will light up. | |
2. The rear sofa is made so that it can be used as a seat in nature (there is even a carrying handle and the bottom of the sofa is made of plastic). | |
3. The sun protective blind can turn to the window when the sun is lateral (3D blind). | |
4. By clicking on the reset daily mileage, you can see the mileage even without a key. | |
5. In the rear doors in the locks themselves there are latches for children that will not allow a child to open the doors (turn with a key or a screwdriver). | |
6. By lifting the driver's handle and holding it for 15 seconds, the lock cylinder will warm up. | |
7.Lifting the driver's handle turns on the interior light. | |
8. Recirculation of the cabin works even with the engine off (if the goal is additional help, you can sit in the car driving warm air through the cabin through the stove). | |
9. When you have to carry something dirty in the trunk, you can turn the ca |
#! /bin/bash | |
# Simple Utility Script for allowing debug of hardened macOS apps. | |
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
app_path=$1 | |
if [ -z "$app_path" ]; | |
then | |
echo "You need to specify app to re-codesign!" | |
exit 0 |