frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Frankenstein the Book

https://dn790007.ca.archive.org/0/items/frankenstein00084gut/84.txt
1•DaveZale•23s ago•0 comments

Scientists find a hidden obesity trigger in soybean oil

https://www.sciencedaily.com/releases/2025/11/251129044503.htm
1•Noaidi•1m ago•1 comments

Party in the AI Lab (Parody of Parody "Party in the CIA." By Weird Al Yankovic) [video]

https://www.youtube.com/watch?v=b8yeQnP_ftw
1•lout332•4m ago•0 comments

Trolley Problems

https://neal.fun/absurd-trolley-problems/
1•m-hodges•9m ago•0 comments

Can you spot AI videos from real ones? Take our quiz

https://www.npr.org/2025/11/30/nx-s1-5610951/fake-ai-videos-slop-quiz
1•markerz•9m ago•0 comments

The Ethical Computing Initiative

https://aol.codeberg.page/eci/
1•iris-digital•10m ago•1 comments

Own a Graph

https://staysaasy.com/strategy/2025/11/25/own-a-graph.html
1•thisismytest•12m ago•0 comments

Collapse as a measurable structural event: Flexion Collapse Theory

https://zenodo.org/records/17726503
1•flexionU•12m ago•0 comments

Uncle Nerd Runs a Marathon

https://lupyuen.org/articles/marathon
1•lupyuen•13m ago•0 comments

Law changes could soon bring balcony solar to millions across US

https://www.theguardian.com/us-news/2025/nov/30/balcony-solar-power-states-laws
1•bookofjoe•14m ago•0 comments

Show HN: Geo / AI SEO Robots.txt Audit Tool

https://ai-robots-txt.franzai.com/#domain=nytimes.com
1•franze•19m ago•0 comments

What I don't like about chains of thoughts

https://samsja.github.io/blogs/cot/blog/
2•jxmorris12•19m ago•0 comments

The Steam Machine's HDMI Port Has a Built-In Identity Crisis

https://www.bgr.com/2034651/steam-machine-hdmi-port-problem/
1•josephcsible•22m ago•1 comments

Cory Booker Weds Alexis Lewis in a Private Ceremony

https://www.nytimes.com/2025/11/30/style/cory-booker-wedding-alexis-lewis.html
1•whack•22m ago•0 comments

Screencap.me – Screen Recording in the Browser

https://screencap.me/
1•rickcarlino•24m ago•0 comments

Gated Attention for Large Language Models

https://arxiv.org/abs/2505.06708
1•xnhbx•24m ago•0 comments

Canadian mathematician becomes two-time World Champion in Scrabble

https://ottawacitizen.com/news/ottawa-scrabble-champion
2•heresie-dabord•28m ago•0 comments

Funding: The rpki-client project needs your help

https://www.rpki-client.org/funding.html
1•Panino•28m ago•0 comments

I heat my Essex home with a data centre in the shed

https://www.bbc.co.uk/news/articles/c0rpy7envr5o
1•BerislavLopac•30m ago•0 comments

Google CEO says ‘vibe coding’ made software development ‘so much more enjoyable’

https://www.google.com/url?q=https://indianexpress.com/article/technology/tech-news-technology/go...
9•ashishgupta2209•30m ago•15 comments

What Was the First Bookmark?

https://bookmarkstuff.com/blog/2025-11-30-the-first-bookmark
2•devrundown•33m ago•3 comments

People Who Care: A twelve-year-old on personality in tech product design

https://micahblachman.beehiiv.com/p/people-who-care
2•subdomain•33m ago•0 comments

Calculating compressed air requirements: Step-by-step instructions

https://scc-aircompressors.com/en/calculate-compressed-air-requirement/
2•rustoo•36m ago•1 comments

From Zero to GitHub: Starting a New Jj (Jujutsu) Repo

https://www.visualmode.dev/from-zero-to-github-starting-a-new-jj-jujutsu-repo
3•todsacerdoti•38m ago•0 comments

Show HN: Run LLMs locally with WebGPU

https://qwen-web.sdan.io/
1•sdan•39m ago•0 comments

Using Petri nets as a formal language for LLM-assisted development

https://github.com/pflow-xyz/go-pflow
1•orksliver•44m ago•2 comments

GitHub to Codeberg: My Experience

https://eldred.fr/blog/forge-migration/
3•todsacerdoti•47m ago•0 comments

HashJack Indirect Prompt Injection Weaponizes Websites

https://www.infosecurity-magazine.com/news/hashjack-indirect-prompt-injection/
3•nobody9999•49m ago•1 comments

How do we keep apps maintained on Flathub?

https://tim.siosm.fr/blog/2025/11/24/building-better-app-store-flathub/
4•coffeeaddict1•50m ago•0 comments

Interslavic

https://en.wikipedia.org/wiki/Interslavic
3•ingve•51m ago•0 comments
Open in hackernews

Ask HN: How do you send large sets of data to an LLM

2•obayesshelton•7mo ago
So, I am hitting limits with the amount of data I am sending to Claude via the API.

I am trying to send about 5000 comments but I would love to send more but I am hitting limits of the message size.

What are some good design patterns when sending large sets of data to an LLM?

I ideally need to send all the data together at it gives context to the overall prompt.

Comments

curious_curios•7mo ago
Some approaches we’ve used:

- Group the comments by theme, then pass groups to the LLM to summarize/deduplicate then pass the outputs of that as context.

- RAG where only relevant parts are included in the context.

- Use an LLM with a larger context window (like Gemini pro)

obayesshelton•7mo ago
Yeah, I think I need to use Gemini

Question, how if possible could you query rows in a table?

Surely the better approach would be to have some sort of connection to table rows?