tickling ur spidey senses

693 points · 21 comments · view on lemmy.world

21 Comments

Lumidaub@feddit.org · 39 pts · 1y

I'd argue human developers also enjoy finding bugs, they just don't like HAVING them.

vrighter@discuss.tchncs.de · 28 pts · 1y (7 replies)

I LOVE finding bugs.

I HATE looking for them

yetAnotherUser@discuss.tchncs.de · 2 pts · 1y (4 replies)

And the bugs are always in the last lines of code you check. It's so infuriating! Why can't they be in the first?

meowMix2525@lemm.ee · 5 pts · 1y

You're not desperate enough for them to reveal themselves to you yet

Iron_Lynx@lemmy.world · 3 pts · 1y (2 replies)

Because you stop searching when you find the bug.

You have to not execute

lines[] = Load(file.code);

bool bug_found = false;
i=0;
while(!bug_found)
{
  bug_found = findBug(lines[i]);
  //looks like I missed a bit, lemme fix
  if(bug_found)
  {
    break;
  }
  i++;
}
bug_fix(lines[i]);
// Who'd've thought that I'd need to fix a bug in a joke about fixing bugs
// Now that's some tasty irony ^-^'

You have to run

lines[] = Load(file.code);

def bugs[];
a = 0;
for(i=0;i<lines[].length();i++)
{
  if (findBug(lines[i])
  {
    bugs[a] = lines[i];
    a++;
  }
}
for(b=0;b<=a;b++)
{
  bug_fix(lines[b]);
}

/j

vrighter@discuss.tchncs.de · 3 pts · 1y (1 reply)

shouldn't b loop until it's <a instead of <=a ?

nilclass@discuss.tchncs.de · 2 pts · 1y

Yes

Rubanski@lemm.ee · 2 pts · 1y (1 reply)

Are you a spider?

vrighter@discuss.tchncs.de · 2 pts · 1y

no, but I used to have one. He didn't like looking for them either.

SelfProgrammed@lemmy.world · 20 pts · 1y (2 replies)

Bugs are job security

limer@lemmy.dbzer0.com · 5 pts · 1y

Spiders and programmers both need bugs to be able to eat

Iron_Lynx@lemmy.world · 1 pts · 1y

You may not like it, but this is what peak software engineering job security looks like.

~ a friend of mine, 2024

Skullgrid@lemmy.world · 10 pts · 1y (3 replies)

testers

finitebanjo@lemmy.world · 12 pts · 1y (2 replies)

Particularly Penetration Testers.

SkunkWorkz@lemmy.world · 4 pts · 1y (1 reply)

Especially if the test subject is your mom.

kittenzrulz123@lemmy.blahaj.zone · 4 pts · 1y

Or the local IT Transfem :3

dohpaz42@lemmy.world · 3 pts · 1y

I love finding bugs, and then squishing them.

intensely_human@lemm.ee · 2 pts · 1y

Absolutely not true

multifariace@lemmy.world · 1 pts · 1y

What about the scorpions!

RandomVideos@programming.dev · 1 pts · 1y

I enjoy finding the bugs

The problem is the existence of the bugs

stupidcasey@lemmy.world · 1 pts · 1y

That web developer might be an undercover product tester.