frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ironic-Python-Agent: Container HardwareManager Security Model Misimplemented

https://seclists.org/oss-sec/2026/q3/488
1•runningmike•1m ago•0 comments

Show HN: I turned X's ranking algorithm into a game video

https://x-algorithm-weights.vercel.app
1•lime66•3m ago•0 comments

Are You Using AI? Do Not Forget Your Whip

https://skyecleary.substack.com/p/are-you-using-ai-do-not-forget-your
1•plastic-enjoyer•5m ago•0 comments

Roadmaps to Unicode Plane 1: Supplementary Multilingual Plane

https://www.unicode.org/roadmaps/smp/
1•Bluestein•7m ago•0 comments

OpenRouter: Unified LLM API with Routing and Fallbacks

https://trpevski.com/blog/openrouter-unified-llm-api-with-routing-and-fallbacks/
1•dzugumot•8m ago•0 comments

Multi-model chatbot back ends: contracts, routing, and fallbacks

https://medium.com/@CometAPI_/choose-the-best-backend-api-for-a-multi-model-ai-chatbot-b1e843f9cbf4
1•WavyPeng•9m ago•0 comments

Beyond Source: An Empirical Study of Python Bytecode Security Risks

https://arxiv.org/abs/2608.12853
1•runningmike•12m ago•0 comments

Of felt hats, feathers, macaroni, and weasels

https://languagelog.ldc.upenn.edu/nll/?p=24590
1•Bluestein•12m ago•0 comments

NASA Swift Boost Spacecraft Prepares to Continue Mission

https://science.nasa.gov/blogs/swift/2026/08/11/nasa-swift-boost-spacecraft-prepares-to-continue-...
2•croes•16m ago•0 comments

Show HN: Security scanner for SaaS build with AI

https://sentrint.com/sample
1•Gourabdg•17m ago•0 comments

Not Even Taste Would Be Left (Probably)

https://sebastian.graphics/blog/not-even-taste-would-be-left-probably.html
1•kasumispencer2•17m ago•0 comments

DeepSeek Harness developer preview: Everything is a plugin

https://www.deepseek.com/harness/en/
2•fernvenue•21m ago•0 comments

Spain extends Almaraz nuclear plant operations through 2030

https://www.reuters.com/business/energy/spain-extends-almaraz-nuclear-plant-operations-through-20...
2•mpweiher•22m ago•0 comments

Gitlawb Node, Federated Git server in Rust

https://github.com/Gitlawb/node
2•amrit_mirch•25m ago•0 comments

Noviz AI open source code launched for ERP agent architecture

2•tajdink•26m ago•0 comments

Using agents to create 3Blue1Brown-style visual explanations of research papers [video]

https://www.youtube.com/watch?v=nWOWlb0596o
3•yllberisha•28m ago•0 comments

From assistance to execution: How enterprises put AI to work

https://openai.com/index/how-enterprises-put-ai-to-work/
2•vismit2000•29m ago•0 comments

Why Not Always OCR?

https://bankstatementconverter.com/blog/posts/2026-08-14-why-not-always-ocr/
2•4pkjai•29m ago•1 comments

Ask HN: Move AI news from Hacker News to somewhere else?

4•thomasfl•35m ago•2 comments

37signals Manager Playbook

https://basecamp.com/managers
2•damethos•36m ago•0 comments

Issues Reaching Status.claude.com

https://anthropic.statuspage.io/incidents/kmbpgrsszf72
2•mohsen1•37m ago•0 comments

Show HN: Native macOS SSH config manager with in-process tunnels

https://www.sshmanager.app/
1•CodeLieutenant•38m ago•0 comments

What Most Developers Get Wrong About Building a Career in Tech [video]

https://www.youtube.com/watch?v=K3SR37pIzVs
1•pierrephpguru•40m ago•0 comments

Show HN: Headlines

https://pzlgames.com/games/headlines/
1•pompomsheep•41m ago•0 comments

AirSpace, Redux

https://kylechayka.substack.com/p/airspace-redux
1•aloukissas•41m ago•0 comments

Smartphone Innovation Is Moving Beyond Annual Hardware Upgrades

https://www.forbes.com/sites/timbajarin/2026/08/11/smartphone-innovation-is-moving-beyond-annual-...
1•01-_-•41m ago•0 comments

OpenAI's Hugging Face Breach Fuels Fresh Calls for AI Regulation

https://www.forbes.com/sites/barrycollins/2026/07/22/rogue-openai-attack-fuels-demands-to-rein-in...
1•01-_-•42m ago•0 comments

NSA spied through Angry Birds, other apps: report (2014)

https://www.nbcnews.com/tech/tech-news/nsa-spied-through-angry-birds-other-apps-report-flna2d1200...
2•downbad_•42m ago•0 comments

Superluminal Profiler is now available for Linux

https://superluminal.eu/applications/linux/
1•dodomodo•42m ago•1 comments

You're Back in the Room (Citrix NetScaler Pre-Auth RCE CVE-2026-8452(?))

https://labs.watchtowr.com/youre-back-in-the-room-citrix-netscaler-pre-auth-rce-cve-2026-8452/
1•unknownhad•43m 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.