frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Google Gemini Is Scanning Your Photos – and the EU Said No

1•anju-kushwaha•37s ago•0 comments

Accepted proposal: UUID in the Go standard library

https://rednafi.com/shards/2026/04/go-uuid/
1•ingve•1m ago•0 comments

Amazon DCV – A Better Alternative to VNC

https://aws.amazon.com/hpc/dcv/
1•alhazrod•4m ago•0 comments

Self-healing GitHub CI that won't let AI touch your application code

https://github.com/mosidze/aiheal
2•mosidze•10m ago•0 comments

Show HN: AgentGrade – agent-readiness guide for your site

https://agentgrade.com/
2•usiegj00•11m ago•0 comments

AI Is Killing Open Source SaaS Too

https://nmn.gl/blog/open-source-killed-ai
1•namanyayg•11m ago•1 comments

543 Hours: What happens when AI runs while you sleep

https://michael.roth.rocks/research/543-hours/
2•pramodbiligiri•14m ago•0 comments

PM Carney declares U.S. ties now a 'weakness' in address to Canadians

https://www.ctvnews.ca/politics/article/pm-carney-declares-us-ties-now-a-weakness-in-address-to-c...
2•Teever•15m ago•0 comments

"Ukraine cut out the bloated red tape of military bureaucracy"

https://www.youtube.com/watch?v=1s39U0j2jPA
1•lifeisstillgood•15m ago•1 comments

Rensei – let agents code 3D models and screenshot them. then 3D print

https://github.com/remorses/rensei
3•xmorse•16m ago•0 comments

The State of LLM Bug Bounties in 2026

https://wraith.sh/learn/state-of-llm-bug-bounties-2026
1•WizardX_0x•16m ago•0 comments

CNNs + VLM outperforms pure VLMs on OCR

https://interfaze.ai/blog/cnn-plus-vlm-more-than-vlm
2•yoeven•17m ago•0 comments

Show HN: I built an open source and secure infrastructure for internal apps

https://github.com/RootCX/RootCX
1•seyz•18m ago•0 comments

This time is no different

https://czep.net/26/this-time.html
1•czep•20m ago•0 comments

How I sequenced my genome at home

https://twitter.com/sethshowes/status/2045782975380406623
3•Finbarr•20m ago•1 comments

EU LOTL trust anchors are rotating on April 28: what breaks and how to patch

https://guust.ysebie.be/blog/new-eu-trusted-certificates-updated
2•whizzx•21m ago•0 comments

The Trouble with Transformers

https://roblh.substack.com/p/the-trouble-with-transformers
3•rob_lh•24m ago•1 comments

Time-Variation of Fundamental Constants

https://en.wikipedia.org/wiki/Time-variation_of_fundamental_constants
1•tcp_handshaker•26m ago•0 comments

Why I de-Googled

https://kevinboone.me/why_i_degoogled.html
7•ingve•26m ago•1 comments

Show HN: A chess playground that lets you share board configurations

https://www.chesster.eu
1•MirceaOprea•34m ago•0 comments

Put away your phone and play Pokémon on your Nintendo DS instead

https://alexwennerberg.com/blog/2026-04-15-ds.html
2•abnercoimbre•35m ago•0 comments

We scored 10k Polymarket wallets. Calibration barely predicts profit

https://www.convexly.app/blog/polymarket-10k-wallet-study
3•convexly•36m ago•0 comments

Show HN: Design Graph – a canvas for reviewing parallel HTML variants

https://github.com/noemica-io/design-graph
1•SebastianSosa•37m ago•0 comments

BreachLab Phantom – 32-level post-exploitation wargame on a real Linux box

https://breachlab.org/tracks/phantom
2•atobones•37m ago•0 comments

AgentID – Shared identity. Shared memory. Shared tasks. Lower token costs

https://agentid.live/
1•colapsis•37m ago•0 comments

Koide Formula

https://en.wikipedia.org/wiki/Koide_formula
1•tcp_handshaker•40m ago•0 comments

In a first, Blue Origin uses a recycled rocket to send a satellite into space

https://www.geekwire.com/2026/blue-origin-uses-a-recycled-rocket-to-launch-satellite-for-ast-spac...
2•SilverElfin•40m ago•1 comments

Making Illegal State Unrepresentable

https://blog.frankel.ch/illegal-state-unrepresentable/
3•Tomte•41m ago•0 comments

We Need a New Product Hunt

https://molodtsov.me/2026/04/we-need-a-new-product-hunt/
5•twapi•41m ago•1 comments

You're Invisible on the Internet. Here's the Why

https://medium.com/@simbamudonzvo/youre-invisible-on-the-internet-here-s-the-why-fbe086d99d62
2•TechOnionKing•42m ago•0 comments
Open in hackernews

Ask HN: How are you using LLMs for coding?

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

Comments

benoau•11mo 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•11mo 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•11mo 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.