frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Americans are vibe-coding trading algorithms

https://www.wsj.com/tech/ai/the-ai-shift-turning-everyday-investors-into-mini-quant-funds-ebe4d45f
1•simonpure•40s ago•0 comments

A cross-chain DEX for atomic swaps, without middleman

https://basicswapdex.com/
2•dRK-U•1m ago•0 comments

Nutrient-supplemented carbonized aerogels for oil adsorption and biodegradation

https://www.sciencedirect.com/science/article/pii/S2666821126003583
1•wslh•4m ago•0 comments

Ryoku – A hand-built Omarchy alternative

https://ryoku.dev/
1•hkalbasi•5m ago•0 comments

Show HN: Kadō – open-source habit tracker, with non-binary habit score, for iOS

https://github.com/scastiel/kado
3•scastiel•8m ago•0 comments

A/I shuts down – Stay human

https://keepitfree.ai/announcements/a/i-shuts-down-stay-human/
3•captainmuon•8m ago•0 comments

From Microservices to Microcells

https://zozo123.github.io/microservices-to-microcells/
1•zozo123-IB-IL2•11m ago•0 comments

Show HN: Truffle – Ask questions about your codebase in plain English, in Slack

https://asktruffle.com/
1•TwoTrickPony•12m ago•0 comments

Show HN: Local 3D LLM Sandbox a tiny assistant with an attitude

https://github.com/franciscocarloserra/llm-sandbox/
1•FranciscoCarlos•14m ago•0 comments

These Cyborg Cockroaches Could Save Your Life

https://www.wired.com/story/cyborg-cockroaches-disaster-response/
1•Brajeshwar•16m ago•0 comments

Show HN: Appreciate art with the White Lotus intro

https://art.darebuild.com/
1•jimhi•16m ago•1 comments

She lost her sight. Her billionaire father bet on a daring new treatment

https://www.washingtonpost.com/technology/2026/09/06/she-lost-her-sight-her-billionaire-father-be...
1•pseudolus•16m ago•1 comments

Design Patterns

https://en.wikipedia.org/wiki/Design_Patterns
1•tosh•18m ago•0 comments

GPT-6 Astra soundly defeats Fable 5.1 on recognizing handwritten corrections

https://dorrit.pairsys.ai/
3•svcrunch•19m ago•1 comments

Neither a borrower nor a lender be; For loan oft loses both itself and friend

https://shakespeare.mit.edu/hamlet/hamlet.1.3.html
3•Eridanus2•19m ago•0 comments

From Shahed to Geran: How Russia Continues to Reinvent the One-Way Attack Drone

https://www.csis.org/analysis/shahed-geran-how-russia-continues-reinvent-one-way-attack-drone
1•atlasunshrugged•19m ago•0 comments

I track LLM API prices daily, found a 33x cost gap in the same model

1•costpertoken•19m ago•0 comments

Token Tap: extract design tokens from any webpage

https://tokenflow.gumroad.com/l/nkyrao
1•chrarmst•23m ago•0 comments

Freelance writer (memoirs, fantasy, and speculative fiction)

https://www.reddit.com/r/forhire/comments/1w8xeeg/for_hire_creative_ghostwriter_emotionally_complex/
1•ElysiumAbove•24m ago•0 comments

Industrial-Strength Natural Language Processing

https://spacy.io/
2•Bluestein•24m ago•0 comments

Majority Russian-speaking city in Ukraine considers language ban in the arts

https://www.bbc.com/news/articles/c33kzvgn8pyo
2•geox•32m ago•0 comments

Show HN: Automatically Save 60% on Amazon

https://chromewebstore.google.com/detail/findcheap/fpghkhnkfjlenapcdahgaafenfaopidn
1•givesushi•32m ago•0 comments

How Williamsburg Lost Its Swag (2026)

https://slate.com/business/2026/09/williamsburg-brooklyn-tech-bros-gentrification.html
1•mistyvales•32m ago•0 comments

New York City pausing some AI tools in schools

https://www.thehindu.com/news/international/why-is-new-york-city-pausing-some-ai-tools-in-schools...
2•noobplus•33m ago•1 comments

Turn Golang packages into typed JavaScript packages with WebAssembly

https://github.com/paulgrammer/gowasm
2•paulgrammer•33m ago•0 comments

The Craft of Software Scoping

https://www.akashtandon.in/technology/2026-09-06-the-craft-of-software-scoping/
2•akashtndn•34m ago•0 comments

Asahi Linux Now Officially Supports Apple M3 Macs – With Caveats

https://www.phoronix.com/news/Asahi-Linux-Official-M3
18•mdp2021•34m ago•1 comments

Terence Tao on "Solving Maths Problems Prematurely with AI Methods

https://mathstodon.xyz/@tao/117207856734787448
2•birdculture•36m ago•0 comments

Some tools should not require you to create an account

https://spliit.app/blog/why-spliit-doesnt-ask-you-to-create-an-account
2•scastiel•38m ago•1 comments

Extracting Steering Vectors from J space

https://darshanmakwana412.github.io/2026/09/extracting-steering-vectors-from-j-space/
1•martianvoid•39m 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.