frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Forst – a back end language that helps you migrate TS back ends to Go

https://forst-lang.org/docs
1•haveyaseen•7s ago•0 comments

Boeing engineers, tech workers reject contract offer

https://www.kuow.org/topics/business/2026-08-21/boeing-engineers-tech-workers-reject-contract-offer
2•Wuzzl•1m ago•0 comments

National Security Science and Technology Strategy [pdf]

https://www.whitehouse.gov/wp-content/uploads/2026/08/NSSTS-082026.pdf
1•jonbaer•1m ago•0 comments

Visual Studio Code 1.0 (2016)

https://code.visualstudio.com/blogs/2016/04/14/vscode-1.0
1•prvt•1m ago•0 comments

Show HN: K8s-audit – 30-second Kubernetes security check (kubectl and jq only)

https://github.com/k8s-security-pro/k8s-audit
1•k8ssecuritypro•4m ago•0 comments

PDPR – Public Dark Pattern Registry

https://pdpr.lyfmail.com/
1•LYFMail•5m ago•0 comments

The Art of the Fugue: Minimizing Interleaving in Collaborative Text Editing

https://arxiv.org/abs/2305.00583
1•danbitengo•6m ago•0 comments

'Darth Vader' makes the case for Flock cameras at city council meeting [video]

https://www.youtube.com/watch?v=7xOURK7-UMs
2•kingleopold•7m ago•0 comments

Show HN: Knoku – cited AI answers from docs, files, and team knowledge

https://knoku.com
1•knoku•8m ago•0 comments

I made a sweater from scratch (it made me insane) [video]

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

The 1991 Unnormalized Linear Transformer (ULTRA)

https://people.idsia.ch/~juergen/1991-unnormalized-linear-transformer.html
2•tosh•12m ago•0 comments

Low-emission zones drive Vietnam's green vehicle transition

https://eastasiaforum.org/2026/08/22/low-emission-zones-drive-vietnams-green-vehicle-transition/
1•Meo_mean•12m ago•0 comments

Show HN: I built a simple free app that helps control ADHD symptoms

https://rawdog-one.vercel.app/
1•dixitbavu•14m ago•0 comments

Code Doesn't Speak for Itself

https://koenvangilst.nl/lab/code-doesnt-speak-for-itself
2•vnglst•15m ago•0 comments

FTC Targets Personalized Pricing, Stops Short of Ban

https://www.consumerreports.org/money/prices-price-comparison/personalized-pricing-surveillance-f...
3•DeepLogin•15m ago•0 comments

"I randomly picked 5 universities and looked up sociology department faculty."

https://www.drvinayprasad.com/p/10-thoughts-about-jason-arday-cambridge
1•jmeister•16m ago•1 comments

Why Social Media's Ad Dominance Is a Billion-Dollar Measurement Illusion

https://www.adexchanger.com/content-studio/why-social-medias-ad-dominance-is-a-billion-dollar-mea...
1•dotcoma•19m ago•0 comments

Espressif Releases Linux BSP for ESP32-S31 RISC-V Boards

https://www.cnx-software.com/2026/08/22/espressif-systems-releases-a-linux-bsp-developer-preview-...
1•jandeboevrie•22m ago•1 comments

ADHD diagnoses and prescriptions have increased globally across all age groups

https://theconversation.com/adhd-diagnoses-and-prescriptions-have-increased-globally-across-all-a...
1•downbad_•22m ago•0 comments

Apple cutting jobs from Siri, Vision Pro teams

https://techcrunch.com/2026/08/21/apple-is-reportedly-cutting-hundreds-of-jobs-from-siri-vision-p...
1•DGAP•25m ago•0 comments

Show HN: VinvAI runs and observes your services to find bugs and perf issues

https://vinv.ai/
3•itsAnshul•25m ago•0 comments

Show HN: hlquery, An open-source C++20 search engine

https://github.com/hlquery/hlquery
1•cfferry•26m ago•0 comments

Does herdr worth it? Harnesses like pi ship most of these features

1•abeauvois•27m ago•0 comments

How do ecommerce businesses handle reconciliation?

1•risly•31m ago•0 comments

Cells are fast and crowded places

https://www.righto.com/2011/07/cells-are-very-fast-and-crowded-places.html
1•ziofill•33m ago•0 comments

No Thank You

https://jsrn.net/personal/2026/08/21/no-thank-you.html
3•adunk•37m ago•1 comments

Eight-year study links more childhood screen time to better cognitive processing

https://spacedaily.com/b-researchers-in-finland-tracked-childrens-screen-time-for-eight-years-exp...
2•floitsch•39m ago•0 comments

The Cool Things of Gleam

https://a.baez.link/3mtdbbp2dmc27
2•birdculture•40m ago•0 comments

Cleaning and Shaping the Airbnb Listings

https://stochastic.blog/cleaning-and-shaping-the-airbnb-listings/
1•Anon84•40m ago•0 comments

Mark Zuckerberg Buys an Irish Castle

https://www.nytimes.com/2026/08/21/world/europe/zuckerberg-castle-ireland.html
4•bookofjoe•44m 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.