frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gsxui – Shadcn-style components for Go

https://ui.gsxhq.dev/
1•jackielii•27s ago•0 comments

Future of SaaS

https://mehmetmhy.com/posts/barbell_theory/
1•mehmet_mhy•53s ago•0 comments

JetStream Anti-Patterns: Avoid these pitfalls to scale more efficiently

https://www.synadia.com/blog/jetstream-design-patterns-for-scale
1•jonzu•1m ago•0 comments

All the HTML to PDF Libraries

https://github.com/transformyio/html-to-pdf-libraries
1•eljs•3m ago•0 comments

Zuckerberg's AI optimism blitz using nostalgia to sell AI future amid backlash

https://fortune.com/2026/07/23/zuckerberg-ai-ad-optimism-backlash/
1•1vuio0pswjnm7•5m ago•0 comments

PlayStation Network outage leaves players dreading all-digital future

https://www.polygon.com/playstation-network-down-psn-outage-digital-games-backlash/
1•speckx•6m ago•0 comments

A representation of a chapter of your life through music

https://www.cuecard.live
1•alicoredi•7m ago•0 comments

Data Depot [pdf]

https://datadepot.khoury.northeastern.edu/report/Report.pdf
1•petethomas•7m ago•0 comments

Tesla swapped a solar owner's lease contract for the Book of Enoch

https://electrek.co/2026/07/23/tesla-solar-lease-contract-book-of-enoch/
1•ColinWright•8m ago•0 comments

The Carbon programming language: graduating from the experiment

https://www.youtube.com/watch?v=WJl4ftb5Fxg
1•theanonymousone•8m ago•0 comments

Alphabet's $205B AI spending plan spooks investors

https://www.latimes.com/business/story/2026-07-23/alphabets-205-billion-ai-spending-plan-spooks-i...
1•1vuio0pswjnm7•9m ago•0 comments

Building a DynamoDB Conformance Suite

https://martinhicks.dev/articles/dynoxide-conformance-suite
1•speckx•9m ago•0 comments

Measles Cases and Outbreaks in 2026

https://www.cdc.gov/measles/data-research/index.html
1•impish9208•10m ago•0 comments

The absolute state of state management

https://infrequently.org/2026/07/state-management/
1•agos•10m ago•0 comments

We built an email platform you deploy in your own AWS account

https://sendbunny.co
1•mvsingh•12m ago•2 comments

Build Systems Discussion

https://civboot.github.io/blog/2026-07-24-build-systems.html
2•theanonymousone•12m ago•1 comments

Mistaking making for the thing you've made

https://world.hey.com/jason/mistaking-making-for-the-thing-you-ve-made-bd348df9
1•dotcoma•12m ago•0 comments

AI has a weak spine. We proved it on R/AmIOverreacting

https://modelsagree.com/labs/ai-judges-overreacting
1•hankimprod•15m ago•0 comments

GitHub Mobile: Fix failing Actions checks with Copilot cloud agent

https://github.blog/changelog/2026-07-23-github-mobile-fix-failing-actions-checks-with-copilot-cl...
1•OptionOfT•16m ago•1 comments

Specification for a 100% AI-Free Software Supply Chain

https://rentry.co/organic-code-spec-v1-0-md
2•open-reality•20m ago•0 comments

Ask HN: How do I find startups that are looking for a dev? How to approach them?

3•need_a_work23•20m ago•1 comments

Code is no longer the bottleneck. Understanding is

https://www.coderabbit.ai/blog/code-is-no-longer-the-bottleneck-understanding-is
2•gillh•21m ago•0 comments

Orchestration vs. Choreography in the Agentic Era

https://heysoup.co/notes-lets-dance
2•heysoup•21m ago•0 comments

The Kids' Guide to Piracy

https://friendo.monster/posts/the-kids-guide-to-piracy.html
4•speckx•23m ago•0 comments

Notion Acquires ZeroEntropy

https://zeroentropy.dev/articles/zeroentropy-is-joining-notion/
2•Abh1Works•24m ago•0 comments

Better Than Free

https://kk.org/thetechnium/better-than-fre/
2•rafaelc•25m ago•0 comments

The White House Report on Revitalizing U.S. Scientific Leadership

https://lemire.me/blog/2026/07/22/from-institutions-to-individuals-the-white-house-report-on-revi...
2•ibobev•25m ago•0 comments

Scientists revive a powerful antibiotic that superbugs had defeated

https://www.sciencedaily.com/releases/2026/07/260722032108.htm
2•bilsbie•25m ago•0 comments

Claude Opus 5 – Artificial Analysis

http://artificialanalysis.ai/models/claude-opus-5
1•pranshuchittora•26m ago•0 comments

How MVCC and Transactions Work in RocksDB

https://artem.krylysov.com/blog/2026/07/23/how-mvcc-and-transactions-work-in-rocksdb/
1•ibobev•27m 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.