Results 21 comments of Wade Tregaskis

Note that this is only a start - it's not as flexible as one might want it to be, e.g. you can't configure parameters for log destinations individually, only as...

Certainly possible, although nothing comes to mind.

I finally figured it out, after seeing that the keyboard shortcut would randomly work on some days but not others. A few weeks ago I started using [Display Maid](https://funk-isoft.com/display-maid.html), and...

```swift import BigInt extension Foundation.FormatStyle where Self == IntegerFormatStyle { static var number: IntegerFormatStyle { IntegerFormatStyle() } } var hmm: BigUInt = 9_223_372_036_854_775_807 while true { let formatted = hmm.formatted(.number.locale(Locale(identifier:...

Note that in the above example I added a `number` static member to `FormatStyle` for convenience (as the built-in overloads of `number` are only for the Swift built-in numeric types),...

Also, `IntegerFormatStyle` breaks with UInt64 at the same point. So this looks like a bug in the Swift standard library, in which case this GitHub issue is more of an...

My use case is for reverting `NSImage`'s conversion of animation timing information (expressed by `NSImage` as `NSTimeInterval`) back to its natural form (integer measures of counts over a timescale). I...

I think that makes sense. Simplifying integer fractions is a common need too. But, that's essentially what I'm currently doing and it's maybe not perfect. As two separate steps, the...

That was my workaround initially, essentially (I used a million or thereabouts, not 300, but same idea). It works pretty well but isn't perfect.

From researching this, the root problem (in a sense) appears to be that Linux doesn't support [fat binaries](https://en.wikipedia.org/wiki/Fat_binary) (executable files containing code for more than one CPU architecture). Apple have...