frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

AI Is Remixing Everything We've Ever Made

https://www.youtube.com/watch?v=9pLCIoBZzd4
1•steamboatwillie•24s ago•0 comments

Should Europe wean itself off US tech?

https://www.bbc.com/news/articles/c3dpr2zkny0o
1•Lyngbakr•7m ago•0 comments

Show HN: AI-powered PR description generator

https://github.com/danielddemissie/pr-desc-cli
1•daniddeme•8m ago•0 comments

Compliance Test (2016) [video]

https://www.youtube.com/watch?v=qj5I0VsADS4
1•nomilk•9m ago•0 comments

Miller-Rabin Speed Testing Examples

https://susam.net/code/web/miller-rabin-speed-test.html
1•susam•9m ago•0 comments

Show HN: Tortured Metaphor, an Open Source Game Studio

https://github.com/Tortured-Metaphor
1•DavidCanHelp•10m ago•0 comments

The Curse of the Generalist

https://alrocar.substack.com/p/the-curse-of-the-generalist
2•alrocar•11m ago•0 comments

524522 Zoozve

https://en.wikipedia.org/wiki/524522_Zoozve
2•nomilk•12m ago•0 comments

Ukraine gives award to foreign vigilantes for hacks on Russia

https://www.bbc.com/news/technology-68722542
2•Lyngbakr•15m ago•1 comments

Neverthrow – Type-Safe Errors for JavaScript and TypeScript

https://github.com/supermacro/neverthrow
1•eYrKEC2•16m ago•1 comments

The Declining Reach of LinkedIn Company Pages in 2025

https://www.meetassembly.com/blog/the-declining-reach-of-linkedin-company-pages
2•doener•16m ago•0 comments

Sütterlin

https://en.wikipedia.org/wiki/S%C3%BCtterlin
1•anonu•16m ago•0 comments

The Coming Robot Home Invasion

https://www.andykessler.com/andy_kessler/2025/08/wsj-home-robots.html
1•walterbell•17m ago•0 comments

Lessons from a Shitty Gardener

https://www.wysr.xyz/p/3-lessons-from-a-shitty-gardener
1•martialg•17m ago•0 comments

Show HN: Stateful LLM inference (no cost for input tokens, not prompt-caching)

1•arkonrad•18m ago•1 comments

The attr() function in CSS now supports types

https://www.amitmerchant.com/attr-function-types-css/
1•speckx•19m ago•0 comments

Show HN: A tool to check if a vibecoded app is hackable

https://overeasy-landing.codapt.app/
2•bunbunpumpkin•20m ago•0 comments

What If AI Doesn't Get Better Than This?

https://calnewport.com/what-if-ai-doesnt-get-much-better-than-this/
2•ewf•20m ago•0 comments

Investors lose billions on US penny stocks as 'pump and dump' scams multiply

https://www.ft.com/content/38c9815b-8ccc-40d5-bcbf-cfdb8b73ffa6
2•pseudolus•21m ago•1 comments

GenAI isn't just a matter of life and death. It's more important than that

https://www.theregister.com/2025/08/18/opinion_column_gen_ai/
1•rntn•23m ago•0 comments

What It's Really Like to Support a Big Family on a Modest Income in America

https://www.wsj.com/personal-finance/children-costs-finances-families-f489be7c
1•impish9208•24m ago•1 comments

Getting Linux nflog and tcpdump packet filters to sort of work together

https://utcc.utoronto.ca/~cks/space/blog/linux/NflogAndTcpdumpFilters
1•speckx•24m ago•0 comments

Class-action suit claims Otter AI records private work conversations

https://www.npr.org/2025/08/15/g-s1-83087/otter-ai-transcription-class-action-lawsuit
9•nsedlet•25m ago•0 comments

Discussing politics at work: Don't, just don't

https://betterthanrandom.substack.com/p/discussing-politics-at-work
15•spking•26m ago•19 comments

Grammarly gets a design overhaul, multiple AI features

https://techcrunch.com/2025/08/18/grammarly-gets-a-design-overhaul-multiple-ai-features/
1•Rohitcss•26m ago•0 comments

PowerSlave Engine for Sega Saturn GPL Source Code

https://github.com/Lobotomy-Software/SlaveDriver-Engine
1•AdmiralAsshat•27m ago•0 comments

Corporate Money Has Ruined Youth Sports

https://jacobin.com/2025/07/corporate-aau-youth-sports-basketball/
2•PaulHoule•27m ago•0 comments

'Tin Man Syndrome' case plagiarized from hoax, sleuths say

https://retractionwatch.com/2025/08/15/tin-man-syndrome-case-plagiarized-from-hoax-sleuths-say/
3•leephillips•29m ago•0 comments

MSNBC to Rebrand to MS Now

https://www.axios.com/2025/08/18/msnbc-rebrand-ms-now-versant
1•cwwc•29m ago•0 comments

Behind the Mic: Real-World Challenges of Voice AI

https://www.trata.ai/blogs/engineering/1
1•hari-trata•30m ago•0 comments
Open in hackernews

I built a tool to chat with research papers using LangGraph and RAPTOR

https://github.com/andres-ulloa-de-la-torre/deep-search-academic
2•scraper01•2h ago

Comments

scraper01•2h ago
I was trying to get up to speed on a new topic for a project and got really tired of juggling a dozen PDFs. You know the drill: download, skim, lose track of which paper had that one good paragraph, repeat. So I hacked together a little Streamlit app to help with this. Basically, you give it a topic and some websites (like arxiv), and it tries to find and download a bunch of PDFs for you. Then it chews on them for a while and gives you a chat box so you can ask questions about the stuff inside.

The tech part that might be interesting: I didn't want to do just a basic vector search on text chunks. I'd read the RAPTOR paper and thought it was a cool idea, so I tried to implement it. It recursively clusters the text chunks and then uses an LLM to summarize each cluster, building up a tree. The hope was it might give more high-level, synthesized answers. The whole multi-step process is held together with LangGraph. It's pretty rough right now. PDF parsing is a nightmare, as usual, so it probably messes up on papers with complex layouts. And the indexing part is kinda slow if you give it a lot to read. It works with local Ollama models or Gemini if you plug in an API key.

I don't have a live demo up because the indexing would probably cook a cheap server, but it should run locally without too much fuss. I'm posting it here mostly to see if this is a problem anyone else has, and if the way I'm trying to solve it makes any sense. If you end up trying it, I'd love to know what breaks or what you think would make it more useful.

The code's here: https://github.com/andres-ulloa-de-la-torre/deep-search-acad...

Thanks.