@slizeray @stroughtonsmith

What an unbelievable mess.

#BugFest #iOS

@chbeer

๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

Soooo ugly.

#ios #BrokenGlass #BugFest

@marioguzman

How I wish I could rip that NVIDIA chip out of my Mac! ๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

#BrokenGlass #macOS #BugFest

@tuomas_h

Great Scott! ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚ ๐Ÿ˜‚

#Apple #BugFest #macOS26

@tuomas_h @marioguzman

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

User Interface Murks - Apple Window Stew | NeoFinder Blog | Thoughts from the NeoFinder developer team

Thoughts from the NeoFinder developer team

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/

#Xcode #bugfest

@tuomas_h

So ugly, yikes. ๐Ÿคฎ

I would be ashamed to release bad crap like that.

#Apple #BugFest

@marioguzman

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?

#BugFest

@markusms

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.

#macOS #BugFest #Apple

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.

https://stackoverflow.com/questions/53771325/how-to-generate-datamatrix-using-cifilter/72211088#72211088

#Apple #Bugfest

How to generate dataMatrix using CIFilter?

I am getting error: Value for key inputBarcodeDescriptor of type CIDataMatrixCodeDescriptor is not yet supported let string = "tempValue&123" let data = string.data(using: String.Encoding.asc...

Stack Overflow