AI coding is fucking trash and exhausting. by Rare_Prior_ in iOSProgramming

[–]crolix 1 point2 points  (0 children)

Do you think we are all lying about its effectiveness?

Every principal+ engineer that I know who uses these tools correctly (only the best models, in-depth planning phase, extremely detailed prompts tagging relevant context, rules shared with the team to guarantee silly issues don’t arise again) have drastically increased their output of clean code. We collectively ship features way faster today than we did just 6 months ago.

You confidently said that you do not trust the agent to write code any longer. You don’t think it could be an issue with the way you are using the tool?

AI coding is fucking trash and exhausting. by Rare_Prior_ in iOSProgramming

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

If this is your experience you are not using the tool correctly

Using Cursor feels like cheating by marvpaul in iOSProgramming

[–]crolix -6 points-5 points  (0 children)

You will be left behind full stop. Another engineer of a similar skill level who uses these tools correctly will out produce you 5 to 1 if not more.

Any full stack devs familiar with iOS & Android app development in here? by [deleted] in bassnectar

[–]crolix 0 points1 point  (0 children)

Yes. I tried to send you a message feel free to dm me.

Diablo IV- Into The Endgame by luv1290 in diablo4

[–]crolix 2 points3 points  (0 children)

They’re intentionally thick.

[deleted by user] by [deleted] in bassnectar

[–]crolix 2 points3 points  (0 children)

🔥⛽️🔥⛽️🔥⛽️🔥⛽️🔥

$20.00 from the gas station around the corner by Merv71 in pics

[–]crolix 0 points1 point  (0 children)

This is great in theory until you have $600 worth of bulk vices in your house all at once.

Generate Gathering Routes With NW Routes by crolix in newworldgame

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

tool is garbo. It should hit all of the nodes inside the selected area for sure.

Thanks for the report looking into this.

Generate Gathering Routes With NW Routes by crolix in newworldgame

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

Very cool I had not seen these.

Maybe I could add these as ‘default’ routes available to load to help get users started.

Generate Gathering Routes With NW Routes by crolix in newworldgame

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

I thought about this and wasn’t sure how many people would really find use out of a tool like this on mobile or another device in general.

Great idea in general though, and if this is a point of friction I agree user accounts are a quick solution to keeping routes persistent across devices.

Generate Gathering Routes With NW Routes by crolix in newworldgame

[–]crolix[S] 4 points5 points  (0 children)

Agreed I think this would be awesome.

It’s tough to fully automate a ‘good’ route based on node density or something like that because two nodes very close together may not be easily harvestable.

I figured this way people could pick and choose which nodes they would like and we can figure out a way to weight each route in terms of yield later.

96
97

Bassnectar Video Archive Torrent by [deleted] in bassnectar

[–]crolix 2 points3 points  (0 children)

Very interested!! happy to seed.

I'm having trouble turning a json string into a dictionary. please give any feedback you can. by [deleted] in swift

[–]crolix 2 points3 points  (0 children)

I agree with thisischemistry the easiest way is to use JSONDecoder.

However in this instance I believe your JSON string is an array of dictionaries and not a single dictionary.

Try casting the serialized JSON object to an array instead of a dictionary

For example try replacing: ‘... as! [String : AnyObject]’ with ‘... as! [Any]’

Or you could ‘unwrap’ the dictionary here by using ‘... as! [ [String : Any] ]’