The current system of job seeking often requires to lie on resume. It is even being highly recommended by people that coach people for job seeking, although with some moderation of course.

  • Scrubbles@poptalk.scrubbles.tech
    link
    fedilink
    arrow-up
    12
    ·
    1 year ago

    Yeah that’s a better way to put it to me. I honestly don’t care what language most people code in, but I hope you can explain how you’re doing stuff. I interview with the expectation of “a lot of red squigglies” expecting it not to compile. I don’t care if you call .Sort instead of writing your own. Just show me you can code.

    Sadly though, my latest question is for web developers and is mostly made up of calling a simple GET api. I have failed at least 80% of the engineers that take that test simply because they have no idea how to call an API in any language or framework, something I do I’d say on a daily basis. It’s basically “call a fake endpoint /foo and show the results” and that takes mid level engineers the entire hour to do.

    • grabyourmotherskeys@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      1 year ago

      We just overhauled a programming test we use of we aren’t certain a person can do what they say they can do (which is most of the time when you hire remote) and yeah the old one disqualified tons of people. It was very simple. I have had lots of people have someone else do it and then act very surprised when I wanted to discuss it with them.

      • Scrubbles@poptalk.scrubbles.tech
        link
        fedilink
        arrow-up
        6
        ·
        1 year ago

        Exact same problems, especially remote. I honestly don’t know what is happening with engineers coming out of school/bootcamps, they just legit cannot code but go for these coding jobs. who is hiring them? I remember making fun of “fizzbuzz” as an interview question because it’s too easy but I legit have had people fail fizzbuzz! In languages they chose!

        I hate technical interviews, I’ve been given questions like “implement binary search”, like okay, I can do that, but this is an annoying question. So I try to keep mine very light, “let’s just chat about code, show me you can do basic stuff”, and I’m just constantly disappointed.

        • grabyourmotherskeys@lemmy.world
          link
          fedilink
          arrow-up
          4
          ·
          1 year ago

          It’s rough out there and when you finally find them you they use your offer to get more money from their current job or another offer. Sigh. :)

    • jjjalljs@ttrpg.network
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      1 year ago

      People are taking an hour for

      import requests
      res = requests.get("https://your-domain.com/foo")
      print(res.json())
      

      or javascript’s fetch that I don’t want to type on my phone any more code for? Maybe I should think higher of my skills.

      • Scrubbles@poptalk.scrubbles.tech
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        There’s a bit more to it, my question I mean, but I shit you not more interviewees I’ve had have failed what you just wrote than succeeded.