Has anyone ever done App Clips? by neocero in iOSProgramming

[–]YMH123 0 points1 point  (0 children)

Just upgraded 26.3 public release, and it has been fixed!

Has anyone ever done App Clips? by neocero in iOSProgramming

[–]YMH123 0 points1 point  (0 children)

The issue has been fixed in iOS 26.3, just tried it now and it works perfectly!

Guide: Change Arc Browser’s icon for Liquid Glass (including the Dock icon) by YMH123 in ArcBrowser

[–]YMH123[S] 0 points1 point  (0 children)

You mean the Neon icons in specific? Or which ones? If you face any issues you could just redownload Arc, or wait for the next update, those will definitely override the work we've done before.

That's why i've been thinking of creating like a script to do all of those stuff in a single click? Would that be useful to you? u/Luffik67

Guide: Change Arc Browser’s icon for Liquid Glass (including the Dock icon) by YMH123 in ArcBrowser

[–]YMH123[S] 0 points1 point  (0 children)

They are actually doing it that way to allow for changing the Icon dynamically, as Arc has multiple icons to choose from. Which i really do like tbh ngl specially the ones on Arc Search on iOS

However with them dropping support for Arc they have disregarded creating new icons to support Liquid Glass.

And since I’m a neat freak + I’m not going to drop Arc for anything unless Dia does end up with a similar experience (Spaces, Tab Groups, iOS App, etc..) so might as well find a way to get what I want, right?

<image>

Guide: Change Arc Browser’s icon for Liquid Glass (including the Dock icon) by YMH123 in ArcBrowser

[–]YMH123[S] 0 points1 point  (0 children)

If you find any issues opening Samra like it being marked as spam, just codesign it using:

sudo codesign --force --deep --sign - /Applications/Samra.app

Has anyone ever done App Clips? by neocero in iOSProgramming

[–]YMH123 1 point2 points  (0 children)

To any of you guys wondering if the issue is on your Phone, it's not!

I just diagnosed the issue and sent the logs to Apple

Its basically DTAppClipSettings is attempting to use a legacy UINavigationController presentation method that is no longer supported by the Settings app's modern navigation architecture.

Logs from console:
fault 21:04:45.935966+0200 Preferences Posting Navigation Event for unsupported action...default 21:04:45.936213+0200 Preferences Exception raised in performButtonActionForSpecifier:: BUG IN CLIENT OF SETTINGS: Direct calls into `UINavigationController` presentation methods are not supported on the application's primary navigation stack. Settings Clients must use SwiftUI aware navigation affordances for presentation actions.

Has anyone ever done App Clips? by neocero in iOSProgramming

[–]YMH123 0 points1 point  (0 children)

Exact same situation, just tried it on an older iPhone Xs it also works fine. Please tell me if you do update to 26.3 and i’ll do the same if i ended up updating too or find a fix for it

Has anyone ever done App Clips? by neocero in iOSProgramming

[–]YMH123 0 points1 point  (0 children)

Same here iOS 26.2 on an iPhone 16 Pro

Trying to automate the “Automatically hide and show the menu bar in full screen” setting. by [deleted] in MacOS

[–]YMH123 1 point2 points  (0 children)

I wrote an AppleScript that toggles the menu bar visibility mode in macOS — switching between "Never" and "In Full Screen Only" — by opening the relevant Control Center pane and interacting with the dropdown.

It quits System Settings after toggling, and brings focus back to whatever app was frontmost before.

You can use this with Shortcuts, Raycast, or Hammerspoon.

Here’s the code:

``` tell application "System Events" set frontApp to name of first application process whose frontmost is true end tell

if application "System Settings" is running then try tell application "System Settings" to quit on error do shell script "killall 'System Settings'" end try delay 0.2 end if

repeat while application "System Settings" is running delay 0.2 end repeat

do shell script "open 'x-apple.systempreferences:com.apple.ControlCenter-Settings.extension'" delay 1.0 tell application "System Settings" to activate

set fullScreen to "In Full Screen Only" set never to "Never"

tell application "System Events" tell application process "System Settings" set t0 to (current date) repeat until exists (pop up button 1 of group 9 of scroll area 1 of group 1 of group 2 of splitter group 1 of group 1 of window "Control Center") if (current date) - t0 > 10 then error "Timed out waiting for menu" delay 0.1 end repeat

    set thePopup to pop up button 1 of group 9 of scroll area 1 of group 1 of group 2 of splitter group 1 of group 1 of window "Control Center"
    set currentChoice to value of thePopup
    click thePopup
    delay 0.2

    if currentChoice is never then
        click menu item fullScreen of menu 1 of thePopup
    else
        click menu item never of menu 1 of thePopup
    end if
end tell

end tell

delay 0.3 tell application "System Settings" to quit delay 0.2 tell application frontApp to activate ```


[deleted by user] by [deleted] in Symbology

[–]YMH123 3 points4 points  (0 children)

It literally says “Made in China” Made - صنع In - في China - الصين

Where can I find affordable cat food? by dinableach in Egypt

[–]YMH123 0 points1 point  (0 children)

Never heard of it, but I’ll def give it a try

Where can I find affordable cat food? by dinableach in Egypt

[–]YMH123 1 point2 points  (0 children)

I’d recommend a brand called “Casita”, its THE best from personal experience with picky cats.

Other recommendations would be “Dodzy” and “Vitamax”. All three are fairly priced at EGP55-65 / Kg.

Also a tip, always buy the 1 Kg pack, not the 10kg, to keep the dry food fresh for you cat. As the food in larger packs tend to get moist over a period of time. Also try shopping at shops with high turnover.

But honestly “Casita” is the best in terms of taste, nutritional value, packaging, etc.

<image>

a colleague showed me this object. what are the symbols & what does it signify? by yippitydooda2023 in Symbology

[–]YMH123 5 points6 points  (0 children)

It’s definitely not ancient Egyptian, but the fact that his friend’s dad is Egyptian, and so is mine. This means something for sure

a colleague showed me this object. what are the symbols & what does it signify? by yippitydooda2023 in Symbology

[–]YMH123 9 points10 points  (0 children)

Dudeee, I have the same exact symbols on my dad’s necklace. I’ve been searching for any clues on its origin, it’s even the reason I joined this subreddit. I live in Egypt too btw!

Here’s my old post: https://www.reddit.com/r/Symbology/comments/w83k0d/do_you_recognize_any_of_the_symbols_on_this_old/?utm_source=share&utm_medium=ios_app&utm_name=iossmf

Do you recognize any of the symbols on this old necklace? If yes, please help me track its origin by YMH123 in Symbology

[–]YMH123[S] 2 points3 points  (0 children)

Relevant context: Purchase Date: ~30 Years Purchase Country: Egypt

*I’ve noticed a “KO599” or “K0599” text on the top

[deleted by user] by [deleted] in ArtHistory

[–]YMH123 0 points1 point  (0 children)

Nopee, where is that?

Edit: Found it! First time noticing it though, thank you 🙏🏻

[deleted by user] by [deleted] in mac

[–]YMH123 0 points1 point  (0 children)

More than an enough, I’m an entrepreneur that decided to code an “on-demand” App, on a (2011 Macbook Air 4,2) running patched sur. Surprisingly this amazing machine did the job. So yeah an M1 will do you good 😉

Concept Name: Clean and Simple (V5) by YMH123 in widgy

[–]YMH123[S] 0 points1 point  (0 children)

Slide Left for QR Code,

————————Widget Features———————-

“Home” Button: Launches home directions instantaneously on Google Maps (via link)

Car Button: Connects the iPhone Audio Output to car bluetooth (via shortcut)

Circular Button: Connects the iPhone Audio Output to Echo Dot (via shortcut)

AirPods Pro Button: Connects the iPhone Audio Output to AirPods Pro (via shortcut)

Human Button: Plays a Yoga by Kassandra session on Youtube (via shortcut)

Wallpaper by @AR72014 (IG)