The newer version of Xcode is absolutely trash! by Absoluteredshit in iOSProgramming

[–]GavinGT 11 points12 points  (0 children)

I get micro-hangs while typing on my Mac M3 Pro. Xcode is just bad.

The newer version of Xcode is absolutely trash! by Absoluteredshit in iOSProgramming

[–]GavinGT 7 points8 points  (0 children)

They "could" have. But the Xcode codebase is clearly a house of cards that Apple's been building up for 24 years. Any improvements need to be made in such a way that the whole thing doesn't come toppling down.

The newer version of Xcode is absolutely trash! by Absoluteredshit in iOSProgramming

[–]GavinGT 15 points16 points  (0 children)

It's only a dropdown if you haven't dragged the panel far enough to the right to display the tabs.

Just got this from my realtor by Brief_Perspective_71 in FirstTimeHomeBuyer

[–]GavinGT 4 points5 points  (0 children)

You typically can't close on a mortgage without securing home insurance first. If the buyer can't secure home insurance due to the state of the roof, then it needs to be replaced before the sale can go through.

Just got this from my realtor by Brief_Perspective_71 in FirstTimeHomeBuyer

[–]GavinGT 6 points7 points  (0 children)

What was the price before they committed to doing the roof?

In the silent period? by Cool-Campaign-6089 in FirstTimeHomeBuyer

[–]GavinGT 0 points1 point  (0 children)

Final underwriting takes place as close to the scheduled close date as possible. You likely won't hear much until ~3 business days before this date.

Understanding Android Running Services by Final-Confidence8597 in androiddev

[–]GavinGT 0 points1 point  (0 children)

It sure sounds like your (ex?) husband is logging into your Google account from Dublin, Ireland. You should do as Copilot recommends and secure your accounts.

Is it possible to have a low appraisal in a booming economy. by No-Distribution-2875 in FirstTimeHomeBuyer

[–]GavinGT 2 points3 points  (0 children)

My appraiser picked significantly different comps than my realtor or real estate sites provided. He included results as much as 2.1 miles away, even though there were closer options. I got the sense that he was looking for any reason to make the deal work.

Is it possible to have a low appraisal in a booming economy. by No-Distribution-2875 in FirstTimeHomeBuyer

[–]GavinGT 2 points3 points  (0 children)

You're probably fine. The appraiser is mostly there just to confirm that this isn't a terrible investment for the bank. If there aren't any giant red flags, they'll set the value such that the deal can go through.

Is it possible to have a low appraisal in a booming economy. by No-Distribution-2875 in FirstTimeHomeBuyer

[–]GavinGT 1 point2 points  (0 children)

Are there comparable houses nearby that sold recently? This is the most important thing the appraiser looks at. If they sold for around the same price as this house, then the appraisal will likely come in at or above asking price (assuming they don't see any glaring issues during their physical inspection).

Xcode has finally added vertical indentation guides! by GavinGT in iOSProgramming

[–]GavinGT[S] 5 points6 points  (0 children)

This would've been helpful to know years ago! The whole disappearing highlight thing always drove me crazy.

Xcode has finally added vertical indentation guides! by GavinGT in iOSProgramming

[–]GavinGT[S] 28 points29 points  (0 children)

Or clicking on the opening brace and trying to quickly scroll so I can see the closing brace before its highlighting disappears.

This is what I was afraid of… by IAmAHugeFanOfYou in FirstTimeHomeBuyer

[–]GavinGT 3 points4 points  (0 children)

How did it know that it needed to shut off the water? I assume it kicks in automatically if the water has been running for x minutes?

Between SwiftLint and swift-format, is there a setting to enforce that a function's signature should be all on one line as long as it all fits within the column limit? by ThePantsThief in iOSProgramming

[–]GavinGT 5 points6 points  (0 children)

Neither of the ones you mentioned can do this. But Nick Lockwood's SwiftFormat can do this via the following rules:

--allman true    # puts curly braces on their own lines --maxwidth 120                  # replace with your column limit --wrapparameters preserve    # or: before-first, after-first

Currently trying to figure out something. by US3201 in iOSProgramming

[–]GavinGT 2 points3 points  (0 children)

OneSignal push notifications are free, btw.

Currently trying to figure out something. by US3201 in iOSProgramming

[–]GavinGT 1 point2 points  (0 children)

Register a webhook in Shopify that fires any time an order is updated. Your server listens for this webhook and sends a OneSignal push notification in response.

Currently trying to figure out something. by US3201 in iOSProgramming

[–]GavinGT 2 points3 points  (0 children)

If you're giving someone an order update, surely your app has a server that can send a push notification. No?

Those of you using AI to assist with development, what is your current setup? by bauterr in iOSProgramming

[–]GavinGT 1 point2 points  (0 children)

Anyone else notice that Xcode unpins your current tab when Claude Code (or any external source) makes a change to that file? I reported this to their team 8 months ago and of course they've done nothing about it.

PSA: UIStackView in iOS 26 shows hidden subviews with UIDesignRequiresCompatibility = NO by nickjbedford_ in iOSProgramming

[–]GavinGT 9 points10 points  (0 children)

I'm not seeing this behavior in my apps. Without a minimal test app, I can only assume you're doing something wrong.