this post was submitted on 20 Jul 2023
129 points (92.2% liked)

Asklemmy

43402 readers
1357 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] scrubbles@poptalk.scrubbles.tech 12 points 1 year ago (2 children)

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 6 points 1 year ago (1 children)

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 6 points 1 year ago (1 children)

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.

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 3 points 1 year ago* (last edited 1 year ago) (1 children)

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.

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.