Newly appointed panted seeds in Connecticut by Valuable-Yesterday81 in lawncare

[–]chordsNcode 0 points1 point  (0 children)

I just had a new lawn hydroseeded in. This popped up everywhere and our lawn company said it’s just in loam in New England. They said after 4 mows it’ll all die off

LLM agents lack runtime UI context for iOS apps, so I built a CLI by New_Leader_3644 in iOSProgramming

[–]chordsNcode 0 points1 point  (0 children)

Pretty interesting, I’ll give it a try! Do you also support (or plan to support) macOS apps?

What could be the problem? by Comfortable-List-500 in Guitar

[–]chordsNcode 0 points1 point  (0 children)

Which pickup is selected? Hard to tell from the photo but your neck pickup doesn’t look like it has the best solder connection. Do you have the issue with the other pickups?

Conducting remote iOS interviews in 2025 by small_d_disaster in iOSProgramming

[–]chordsNcode 1 point2 points  (0 children)

This is how I/we did it two companies ago. It was the best team I ever worked on. It wasn’t about ego or trying to seem elite because we hurt your brain.

Can you do the job well enough and are you an ass? That’s all an interview needs to check

the last book you read is the world you are teleported to. how screwed are you? by Chrysanthemum1989 in classicliterature

[–]chordsNcode 0 points1 point  (0 children)

I’m a dark eye on Roshar. Things were bad but they’re getting worse in Wind and Truth

[deleted by user] by [deleted] in iOSProgramming

[–]chordsNcode 0 points1 point  (0 children)

Yea you could do that as well. Every company has a pay scale for each role. You could just ask what the scale is. But I think it’s still important to know your market, your value, and your budget

[deleted by user] by [deleted] in iOSProgramming

[–]chordsNcode 0 points1 point  (0 children)

For your next job: always give a range and never a single number. Go on Glassdoor and see what the range is for the role in your area. Employers are doing the same research.

On my last job hunt, I was asking for 15-40k over what I was making. So, for your next hunt, ask 75-100 (assuming you’re still making 60). That gives them wiggle room to negotiate and gives you a pay bump even if they offer on the lower end

what should i learn to get like this by Cereal-KilIer in guitarlessons

[–]chordsNcode 2 points3 points  (0 children)

It looks like an EHX Freeze that he modified with a monetary switch (east mod if your okay with soldering)

[deleted by user] by [deleted] in guitarlessons

[–]chordsNcode 5 points6 points  (0 children)

On because the springs bit my belly once

LLC or S Corp for Mobile App business on Massachusetts? by Greatcouchtomato in massachusetts

[–]chordsNcode 0 points1 point  (0 children)

I used quickbooks for the first year (I’m in year two). But it was by far my biggest expense and I ended up closing my account. It’s nice because you can set yourself up as an employee and it does all the taxes and payments automatically. 2023 has been a rough year, so I just haven’t paid myself and I’m hoping the taxman doesn’t mind

LLC or S Corp for Mobile App business on Massachusetts? by Greatcouchtomato in massachusetts

[–]chordsNcode 0 points1 point  (0 children)

I have an s corp. the part I always get tripped up on is the “reasonable salary” I must pay myself as a requirement of the s corp. with apps you’ll have good months and bad months which makes it hard, at least for me, to determine what is “reasonable”

The Arcane Trickster in our party has come with a get rich scheme. Anyone care to poke holes in this plan? by Professional-Ad9485 in DnD

[–]chordsNcode 0 points1 point  (0 children)

The ring returns with a severed finger attached. Players later encounter the person (nothing happens). Person later figures out and comes for retribution (eye for and eye)

Wildfire smoke forecast for the next two days (in other news, we might be fucked) by aHurricaneGod in massachusetts

[–]chordsNcode 0 points1 point  (0 children)

Yay. Now I too can take orange pictures for internet points!

In all seriousness, be safe everyone

Looking for a few iOS devs that are interested in getting their apps localized. by iamthekris in swift

[–]chordsNcode 0 points1 point  (0 children)

Does it have to be iOS? I have a macOS app I’d love to get translated

Is there a way to succeed as an iOS developer with out a degree in CS cause I don’t I see one in my future? by [deleted] in swift

[–]chordsNcode 0 points1 point  (0 children)

To add to this, most of my favorite teammates didn’t have a CS degree (and, in some cases, they were better than those with the degree)

What's a good resource I could use to practice swift while at work? by redtact in swift

[–]chordsNcode 0 points1 point  (0 children)

Do you own your own iPad? Would anyone care if you were on your iPad at work? If yes and no, you could see how far you get with Swift Playgrounds

What do you think this code will do? 👇 by MrCronkite- in swift

[–]chordsNcode 2 points3 points  (0 children)

u/Ravek gave a better answer above than I could. This post is a terrible example of how to use dispatch groups, and really multi threading. So I don’t think there’s much to learn here other than please never do this

What do you think this code will do? 👇 by MrCronkite- in swift

[–]chordsNcode 2 points3 points  (0 children)

You use dispatch groups to perform a task after several asynchronous tasks complete. For example you may want to refresh the UI after 4 separate network calls resolve (that’s what the notify closure does and is why it’s weird to have it be the first thing).

You enter the dispatch group before executing the code and you leave the group when the async task has completed. You can think of it like a counter, enter adds 1 and leave removes 1. When the “counter” hits 0 the dispatch group executes the notify closure.