frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Python's http.server – Add support for HTTP Range header in HTTPServer

https://github.com/python/cpython/pull/118949
1•gregsadetsky•1m ago•0 comments

Show HN: An open-source workspace for your agents

https://github.com/gigeey/launchpad-studio
1•SEArongo•3m ago•1 comments

A gas-enshrouded and gas-reddened black hole at cosmic dawn

https://www.nature.com/articles/s41586-026-10846-4
2•diwank•4m ago•0 comments

DeepSeek V4 Pro at 207 tok/s with the full 1M context, no quantization

https://runinfra.ai/inference-api/deepseek-v4-pro
2•OsamaJaber•5m ago•0 comments

Cross-Sectional Stock Selection: Where Returns Come from and Why Models Fail

https://wangqiao.me/posts/cross-sectional-stock-selection-models/
1•unliftedq•8m ago•0 comments

An app to streamline data analytics – and do it cheaply

https://app.verbagpt.com/
1•symuz•12m ago•0 comments

AGI-64 Brings Sierra Adventures to the Commodore 64

https://meanhamster.com/news/agi-64-brings-sierra-adventures-to-the-commodore-64
2•erickhill•14m ago•0 comments

Why Young Men Are Abandoning the Workforce

https://www.wsj.com/opinion/free-expression/young-men-are-abandoning-the-workforce-a021228a
2•bilsbie•24m ago•2 comments

BlockArena: AI-Generated FPS Game

https://blockarena.puter.com/
1•ent101•27m ago•0 comments

AI Agent Safety Is Still Thinking Like Permissions

https://jeffreyflynt02.medium.com/ai-agent-safety-is-still-thinking-like-permissions-45878337bd98
4•jflynt76•27m ago•0 comments

Why I vibecoded my own terminal multiplexer

https://www.codedsleep.com/posts/wv-multiplexer
1•codedsleep•29m ago•0 comments

Show HN: Adding friction to my automatic open Claude reaction

2•aqureshi8•30m ago•0 comments

Hacking Legends

https://opensourcelegends.com/hacking-legends
1•buffer_overlord•32m ago•0 comments

Rare things become common at scale (2014)

https://longform.asmartbear.com/scale-rare/
1•mooreds•33m ago•0 comments

Protecting water systems from cyberattacks: 5 steps cities can take now

https://www.smartcitiesdive.com/news/protecting-water-systems-cyberattacks-5-steps-cities/827560/
2•mooreds•33m ago•0 comments

Forecasting Andean rainfall and crop yield from influence of El Niño on Pleiades

https://www.nature.com/articles/47456
1•mooreds•34m ago•0 comments

Why Chinese Citizens Are More Optimistic About AI Than Americans

https://www.bloomberg.com/news/articles/2026-08-14/why-ai-optimism-is-so-much-higher-in-china-tha...
2•pella•34m ago•0 comments

PPS Watch – The Most Accurate Watch That Doesn't Tell Time

https://www.instructables.com/PPS-Watch-the-Most-Accurate-Watch-That-Doesnt-Tell/
1•sudo_cowsay•37m ago•0 comments

Code Is the Byproduct

https://yagmin.com/blog/code-is-the-byproduct/
2•lubujackson•42m ago•0 comments

Path Protocol – an open-source browser precision game and course editor

https://github.com/argentquest/protocol
2•EricMSilver•47m ago•0 comments

Inverse Problem

https://en.wikipedia.org/wiki/Inverse_problem
2•soupspaces•49m ago•0 comments

Physicists discover a hidden gluon structure inside protons

https://www.sciencedaily.com/releases/2026/08/260815064805.htm
5•gradus_ad•49m ago•0 comments

Play Anthakshari Online

https://anthakshari.ai/
3•hareeshimo•53m ago•0 comments

Israeli minister calls for killing '30 to 40′ Palestinians in Gaza nightly

https://www.aljazeera.com/news/2026/8/16/israeli-minister-calls-for-killing-30-to-40-palestinians...
27•LAC-Tech•57m ago•6 comments

Prolly: A content-addressed ordered map built on prolly trees

https://github.com/crabbuild/prolly
2•forhappy•59m ago•0 comments

Show HN: Continuum – Financial simulations for DIY multimillionaires

https://continuum-app.xyz/
3•charleswcho•1h ago•5 comments

Wallflower – A Social Reader

https://thewallflower.app/about
2•tldrthelaw•1h ago•0 comments

Rhombus 1.1 is now available

https://blog.racket-lang.org/2026/08/rhombus-v1.1.html
14•spdegabrielle•1h ago•5 comments

Social Processes and Proofs of Theorems and Programs (1979)

https://dl.acm.org/doi/10.1145/359104.359106
4•lioeters•1h ago•0 comments

Harvestman Spider with a 'Black Bunny' Head Captured on Video

https://allthatsinteresting.com/bunny-harvestman-spider
2•thunderbong•1h ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

2•mraza007•1y ago
What have been your tips and tricks when coding with LLMs

Comments

benoau•1y 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•1y 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•1y 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.