▲ 1 r/RecruitmentHub+1 crossposts

AI in Technical Recruiting

Hi everyone!

We’re a small team working on a tool focused on making technical interviews more reliable and fair, especially as AI becomes increasingly common during interviews.

Right now, we’re doing customer discovery and would really like to speak with recruiters or hiring managers about their experience with:

  • Candidates using AI during interviews
  • How you currently detect or prevent it
  • How much of a problem this actually is
  • What makes technical screening difficult today

We’re not trying to sell anything. We simply want to have a 15–20 minute conversation and learn from people who deal with hiring firsthand.

If you’re a recruiter or hiring manager and would be open to a quick chat, please DM me. I’d really appreciate your perspective!

reddit.com
u/Admirable-Tonight-73 — 8 days ago
▲ 3 r/projects+1 crossposts

I built a real-time 3D real estate visualizer in the browser using Three.js — walk through apartments before they're built

Hey Reddit,

I've been working on a browser-based 3D visualization tool for real estate developers. The idea is simple: show buyers what their apartment will look like before the building is even constructed.

What it does:

  • Load a real GLB building model and explore it in an interactive 3D scene
  • Switch between Day / Sunset / Night / Rain / Snow / Fog with smooth transitions and dynamic lighting
  • Street lights and building windows glow progressively as it gets darker
  • First-person walk-through of apartment floor plans — WASD + mouse
  • Select from multiple floor plans (Studio, 1BR, 2BR, 3BR) before entering
  • Cinematic camera intro that orbits the building on load
  • Auto-rotating presentation mode for sales office use
  • Bloom post-processing for night scenes
  • 4K shadow maps, physically correct lighting
  • EN / RU / TJ (Tajik) language support
  • Mini city environment with animated clouds, trees, parked cars

How it's built:

  • Three.js r128 — rendering, shadows, PBR materials
  • UnrealBloomPass — post-processing glow effect
  • GLTFLoader + DRACOLoader + MeshoptDecoder — compressed 3D model loading (23MB → 5MB with gltf-transform)
  • Raycast collision + hard bounding box for FPS movement
  • Procedural textures — grass, asphalt, concrete all generated via Canvas API, no external image files
  • ACES Filmic tonemapping — cinematic color grading
  • Deployed on Vercel — zero config, instant CDN

The context:

Built this for a real estate developer in Tajikistan. The target use case is a sales office PC (discrete GPU) where a manager walks clients through future apartments. Not trying to run this on mobile — that's a different problem.

Biggest challenges:

  • WebGL context exhaustion in Firefox (had to debug GPU tier detection)
  • Getting browsers to use the discrete GPU instead of Intel integrated (classic laptop problem)
  • Raycast collision with 182 mesh apartment model was killing FPS — solved with hard bounds + single-height rays

Here is deployed demo https://buildviz.vercel.app/

Would love feedback on the architecture, the UX flow, or anything you'd do differently. Also curious if anyone has experience taking something like this to production for real estate clients.

reddit.com
u/Admirable-Tonight-73 — 3 months ago