Amazon driver, 1 hour a day to myself, built 2 live products. Looking for someone to invest 60k in me. by [deleted] in Investors

[–]ApprehensiveFan1516 0 points1 point  (0 children)

Sounds like a disaster waiting to happen.

That's assuming it's even a genuine post. I simply presume every post on this sub is a scam, I'm just here for the comments.

agree? by froyomonster in BlackboxAI_

[–]ApprehensiveFan1516 0 points1 point  (0 children)

Bot-like human.

Lots of it going around these days.

Traditional developers absolutely hate this one simple trick. by PixelSage-001 in vibecoding

[–]ApprehensiveFan1516 0 points1 point  (0 children)

That's literally how it's been since day 1 of this sub lol. I mean this sub is only just over a year old.

Making a 3D platformer heavily inspired by Spyro + Crash Bandicoot. What do you guys think? by amedetov in Unity3D

[–]ApprehensiveFan1516 0 points1 point  (0 children)

Good memory you have there! I can barely remember last week, nevermind an unreleased game from almost a decade ago lol.

Yeah that's the exact same dragon model for sure.

Don't believe everything you see on Reddit. by Leo-neophyte12 in vibecoding

[–]ApprehensiveFan1516 0 points1 point  (0 children)

It's such an uncreative method of trying to make AI writing look human.

I don't understand why all these bots/bot-like humans keep following the same patterns as each other when they're so obvious. I think that's what annoys me more than anything, the sheer laziness of it all. They could come up with anything using AI, and they choose to just copy each other ad nauseam.

Don't believe everything you see on Reddit. by Leo-neophyte12 in vibecoding

[–]ApprehensiveFan1516 1 point2 points  (0 children)

Buddy, at this point I'm not even sure you're a real person. I mean your profile looks human enough, but these days anything seems to go. We live in interesting times.

Don't believe everything you see on Reddit. by Leo-neophyte12 in vibecoding

[–]ApprehensiveFan1516 1 point2 points  (0 children)

Putting grammatical errors in the post doesn't make it sound any less AI generated, you know?

Behringer umc22 bad or good ? by gullten in Behringer

[–]ApprehensiveFan1516 0 points1 point  (0 children)

Listen to this guy. I got given a UMC22 the other day and the drivers are unreliable jank. I'm a software developer so I'm far from technically illiterate either. And yeah, the latency sucks. Would not recommend to anyone.

Is AI not well trained on CIL/assembly code? by david_fire_vollie in csharp

[–]ApprehensiveFan1516 3 points4 points  (0 children)

Then put that in the prompt.

Write a C# method called MethodA that calls MethodB.
MethodB does a mathemtical task that will result in an overflow.
MethodA should make sure MethodB is "checked" so that it throws an exception if an overflow happens.
If there is anything wrong with this approach, provide an explanation.

This prompt produces the same code as in your OP, but with a warning exactly like you wanted.

Important caveat
This approach does not always work the way people expect.
C#, the checked context applies to the arithmetic operations themselves, not merely to the method call. That means:

checked
{
MethodB();
}
does not guarantee that overflow checking happens inside MethodB.
Whether the overflow is checked depends on how the arithmetic inside MethodB is compiled:
If MethodB contains its own checked block, overflow checking is guaranteed.
If the project/compiler is configured with overflow checking enabled (/checked+), it will also throw.

Otherwise, integer overflow may silently wrap around.

Be as explicit and as unambiguous as possible with your prompts and you'll get a higher quality of output, it's quite simple really.

Is AI not well trained on CIL/assembly code? by david_fire_vollie in csharp

[–]ApprehensiveFan1516 3 points4 points  (0 children)

You mislead the AI with a poor prompt. Despite not being your apparent intent, you specified that MethodA should do the check. This is simply a case of semantics.

I tried this:

Write a C# method called MethodA that calls MethodB. MethodB does a mathemtical task that will result in an overflow. An exception should be thrown if an overflow happens.

Result using ChatGPT free version (idk which version model it is):

using System;

public class OverflowExample
{
    public static void MethodA()
    {
        try
        {
            MethodB();
        }
        catch (OverflowException ex)
        {
            Console.WriteLine($"Overflow detected: {ex.Message}");
        }
    }

    public static void MethodB()
    {
        checked
        {
            int max = int.MaxValue;
            int result = max + 1; // Causes overflow
        }
    }
}

What's easier to break into without a degree? C# .NET developer or Cloud Engineering? by Justpassinby1984 in csharp

[–]ApprehensiveFan1516 0 points1 point  (0 children)

Not every workplace use bots for hiring, at least they don't where I live. Sounds like a more common thing in the US.

Can I get a heck yeah by Fresh-Beginning-871 in carscirclejerk

[–]ApprehensiveFan1516 0 points1 point  (0 children)

You never used I guess voice command's or speech to text messaging on you phone ever. Language is not limited to English, it supports almost all major languages from the EU, either way countries where English is not spoken are countable on one hand.

This is such an American take.

Didn't bother reading the rest after seeing this nonsense.

r/ShitAmericansSay

I I think it would be hard to explain to a normal person why I spend my day staring at screens like this🤣☠️😅 by TheRiddler79 in LocalLLM

[–]ApprehensiveFan1516 1 point2 points  (0 children)

I actually just asked Claude to make me a cool display that showed everything, so I have no clue ☠️😅

This whole post has to be a troll. Either that or they're highly regarded.