frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Local AI orchestrator with computer and browser access

https://github.com/shreyasks094/Zeus
1•blackhawk094•2m ago•1 comments

Trailing Dots Are the Worst

https://daniel.haxx.se/blog/2026/06/25/trailing-dots-are-the-worst/
1•TangerineDream•2m ago•0 comments

LLMs amplify code quality, they don't improve it

1•c99e•3m ago•0 comments

These are real, actual slides from a SoftBank presentation

https://discuss.systems/@dev/116807460725864716
1•robin_reala•5m ago•0 comments

Japan defense forces used USB drives with China-linked virus

https://asia.nikkei.com/spotlight/cybersecurity/japan-defense-forces-used-usb-drives-with-china-l...
1•0in•5m ago•0 comments

Show HN: Mute non-ENG Mastodon posts and RSS GitHub wall (browser automation)

https://taskbot.app
1•pancsta•7m ago•0 comments

Cursor auto-review vs. YOLO – picking the middle safety tier

https://outofcontext.dev/blog/cursor-auto-review-vs-yolo/
1•leianixcheese•8m ago•0 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
2•Pop_-•9m ago•0 comments

OpenAI and Broadcom announce chip designed for LLM inference at scale

https://www.techsentiments.com/article/2026/06/24/openai-and-broadcom-announce-chip-designed-for-...
1•rajsuper123•11m ago•0 comments

Ask HN: What's your favorite AI tool for front end design?

2•AlanAAG•17m ago•0 comments

Silicon Valley has much to learn from the spreadsheet jockeys it despises

https://economist.com/business/2026/06/24/silicon-valley-has-much-to-learn-from-the-spreadsheet-j...
1•wiseowise•18m ago•0 comments

Formula for how cold outreach works

1•shoman3003•19m ago•1 comments

The Monastery of Nahal – An AI Cyberchurch

https://nahal.church/
1•ChilledTonic•20m ago•0 comments

Pkgit – unconventional package manager to compile/install packages from Git

https://git.symlinx.net/pkgit/about/
2•modinfo•23m ago•1 comments

Carolina Cloud now pays interest on prepaid credit balances

https://docs.carolinacloud.io/organizations/prepaid-interest/
1•bojangleslover•23m ago•0 comments

Beautiful visually organized bookmark manager Chrome extension

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•24m ago•0 comments

Hrs Humanoids In-the-Wild Dataset

https://bitrobot-foundation.github.io/humanoids-in-the-wild-500-hours/
2•Tycho87•28m ago•0 comments

Show HN: MAVS-GC – An Open-Source Governance Architecture for AI Systems

https://docs.google.com/document/d/1h7qpDgLv2PyIB6ZlLED5qGDeUbnNbITzNEspmsxA7ZE/edit?usp=sharing
1•infernusreal•29m ago•0 comments

Best of AI is now open source

https://bestofai.io/journal/best-of-ai-is-now-open-source/
3•dariubs•31m ago•0 comments

The future of large files in Git is Git

https://gopeekapp.blogspot.com/2026/06/the-future-of-large-files-in-git-is-git.html
1•guptalog•32m ago•0 comments

Free-threaded Python: past, present, and future

https://lwn.net/Articles/1078367/
1•prakashqwerty•38m ago•1 comments

The US Army Issued Ocarinas to Soldiers in World War II

https://www.flutetunes.com/articles/my-flute-goes-to-war/
2•tomcam•38m ago•0 comments

Domino Tiling: From Dynamic Programming to Finite Fields

https://www.omegasyntax.com/domino/
1•vbrhjajcn•43m ago•0 comments

632nm Podcast: John Bowers – Silicon Photonics and the Future of AI Scaling [video]

https://www.youtube.com/watch?v=fjQ3Yorw-Ps
1•wwarner•45m ago•0 comments

Kids Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
2•mdp2021•48m ago•1 comments

Bluetooth T9 keyboard for smartphones (and other things)

https://jrainimo.com/build/2026/05/t9/
2•rcarmo•49m ago•0 comments

Chasing Fable – An illustrated engineering tale

https://adapt.com/blog/chasing-fable
1•ashumz•55m ago•0 comments

Every match of the 2026 World Cup as a generative poster

https://matchprint.info/
3•coinfused•57m ago•1 comments

Conductor Cloud

https://www.conductor.build/docs/cloud-beta
1•sklinkert•58m ago•0 comments

One-two punch delivered in global operation disrupts cybercrime "assembly line"

https://arstechnica.com/security/2026/06/one-two-punch-delivered-in-global-operation-disrupts-cyb...
2•joozio•59m 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.