Waqas Hussain

Results 8 comments of Waqas Hussain

**Did a little further research, pasting my notes:** This is a helpful website for detecting your current fingerprint: * https://ja3er.com * JSON end-point: https://ja3er.com/json * My fingerprint with Firefox on...

@r1b Haven't focused on this issue in while, and the original website configuration changed such that it's not an issue. Another website that I think reproduces (no affiliation) is `https://mangahub.io/`,...

You are right about the size, I'd only looked at my edits on desktop. Thoughts on what would be the best look? Possible ideas: * Third row of controls *...

Ah, one reason I didn't notice the controls disappearing on phones is because my Pixel 3a XL apparently has a big enough screen that they remain visible. Totally makes sense...

Ah, I figured out the cause of the array crash. You are right that Array.h should work. It fails in some cases where you cast NSArray into NSMutableArray, e.g., String.split...

isEqualToString works, but fails in some cases. s == null for example fails with a crash. This gets a little complicated if you take nulls into account, because if either...

Apparently there's an `NSObject.isEqual()` too.

It looks like the correct way to check equality for Objective-C objects is `((x == y) || [x isEqual:y])`. This works even if `x` and `y` are `nil`. I'm well...