It's 3:15 AM, Feel my pain. :dumpster_fire:

if(response.Success == false);
{
    Success = false;
    AddSystemException($"{LibraryID}.{FunctionID}", "Rest Request Error", null);
    try { listErrors.AddRange(JsonConvert.DeserializeObject<List<(string, string, string, object)>>(response.errorJson)); } catch {}
    return;
}

Spot the mistake that kept me up for 3 extra hours.

Buddy The Elf No GIF

Not knowing when to call it a day

1 Like

Only took me a glance. Shoulda called me

Call Me Hello GIF by Major League Soccer

That one will get you every time;

3 Likes

Oh my! I was about to ask someone to give us the answer for the non-coders. Then I looked at it and saw it right away. Those are the errors that get me all the time.

Well, that’s why …

working big bucks GIF by The Tonight Show Starring Jimmy Fallon

2 Likes

I just now noticed.

Noice Thats Nice GIF

You must get along with @Mark_Wonsil well. :safe_harbor:

If you’re going to make a mistake, don’t half-:peach: it.

End of statement.

One of the things I remember to this day was my Jazz band teacher in high school told us. “If you play a wrong note, just play in like it’s on purpose, people usually only know you made a mistake if you act like you made a mistake. And with Jazz, just a move a half a note either way, and you’re back to being right”

One of those little things you remember for the rest of your life.

2 Likes

I cheated.

damn black magic

No it’s https://www.blackbox.ai/ :stuck_out_tongue_winking_eye:

i have no shame using chatgpt to check my work. I dont code enough to be a super hero. =/

Theres a local ai called LM Studio that i used for anything business specific so i dont have to give any info to chatgpt, but its not as f

There’s another mistake…

Never catch { } unless you have a good reason to…

Nope

I do.

This is a logging function, I absolutely do not want any errors whatsoever to halt, and I don’t want to do anything with them. (At least at the moment.)

I’ll probably catch them at some point later for a failover log, but not now.

1 Like

I haven’t read the replies yet. I’m guessing it’s your semicolon in the first line?