Live data from Hacker News

Viewing profile — varshith17

varshith17

HN member
Joined
Thu, Jun 13, 2024, 10:32 AM UTC
HN karma
30
Public activity
42 items

About varshith17

Data Engineer @GS, Researcher working on Deterministic AI Memory. Author of Valori.

Recent public activity

  1. story
  2. story
  3. story
  4. story
  5. comment
    Comment #47087112

    "Best place to work" awards are marketing, not data. No company that's actually great needs to advertise it their employees do that for them. When you see these plastered everywher…

  6. comment
    Comment #46751351

    2 days is nothing, VCs move slower than founders think. Demo review usually takes 1-2 weeks: partner watches it, discusses in Monday meeting, maybe loops in domain expert, then dec…

  7. comment
    Comment #46751341

    Not just you, widespread reports on /r/gmail and Twitter since ~12 hours ago. Likely a bad model push on Google's end. Workaround: check spam folder for legit mail, mark as "not sp…

  8. comment
    Comment #46751335

    Google's spam filter is having a moment. Even emails with perfect auth records are getting flagged - clearly a broken model deployment. Mark legitimate emails as "not spam" aggress…

  9. comment
    Comment #46735084

    Build validation layers, not trust. For structured outputs (invoices, emails), use JSON schemas + fact-checking prompts where a second AI call verifies critical fields against sour…

  10. comment
    Comment #46729674

    Concrete setup: (1) All secrets in 1Password/Bitwarden with CLI, (2) Agent sandbox with no env var access, (3) Wrapper scripts that fetch secrets on-demand and inject at runtime, (…

  11. comment
    Comment #46716151

    Anthropic's prompt engineering docs (docs.claude.com) are secretly the best AI coding guide teaches you how to structure requests that actually work. For tactics: search "AI coding…

  12. comment
    Comment #46716108

    Bending Spoons' playbook: acquire established product, gut the team, run it on fumes with skeleton crew + AI tooling. They did this with Evernote, Meetup, now Vimeo. Classic privat…

  13. comment
    Comment #46716090

    Hardware company LARPing as infrastructure provider. Their wafer-scale chips can't multi-tenant like GPUs, so "enterprise" means "first in line for deprecation" apparently. Cool te…

  14. comment
    Comment #46716080

    "Agentic coding works" and "ship without review" are two different claims. The first is true for constrained tasks, the second is Silicon Valley brain rot. I use Claude Code daily …

  15. comment
    Comment #46716023

    Same reason everyone rolled their own auth in 2010, the problem is simple enough to DIY badly, complex enough that no standard fits everyone. My Claude Code needs SSH access but no…

  16. comment
    Comment #46692966

    Same reason they can't count the 'r's in "strawberry", these models don't actually understand structure, they just autocomplete really convincingly.

  17. comment
    Comment #46692880

    Bulletproofing from AI is like bulletproofing from Stack Overflow in 2010. Wrong question. The real edge is taste, knowing when the AI's boilerplate is wrong, which shortcuts will …

  18. comment
    Comment #46692823

    Made a 20-line bash script that wraps SSH, regex whitelist for safe commands, instant reject for dangerous ones(rm, mv, chmod). Claude Code doesn't even know it's restricted. Produ…

  19. comment
    Comment #46690566

    Clean idea, but commit history tells you activity, not progress. Feels more like a polished status narrator than real insight into what actually shipped.

  20. comment
    Comment #46544393

    Resources: Paper: https://arxiv.org/pdf/2512.22280 , GitHub: https://github.com/varshith-Git/Valori-Kernel , Website: https://valori.systems

  21. story
    Valori – Deterministic Substrate for AI (Code and ArXiv Paper)

    I've published a paper on a fundamental problem in AI systems that I believe has significant implications for our work: "Valori: A Deterministic Memory Substrate for AI Systems." […

  22. comment
    Comment #46451938

    'Debugging turns into archaeology rather than engineering', this is the exact realization that forced me to stop building agents and start building a database kernel. I spent 6 mon…

  23. comment
    Comment #46399731

    Async stack traces are a nightmare. You lose the causality chain completely. We ran into a similar issue with 'Shared Context.' We tried to sync the context between an x86 server a…

  24. story
    Ask HN: What was the hardest bug you tracked down in 2025?

    We talk a lot about shipping features, but I want to hear the war stories. I spent almost a month chasing a silent data corruption issue that turned out to be floating-point non-de…

  25. comment
    Comment #46390669

    Switching GPUs to integer (Quantization) is happening, yes. But that only fixes the inference step. The problem Valori solves is downstream: Memory State. We can accept 'Approximat…