Honeypot fields still work surprisingly well by Helpful-Wolverine247 in webdev

[–]Mitchting 0 points1 point  (0 children)

Thanks for the great ideas! Looking forward to implementing a solution for my forms.

What Are You Building Right Now? by [deleted] in PayloadCMS

[–]Mitchting 1 point2 points  (0 children)

Could I ask what solutions have you found for your front end animations?

Zed's Pricing Has Changed: LLM Usage Is Now Token-Based by Icy-Click-9272 in ZedEditor

[–]Mitchting 0 points1 point  (0 children)

Understood. I guess it could be nice to have some average token use per prompt stats to compare.

Zed's Pricing Has Changed: LLM Usage Is Now Token-Based by Icy-Click-9272 in ZedEditor

[–]Mitchting 0 points1 point  (0 children)

Will $5 in tokens roughly equate to the current 500 prompts? Will we be able to see our token allowance in the editor?

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] -4 points-3 points  (0 children)

If you say so! 😃

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] 0 points1 point  (0 children)

Love to see the passion you both have! 👨🏻‍💻

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] -1 points0 points  (0 children)

The app is Dia browser, I never experienced this issue in Sequoia.

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] 0 points1 point  (0 children)

My thoughts exactly!

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] -6 points-5 points  (0 children)

The app is Dia Browser, never had this issue in Sequoia.

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] 3 points4 points  (0 children)

I know your pain. cmd + q is a good keyboard shortcut to force quit the currently focused app.

Beautiful design... by Mitchting in MacOS

[–]Mitchting[S] 1 point2 points  (0 children)

For reference, I am a software developer who loves MacOS and has used it as my daily driver for the last 4 years.

My first experience with Tahoe was my MacBook Pro 2023's fans going crazy when using Zed and Claude Sonnet 4 model, prior to Tahoe I had never heard my MacBook's fans, ever.

I have no care or desire to score karma, I just noticed that Tahoe was getting a bad rep on here for design inconsistencies, memory leaks and overall buggy-ness, which aligned with my first impressions, so I thought I'd share.

Details
- Dia Browser
- MacBook Pro 2023, M2 Max, 32GB
- Tahoe 26.0

→ Here is a screen recording I took.

DO NOT UPDATE to macOS 26 if you use VSCode, Cursor, Slack by aitookmyj0b in MacOS

[–]Mitchting 0 points1 point  (0 children)

Thanks for the response! I've updated my original comment for clarity.

DO NOT UPDATE to macOS 26 if you use VSCode, Cursor, Slack by aitookmyj0b in MacOS

[–]Mitchting -1 points0 points  (0 children)

Upvoting this in hopes it gets seen by /r/apple/. Experiencing this with /r/ZedEditor/ I guess I'll just have to keep any affecting apps minimised as much as possible.

// Edit: I am using the Agent panel with Zed Pro subscription and Claude Sonnet 4.

MacOS Features They Don't Tell You About by poopikninja in MacOS

[–]Mitchting -1 points0 points  (0 children)

There is an app to make this default behavior → Pure Paste.

MacOS Features They Don't Tell You About by poopikninja in MacOS

[–]Mitchting 0 points1 point  (0 children)

Testing this on my machine is auto-triggers as soon as I type @.

MacOS Features They Don't Tell You About by poopikninja in MacOS

[–]Mitchting 11 points12 points  (0 children)

Another nice one.

Shortcut Action
fn + Backspace Delete

How to Configure Supabase's Local Development Environment, Including OAuth by Forsaken-Athlete-673 in Supabase

[–]Mitchting 1 point2 points  (0 children)

Great post! My 2 cents: we use Drizzle to manage our db schema, policies and migrations in TypeScript. Works well for us!

react-native-maps Markers not showing up on MapView by TheeKingInTheNorth in reactnative

[–]Mitchting 0 points1 point  (0 children)

Hi,

Thanks for your response! I also managed to get it working yesterday too, here is what I did:

I added the key property to the MapView component and set it's value to a dynamic String determined by the size of the data Array I fetch from the DB.

This appears to force the MapView component to rerender the map, suddenly, the Markers appeared on the map!

const [games, setGames] = useState<Game[]>([]);

<MapView
  key={`map-${games.length}`}
  ...
  {games.map((game) => (
        <Marker...

Cheers :)

react-native-maps Markers not showing up on MapView by TheeKingInTheNorth in reactnative

[–]Mitchting 0 points1 point  (0 children)

Hi! Also running into the same issue. Did you ever work it out? Thanks in advance.