TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What's the most interesting technical screening you've encountered?

9 点作者 vvoruganti10 个月前
There&#x27;s always a bunch of discourse around the right ways to screen candidates for technical abilities. Arguments around if algorithm challenges (LeetCode, Hackerrank) or whiteboarding accurately judge people&#x27;s abilities. Often I see questions around if the challenge really reflects the day to day job well, and if they are game-able with books like cracking the coding interview gaining popularity<p>I&#x27;ve also heard horror stories with take home projects that require multiple days of work, generally unpaid, and in the least charitable scenarios feel exploitative and like the company is just getting free labor.<p>So I was wondering what are alternatives that actually work? Some interesting examples I&#x27;ve encountered over the years include:<p>- Praetorian&#x27;s Tech Challenges - https:&#x2F;&#x2F;www.praetorian.com&#x2F;challenges&#x2F;<p>- Fly.io&#x27;s Gossip Glomers - https:&#x2F;&#x2F;fly.io&#x2F;dist-sys&#x2F;

5 条评论

muzani10 个月前
My favorite was interviewing with Ludeon (known for Rimworld). It was about 1-2 hours long. We whiteboarded on Google Docs, which kinda sucked, but it&#x27;s not as bad as an actual whiteboard. I flopped the test badly, but it was a great learning experience.<p>Start with icebreaker questions, what kind of games do you like and why? Go into slightly harder questions - a common request is adding seeds to plants in Rimworld, yes or no?<p>Then go into the hard technical question - how would you know which part on the screen the caravan should stop at? How would you determine where civilization is on a map? The smart answer is akin to a Monte Carlo simulation, first time I learned of it. Just throw darts (aka sample random points) on the map, give it some civilization rating, then triangulate from there. There&#x27;s a further optimization where you can search around doors.<p>It&#x27;s great because these questions are directly related to the work itself, and you can make a good judgement of someone&#x27;s abilities in a few hours without needing several sessions of interviews.<p>For something like banking, I&#x27;d ask 1) How do you send a PIN securely from an app? 2) Ok, but how do you do biometrics when the API requires a PIN login? 3) Now let&#x27;s say we allow users to KYC from an app. How do you detect that someone isn&#x27;t AI generating their images? You can force users to only send images taken through the app, but an attacker will be able to spoof the app and directly send their image to the API bypassing the app.
yao42010 个月前
CTF style challenges like praetorian are the standard for offensive security roles. They are a fun time and really let the teams understand how you approach things.<p>Only bad experience with that was patreons ctf, the containers didn’t work so I spent the hour interview trying to get it to run. Horrible experience.
评论 #41121776 未加载
francisofascii10 个月前
Role play: you pretend it is your first day at the company. The two interviewers take turns acting out different people at the company. You have to pretend to call different people at the company to diagnose a problem. The various characters offer different clues to the issue.
评论 #41120925 未加载
评论 #41121463 未加载
id0010 个月前
Never liked LeetCode style questions, so for frontend screening interview, I used to ask to write a tic-tac-toe game with no networking (eg. both players use the same mouse). It&#x27;s usually provided enough signal in 30-45min to make a decision to pass candidate to the next stage or not
评论 #41121813 未加载
drdrey10 个月前
For a compiler role at Apple, was given an assembly printout and asked “what does this do?”