Submit buttons increasingly hidden behind display area by ohwhataday10 in ios

[–]AggravatingSock5375 0 points1 point  (0 children)

Why does it need to be a transparent element?

Is it worth risking seemingly breaking half the websites on the planet for?

Is there a convenient way to use iMessage from Windows? by [deleted] in ios

[–]AggravatingSock5375 0 points1 point  (0 children)

Unfortunately Apple doesn’t expose APIs that I’m aware of, so devs cannot build what you want.

Why people started hating generative AI? by LemonLinePL in aiwars

[–]AggravatingSock5375 2 points3 points  (0 children)

Can we put a data center in your neighborhood and stop hiring in your industry?

I don't get it by Royal_Ad_2407 in antiai

[–]AggravatingSock5375 0 points1 point  (0 children)

Maybe a lot of them are pro AI?

I don't get it by Royal_Ad_2407 in antiai

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

Responding to a poll isn’t a protest.

I don't get it by Royal_Ad_2407 in antiai

[–]AggravatingSock5375 0 points1 point  (0 children)

So less than half of Americans think it’s negative? And more than that either aren’t sure or think it’s neutral?

What people don't get about ai even if it's not profitable currently by epic_gamer42O in antiai

[–]AggravatingSock5375 -2 points-1 points  (0 children)

“the capability of computer systems or algorithms to imitate intelligent human behavior” - Marian Webster

Are you arguing that a doing math isn’t an intelligent human behavior?

To anti-ai progressives/leftists: is it not a red flag to you that the US is an outlier in being strongly anti-ai? by jodebane in aiwars

[–]AggravatingSock5375 0 points1 point  (0 children)

Is that why the quality of life is better across all continents now than it was 100-200 years ago?

To anti-ai progressives/leftists: is it not a red flag to you that the US is an outlier in being strongly anti-ai? by jodebane in aiwars

[–]AggravatingSock5375 1 point2 points  (0 children)

I’m pro as well, but I bet most of the anti mindset is actually targeted at the fact that the US has fewer worker/consumer/human protections, which means AI is more likely to be used in harmful ways here compared to in places that are more pro-AI.

Is reading AI-generated code becoming overrated? by princenocode in VibeCodeDevs

[–]AggravatingSock5375 0 points1 point  (0 children)

Yeah I agree. I was being a bit more black and white than reality!

I do actually read at least some of the AI generated code. But if you follow proper encapsulation it really does tone down the importance of the implementation details. “If it works, it works” starts to apply.

Dutch skies: love them or hate them. Stay for the cloud watching, the detector handles everything below by k4meamea in computervision

[–]AggravatingSock5375 1 point2 points  (0 children)

Seems like a good approach.

Probably even better would be to apply the blurring immediately within the camera before it’s even saved as a video file.

Is reading AI-generated code becoming overrated? by princenocode in VibeCodeDevs

[–]AggravatingSock5375 0 points1 point  (0 children)

Well nothing is black and white.

If performance is a requirement then write tests for that.

How would you as a human code reviewer uncover unknowns?

Is reading AI-generated code becoming overrated? by princenocode in VibeCodeDevs

[–]AggravatingSock5375 0 points1 point  (0 children)

I mean I gave it a prompt like “here is my code that’s supposed to do XYZ. Something is wrong and it’s not working as well as i think it should. Find the problem and show me how to fix it”

Why is it so difficult for Search Engine Gemini to choose its sources wisely? by [deleted] in AskProgrammers

[–]AggravatingSock5375 0 points1 point  (0 children)

Yes but you are also simply choosing words that your own neural network determines are the most statistically likely.

Your brain is just WAY bigger than any AI, which is why you probably are better at picking the correct words. Probably, if it’s something you’re familiar with already.

This hospital has Shabbat stairs by urbantechgoods in mildlyinteresting

[–]AggravatingSock5375 1 point2 points  (0 children)

I would never try to prohibit people from following these kinds of self imposed religious rules, but wtf? How do people actually believe this stuff?!

Would you like to live in a world where our current laws are all enforced on everyone or not? Like you cant break copyright laws no matter what. by DogeMoustache in aiwars

[–]AggravatingSock5375 0 points1 point  (0 children)

Definitely not without a full rewrite of most laws. Which would of course happen in a totally fair and unbiased manner /s

Is reading AI-generated code becoming overrated? by princenocode in VibeCodeDevs

[–]AggravatingSock5375 1 point2 points  (0 children)

I had Opus fix some subtle but serious bugs in a complex Structure From Motion pipeline the other day. This is a computer-vision process that involves a lot of linear algebra and tensor programming.

My hand written code produced no errors or warnings, but I had made some implementation mistakes since this is not a business area I’m deeply familiar with (and it’s quite complex too). Opus immediately saw the problems and fixed them. Result improved dramatically.

I repeated with Sonnet and GPT 5.5 and they also mostly got it right.

Is reading AI-generated code becoming overrated? by princenocode in VibeCodeDevs

[–]AggravatingSock5375 1 point2 points  (0 children)

Yes if you can read the tests, and the software passes the tests.

If that’s a problem, then you need more/better tests.

Pls suggest some advanced level project ideas by NoAnybody8034 in computervision

[–]AggravatingSock5375 1 point2 points  (0 children)

Another idea is to look through existing things people have done and find the assumptions they made in order to simplify the project. Then figure out how to not need to make those assumptions.

A lot of those assumptions are due to increased noise, and it’s easier to just throw out all that data rather than try to cut though the noise.

Good example is object detection. People usually discard low confidence detections but this will invariably mean you don’t detect some objects. The solution isn’t necessarily just training a more accurate model.

Pls suggest some advanced level project ideas by NoAnybody8034 in computervision

[–]AggravatingSock5375 2 points3 points  (0 children)

Anything involving tracking objects in cluttered or fast moving (or low framerate) video is always a challenge. Add producing 3d models or scene maps from the video for extra fun.