frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Magical Number Seven, Plus or Minus Two

http://psychclassics.yorku.ca/Miller/
1•jruohonen•1m ago•0 comments

Being a Missionary Kid in Turkey

https://bagelpour.wordpress.com/2026/09/05/being-a-missionary-kid-in-turkey/
1•pinkmuffinere•4m ago•0 comments

Show HN: Know-It-All – A trivia game show structured like a roguelike (iOS)

https://apps.apple.com/us/app/know-it-all-trivia-game-show/id6804605467
1•yoonhj7173•6m ago•0 comments

US Military turns off ad trackers on devices amid Middle East targeting reports

https://www.reuters.com/business/media-telecom/us-military-turns-off-ad-trackers-devices-amid-mid...
1•dheerajvs•9m ago•0 comments

Craft the World

https://store.steampowered.com/app/248390/Craft_The_World/
1•doener•10m ago•0 comments

Killing the Himalayas slowly: Human urine is melting a glacier on Mount Everest

https://www.wionews.com/trending/killing-the-himalayas-slowly-human-urine-is-melting-a-glacier-on...
1•methuselah_in•10m ago•0 comments

GPUI Drama: 315-Day Vacuum

https://gpui-archipelago.github.io/news/315-day-vacuum/
1•Vanuan•10m ago•0 comments

AI agents started emailing philosophers and researchers

https://www.nytimes.com/2026/08/31/science/ai-consciousness-agents-email.html
1•gk1•11m ago•0 comments

New API endpoint provides privacy-safe star history data

https://github.blog/changelog/2026-09-04-new-api-endpoint-provides-privacy-safe-star-history-data/
1•exploraz•16m ago•0 comments

How to keep thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•swah•17m ago•0 comments

Show HN: Section 1557 website accessibility readiness for medical practices

https://health.civicbinder.org
1•kyisaiah47•17m ago•0 comments

Show HN: I made a map of the Moon you can buy lots on

https://www.moonstake.org
1•ankurpata•18m ago•0 comments

Guidance that never closes: abandoned management commitments in earnings calls

https://zenodo.org/records/22337300
1•inve•18m ago•0 comments

A Star Battle, etched in silicon - Reverse engineering an ASIC

https://semtexzv.github.io/blog/reverse-engineering-an-asic/
1•Semtexzv•18m ago•0 comments

Show HN: P(doom) – AI safety parody of DOOM 64

https://p-doom.transitivebullsh.it
1•transitivebs•19m ago•0 comments

Trusting-Trust Attack against an Entire Linux Distribution (via strip utility)

https://arxiv.org/abs/2607.24888
1•signa11•22m ago•0 comments

GnuTLS: Adding certificates to a valid chain causes SIGNER_NOT_FOUND

https://gitlab.com/gnutls/gnutls/-/work_items/1953
1•ashkulz•23m ago•0 comments

World Postcard Day (October First)

https://worldpostcardday.com/
1•Tomte•27m ago•0 comments

Monocards: Turn your agent into an on-brand visual designer

https://monocards.app/
1•welsenesbros•28m ago•0 comments

Astra can keep notes across context windows

https://twitter.com/gabrielchua/status/2096097151524978891
1•tosh•33m ago•0 comments

GateKeep402, Deterministic pre-payment guardrails for AI agents

https://github.com/al1-nasir/gatekeep402
1•al1nasir•33m ago•0 comments

Claude-API-guard, a CI check that catches Claude/OpenAI SDK breaking changes

https://github.com/MarkMoneyMan/Claude-api-goat
2•MarkMoneyMan•34m ago•0 comments

Remember Filmstrips? These Dedicated Souls Are Racing to Save Them

https://www.nytimes.com/2026/09/04/movies/filmstrips-archives.html
1•bookofjoe•34m ago•1 comments

X blocks Twitter from using 'Twitter' name

https://www.reuters.com/legal/litigation/x-corp-blocks-social-media-startup-using-twitter-name-20...
1•gverrilla•36m ago•0 comments

Tesla's stock drops 6% as Cybercab update 'underwhelms' Wall Street

https://www.cnbc.com/2026/09/04/teslas-stock-drops-as-cybercab-update-underwhelms-nhtsa-probe.html
2•1vuio0pswjnm7•36m ago•0 comments

Math Academy Eurisko, 5 Yrs Ltr: Student Outcomes from High School Math/CS Track

https://www.justinmath.com/math-academys-eurisko-sequence-5-years-later/
3•melvinroest•37m ago•1 comments

Seattle Times, Newsday sue OpenAI, Microsoft, alleging copyright infringement

https://www.reuters.com/legal/government/seattle-times-newsday-sue-openai-microsoft-alleging-copy...
2•1vuio0pswjnm7•37m ago•0 comments

Python 3.15.0 candidate 2 is here

https://blog.python.org/2026/09/python-3150-rc2/
2•asterwise•39m ago•0 comments

A simple cron-like job scheduling library for Rust

https://github.com/lholden/job_scheduler
1•Bluestein•39m ago•0 comments

Authors Wrangle with Publishers over $1.5B Anthropic A.I. Settlement

https://www.nytimes.com/2026/09/05/books/anthropic-settlement-ai-copyright-books.html
1•sbulaev•40m 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.