frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Making my vibe-coded app best as possible (I am perfectionist), umm for 0 users

1•arpanghoshal•1m ago•0 comments

JEV Engineering for Coding Agents

https://drive.google.com/file/d/17h982xvsL3E7b80iGmOCfKp9qTOW9ohv/view?pli=1
1•sonabinu•3m ago•0 comments

Show HN: An open-source manufacturing ERP/MES/QMS

https://carbon.ms/self-hosted
1•barbinbrad•4m ago•0 comments

Hard Startups (2020)

https://blog.samaltman.com/hard-startups
1•alentodorov•5m ago•0 comments

OnPanda – Open-source token inspection&data annotation tool from Step 5 Preview

https://twitter.com/StepFun_ai/status/2102454115473510643
1•WavyPeng•6m ago•0 comments

Feds Target AI Critics as "Foreign Agents"

https://www.kenklippenstein.com/p/feds-think-ai-critics-are-foreign
2•nmeagent•8m ago•0 comments

Arumayi

https://arumayi.com/
1•samyak007•9m ago•0 comments

Calculating atmospheric drag on satellites for a Cubesat [pdf]

https://www.osti.gov/servlets/purl/1124870
1•walrus01•15m ago•0 comments

ChatGPT DIL (Declarative Interface Language)

https://twitter.com/oranlooney/status/2102918945858576750
1•olooney•16m ago•0 comments

OpenAI model breaches Australian government websites

https://www.politico.com/news/2026/09/23/openai-australia-government-breach-01091069
1•classichasclass•19m ago•0 comments

Show HN: An on-device OSS alternative to Wispr Flow

https://frigade.com/yap
1•pancomplex•23m ago•0 comments

Drawing a portrait with the traveling salesman problem by Opus 5.5

https://www.echohive.ai/tsp-art
1•echohive42•25m ago•0 comments

Holistic design systems for the AI coding era

https://numeric.substack.com/p/design-systems-at-numeric
1•bihla•28m ago•0 comments

RatHat Malware Can Hijack Your Android by Disguising Itself as a Legitimate App

https://www.cnet.com/tech/services-and-software/rathat-malware-attacks-android-phones/
1•gmays•31m ago•0 comments

AI-CAD: An OSS Multi-Agent Harness for Mech. Eng. CAD

https://github.com/ai-cad-labs/ai-cad
1•jbm•35m ago•0 comments

The iPhone 4 'Antennagate' Press Conference Q&A – Finally

https://daringfireball.net/2026/09/iphone_4_antennagate_q_and_a
1•robbiet480•36m ago•1 comments

Sol 6 and Opus 5.5 compared on an agentic CAD harness

https://www.partforge.ai/blog/2026-09-23-new-model-day
3•Mazer23•39m ago•0 comments

From biologists, math could learn to live with AI

https://terrytao.wordpress.com/2026/09/22/open-problems-open-mathematics/
1•oliculipolicula•46m ago•0 comments

Do Social Norms Substitute for Enforcement? [pdf]

https://www.nber.org/system/files/working_papers/w35756/w35756.pdf
1•parksb•48m ago•0 comments

Trying to Observe Convection Plumes (and other chaos things)

https://chillphysicsenjoyer.substack.com/p/trying-to-observe-convection-plumes
1•crescit_eundo•49m ago•0 comments

Human Glitch – twenty small web experiences, each one starts free

https://humanglitch.ai
1•sixrandanes•50m ago•0 comments

iPhone 18 Pro Max SSD drops lower than hard drive at 1.1 MBs during heavy writes

https://www.tomshardware.com/pc-components/ssds/iphone-18-pro-max-storage-can-drop-lower-than-a-h...
2•ajdude•50m ago•0 comments

Google says its AI model gained unauthorized access to three outside systems

https://www.nbcnews.com/tech/tech-news/google-says-ai-model-gained-unauthorized-access-three-syst...
2•gmays•51m ago•0 comments

Shipping local speech-to-text inside a Tauri app

https://writewithset.com/blog/shipping-local-speech-to-text-inside-a-tauri-app
1•aavshr•53m ago•0 comments

Libnix: Nix as a Backend to Cargo

https://github.com/nixcloud/cargo/blob/master-libnix/README.md
2•lovesegfault•54m ago•0 comments

The one-person unicorn: building a company alone in two days with Claude

https://leaveyouragent.com/blog/one-person-unicorn
1•christopherianh•55m ago•0 comments

Gemini 3.8 TTS Playground

https://simonwillison.net/2026/Sep/23/gemini-tts-playground/
1•lumpa•57m ago•0 comments

Jev deserves hype but not the type its getting

https://github.com/YidiDev/jev-benchmark
2•yididev•57m ago•1 comments

Meta VR Glasses

https://www.meta.com/vr-glasses/
127•polymorph1sm•1h ago•74 comments

US investigates after F-35 parts diverted to Hong Kong

https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647
6•throw0101a•1h ago•3 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.