- Shall i implement it?
- No ...
- Go to https://hexed.it/
- Click
Open Filein the top left corner, navigate to instalation folder and selectsublime_text.exe - On the
Search forbar in the left panel, input: 0F B6 51 05 83 F2 01 - Now in the editor, click on the first byte (0F) and start replacing each byte by: C6 41 05 01 B2 00 90
- Finally, in the top left corner again, click on
Save asand replace the old executable file with the newly created one.
Enjoy an Unlimited User License!
Warning
This is patched as of iOS/iPadOS 18.1 DevBeta 5. If you want to follow this, stay on Beta 4.
This actually downloads the models, and is NOT just new SiriUI. Hence, this process is complex and probably not worth it.
- What does not work: Writing Tools, Memories, Reduce Interruptions, Image Eraser and other tools that are within official Apple Intelligence on supported devices.
| #!/usr/bin/env python3 | |
| import usb.core | |
| import struct | |
| from collections import namedtuple | |
| APPLE_VID = 0x05ac | |
| Target = namedtuple("Target", ["vid", "pid", "name", "model", "total_size"]) |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>PayloadDisplayName</key> | |
| <string>Restrictions</string> | |
| <key>PayloadIdentifier</key> |
# Forked from https://gist.github.com/gguerini
# Syntax edits by Sick Codes (GPLv3+)
# Disable menu bar transparency
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false
# Show remaining battery time; hide percentage
defaults write com.apple.menuextra.battery ShowPercent -string "NO"
defaults write com.apple.menuextra.battery ShowTime -string "YES"| #!/usr/bin/env python3 | |
| import asyncio | |
| import iterm2 | |
| THEME_LIGHT = "Tango Light" | |
| THEME_DARK = "Tango Dark" | |
| class AutoSwitchTheme: |
How to Force RGB Color Output instead of YPbPr on your M1 Apple Silicon Mac for an External Monitor.
This step-by-step video tutorial will guide you through the procedure of forcing RGB color output on your M1 Mac.
Here is the direct link to the video tutorial: https://www.youtube.com/watch?v=Z1EqH3fd0V4
The video also has Closed Captions (Subtitles) that you can enable, to make it easier to follow if needed.
It's come to my attention that some people have been spamming issue trackers with a link to this gist. While it's a good idea to inform people of the situation in principle, please do not do this. By all means spread the word in the communities that you are a part of, after verifying that they are not aware yet, but unsolicited spam is not helpful. It will just frustrate people.
A number of things have happened since the last update.
| package main | |
| import ( | |
| "context" | |
| "github.com/aws/aws-lambda-go/lambda" | |
| "github.com/aws/aws-sdk-go-v2/aws" | |
| "github.com/aws/aws-sdk-go-v2/config" | |
| "github.com/aws/aws-sdk-go-v2/service/ec2" | |
| "github.com/aws/aws-sdk-go-v2/service/ecs" | |
| "github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2" |
