• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

MAN this aggrivates me (programming)

280Z28

n00b
Joined
May 5, 2006
Messages
58
This is a crash:

The application has encountered an error and needs to close

This is an assert, NOT A "Crash" :mad:

Code:
assert( ptr != NULL || !"NULL argument not expected" );
Assertion Failed

This is an EXCEPTION, NOT an "Assert" :mad:

Code:
throw new ArgumentNullException( "chair" );
Unhandled Exception

Man I get this crap from other devs here who supposedly know what they're doing and then I go hunting for the problem they reported, but they keep reporting the wrong things. :mad: :rolleyes:

They're sitting here behind me right now talking about adding more asserts to a C# project they're working on to catch some problem.
 
ASSERT(_T("no clue about your post, please add more background info ><"));
 
Ask for screenshots of the failure and/or unedited log files.

Most people speak ambiguously. Unfortunately, neither you nor I can expect that to change.

Screenshots demonstrating a failure (hopefully accompanying a mostly-helpful set of steps to reproduce) don't lie, nor do original log files.

Consider adding your own handlers for unexpected exceptions and assertions (for example, replace the system-provided assert) which will record a stack trace and display module versions/build times.
 
I can deal with this from users just fine. The problem is with devs that make these mistakes.

Newbies should say they encountered and "error" if they don't know what the specifics are. That's generic enough to tell me that it could be any of the above.
 
Back
Top