How I wish I could rip that NVIDIA chip out of my Mac! ๐๐๐๐
What an unbelievable mess.
How I wish I could rip that NVIDIA chip out of my Mac! ๐๐๐๐
I wrote about it in 2021 already:
https://cdfinder.de/blog/files/apple_window_stew.html
"Apple has taken a perfectly balanced and working part of macOS, and screwed it up for no particular reason."
I still very much despise this idiotic idea every single day.
It makes it very hard to do basic things like, gasp, dragging windows.
I end up with modified PDF files daily, when inadvertently clicking in the "rotate page" button instead of dragging the window.
Who with a sane mind comes up with such crap? #macOS #BugFest #UX
One would think, at big companies, โUI control does nothing errorsโ get fixed within hours.
I mean, every feature gets at least basic QA testing and the very first test should uncover that the control does not work. Right? RIGHT?
Not at #Apple.
https://www.reddit.com/r/iOSProgramming/comments/1lnk6q4/comment/nf4f19j/
Great Scott!
And they still didn't properly fix the window resize bug in the #macOS 26.3 final release.
Timmy, what the heck are you doing?
What a gruesome UI garbage. Really.
A disgusting mess.
I pledge there will be no menu icons in the new #NeoFinder version!
I have already added code to remove that ugly crap in macOS 26.
Did you know there is a `CIFilter` to generate barcodes?
Added in iOS 11! (Example uses APIs added in iOS 13)
Makes creation of DataMatrix-Codes a piece of cake:
```
let data = "Oh, Apple".data(using: .ascii)!
let g = CIFilter.barcodeGenerator()
g.barcodeDescriptor = CIDataMatrixCodeDescriptor(payload: data, rowCount: 14, columnCount:14, eccVersion: .v200)!
let image = barcodeGenerator.outputImage
```
Sole problem: They forgot to implemented it.