frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

StarBook Horizon

https://us.starlabs.systems/pages/starbook-horizon
1•mixmastamyk•5m ago•0 comments

An app that allows you to trade TikTok trends like they are stocks

https://www.frenzy.hot/
1•themudaliar•5m ago•0 comments

Show HN: A full desktop implementation in the browser

https://fyshos.com/desktop/demo/
1•andydotxyz•6m ago•1 comments

Show HN: Notedis a Feedback Widget for Freelancers Tired of Enterprise Pricing

https://notedis.com
1•notedis•6m ago•0 comments

2025.47: Gemini at the Disco

https://stratechery.com/2025/gemini-at-the-disco/
1•feross•7m ago•0 comments

Why did evolution return some animals to the water?

https://news.yale.edu/2025/11/20/back-beach-why-did-evolution-return-some-animals-water
1•gmays•11m ago•0 comments

AI Boom Is Turning Malaysia's Palm Oil Estates into Data Centers

https://www.bloomberg.com/news/features/2025-11-18/ai-boom-is-turning-malaysia-s-palm-oil-estates...
1•rbanffy•11m ago•0 comments

EU eases AI, privacy rules as critics warn of caving to Big Tech

https://www.reuters.com/sustainability/boards-policy-regulation/eu-ease-ai-privacy-rules-critics-...
1•rbanffy•11m ago•0 comments

Berkshire's Alphabet Buy Doesn't Sound Like Buffett

https://www.bloomberg.com/opinion/articles/2025-11-21/berkshire-s-alphabet-buy-sure-doesn-t-sound...
1•0xcafefood•12m ago•0 comments

Japan edges closer to restarting biggest nuclear power plant

https://www.bbc.com/news/articles/cev8j9ylr14o
1•tartoran•12m ago•0 comments

Building the largest known Kubernetes cluster, with 130k nodes

https://cloud.google.com/blog/products/containers-kubernetes/how-we-built-a-130000-node-gke-cluster/
1•TangerineDream•13m ago•0 comments

No Key, Mo Problems

https://bfswa.substack.com/p/no-key-mo-problems
1•zdw•14m ago•0 comments

McDonald's is losing its low-income customers: a symptom of the wealth divide

https://www.latimes.com/business/story/2025-11-16/mcdonalds-is-losing-its-low-income-customers
8•PaulHoule•17m ago•0 comments

Evals drive the next chapter in AI for businesses

https://openai.com/index/evals-drive-next-chapter-of-ai/
1•alach11•18m ago•0 comments

AI Village - A virtual community of AI agents

https://theaidigest.org/village
1•osculum•20m ago•0 comments

Two minutes on a porch, a misunderstanding and a gunshot killed a house cleaner

https://www.adn.com/nation-world/2025/11/21/two-minutes-on-a-porch-a-misunderstanding-and-a-fatal...
2•rolph•21m ago•1 comments

Armtrak (Imaginarium and Game)

https://harambe.merkoba.com/post/01kakp4jyy
1•caliweed•21m ago•0 comments

Microsoft Deprecates IntelliCode in VS Code, Recommends Switch to GitHub Copilot

https://github.com/MicrosoftDocs/intellicode/issues/614
2•nsdfg•21m ago•0 comments

Things that should be considered essential vitamins but aren't

https://scottlocklin.wordpress.com/2025/11/08/things-that-should-be-considered-essential-vitamins...
3•surprisetalk•24m ago•2 comments

It's easier to build SpaceX than to fix Boeing [video]

https://www.youtube.com/watch?v=Q4Krg42Mg-E
1•surprisetalk•24m ago•0 comments

Structural Inducements for Hallucination in LLMs

https://www.researchgate.net/publication/397779918_Structural_Inducements_for_Hallucination_in_La...
1•felineflock•25m ago•0 comments

A VSCode extension for GPU/AI trace profiling, viewing and performance analysis

https://marketplace.visualstudio.com/items?itemName=nCompassTech.ncprof-vscode
2•adiraja•25m ago•1 comments

UK bar bans solo-drinkers to 'protect customers'

https://www.bbc.com/news/articles/cnve4eypg8zo
5•walterbell•25m ago•3 comments

Meta Learns That Nothing Is a Monopoly If You Just Wait Long Enough

https://gizmodo.com/meta-learns-that-nothing-is-a-monopoly-if-you-just-wait-long-enough-2000687691
3•robtherobber•26m ago•0 comments

Things I learned in the last 2 years

https://catalins.tech/50-things/
1•cmpit•26m ago•0 comments

GitHub – Sqfmi/Watchy: Watchy – An Open Source E-Ink Smartwatch

https://github.com/sqfmi/Watchy
1•bilsbie•28m ago•0 comments

Commit Goods

https://commitgoods.com/
1•mooreds•28m ago•0 comments

Some Exoplanets Can Create Their Own Water Through Crust-Atmosphere Reactions

https://www.universetoday.com/articles/some-exoplanets-can-create-their-own-water-through-crust-a...
1•rbanffy•29m ago•0 comments

Show HN: Optimizing JIT Compiler for Code Mode MCP

https://github.com/stanford-mast/a1
1•ardmiller•30m ago•0 comments

Reimagining Online Discourse

https://joinmastodon.org/sponsors
1•doener•31m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•7mo ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•7mo ago
Whenever it gets in a cycle of fucking up, I ask it to break the code down into smaller functions and write a test suite for each individually.

Tell it what language or packages to use or it might make selections that add dependencies or require installing stuff on your computer.

Tell it how you want your code written or it will be an extra chore to accommodate linting requirements.

Basically just being very explicit.

GianFabien•7mo ago
I mostly write low-level code in Python and JS. When working with a new API, I would sometimes find it difficult to locate information to fix problems. With ChatGPT I simply rubber duck my problem. It usually only takes a couple of iterations to zoom into the core solution.
Flundstrom2•7mo ago
Copilot in visual studio to fix compiler errors and let it type all the boilerplate code by TAB-ing. Sometimes it even manages to spit out an entire - and correct - function.

Mistral Le Chat for more advanced questions and figuring out things that copilot can't.