Elektrine lite

← Feed

Rhys Morgan

rhysmorgan@mastodon.social

<p>Bug fixes and performance improvements.</p>

Posts

  • Post #1839188

    Like Apple got rid of the full-screen-covering volume toggle, can it please get rid of the full-screen MagSafe/charging indicator when you dock your phone? Please? 🥺

  • Post #1839187

    TERNUS!!!!!!!!!!! Yes!!!!!!

  • Post #1839185

    I am not an AI doomer. I enjoy using Claude Code. I do see it as a force multiplier for me, even if it&amp;#39;s &amp;quot;just&amp;quot; being able to find the edge cases, parse large logs to narrow in on a root cause, or just damn well type faster for me. But I&amp;#39;ve always felt the rug pull was inevitable. Compute costs + capex are unsustainable. I&amp;#39;ve always focused on getting useful, long-lasting artefacts (e.g. plans, scripts, tools, macros).

  • Post #1839184

    Holy shit, Control just got released on iPhone and iPad, cross purchase on the Mac App Store. It&amp;#39;s also only £5 at the moment. A ridiculously good deal! https://apps.apple.com/gb/app/control-ultimate-edition/id6502953520

  • Post #1839183

    Are GitHub really aiming for four 8s of availability? Feels like it right now...

  • Post #1839182

    RE: https://mastodon.social/@arstechnica/116464969329660811 “descent”?!? Hahahahahaha

  • Post #1839181

    RE: https://mastodon.social/@rhysmorgan/116450361035731258 Following up on this thread, yesterday GitHub began their rug pull in earnest. Copilot is moving to a usage-based model, but instead of pay as you go, you get a set amount of tokens per month that *expire* at the end of every month. They&amp;#39;ve also completely removed free model access.

  • Post #1421586

    RE: https://hachyderm.io/@pointfreeco/116331137317592772 So, so excited to be digging into these betas tomorrow! @pointfreeco is one of the best investments you can make in your ongoing career as an iOS engineer, and I’m so excited to see both TCA 2, and to dig into DebugSnapshots for exhaustive testing for reference types!

  • Post #1421577

    I had a sneaking suspicion that the single, collapsed async trick might be an (isolated Self) parameter in this week&amp;#39;s @pointfreeco episode, having used it in my Unimplemented mock-generating macro. Felt good seeing it confirmed! It’s an unbelievably useful trick – and it gives you synchronous access to the actor&amp;#39;s state for the duration of the closure (with just the `await` to run the method)

  • Post #959402

    Sharing this repo to demonstrate something I consider to be truly incredible in modern Swift with Approachable Concurrency. Your View Models no longer *need* to be MainActor-isolated just because your SwiftUI View* reads or mutates a property on it. Your View Model tests can be totally nonisolated, and not have to mark them @.MainActor + experience MainActor-contention. Thank you @mattiem for showing me this is possible! https://github.com/rhysm94/NonIsolatedViewModels *and presumably UIView/...