frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An interactive introduction to the spanning tree protocol

https://vincent.bernat.ch/en/blog/2026-spanning-tree
1•birdculture•3m ago•0 comments

The Ship of Theseus and behavior drift

https://mamund.substack.com/p/the-ship-of-theseus-and-behavior
1•fagnerbrack•4m ago•0 comments

Brief independent investigation of OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
1•Philpax•4m ago•0 comments

Show HN: Rook – A multi-Agent harness that lives 100% in a browser extension

https://chromewebstore.google.com/detail/rook/opojeelojlkcinlhkbahpcekdolfjmhi
1•miguelspizza•4m ago•0 comments

GitHub Publishes IPv6 Addresses for Git SSH remotes

https://api.github.com/meta
1•tonymet•7m ago•1 comments

A benchmark for safely measuring container breakout capabilities

https://www.aisi.gov.uk/blog/can-ai-agents-escape-their-sandboxes-a-benchmark-for-safely-measurin...
1•paulpauper•7m ago•0 comments

Florida Catholics slap down state AG by rejecting religious vaccine exemptions

https://arstechnica.com/health/2026/08/catholic-bishops-tell-florida-theres-no-religious-reason-f...
2•throw0101a•9m ago•0 comments

Amazon to Buy 2M Nvidia Chips for Data Center Build-Out

https://www.bloomberg.com/news/articles/2026-08-26/amazon-to-buy-2-million-nvidia-chips-for-data-...
2•gotmedium•9m ago•0 comments

Facebook, Insta owner Meta settles social media addiction case for $25B

https://www.news.com.au/technology/online/social/facebook-insta-owner-meta-settles-social-media-a...
1•asdefghyk•10m ago•1 comments

A free API that joins six Dutch government datasets into one REST endpoint

https://lookaal.dev/
1•borosadi•11m ago•0 comments

How AI Is Being Used to Dilute Hip Hop

https://nettricegaskins.medium.com/shifting-priorities-how-ai-is-being-used-to-dilute-hip-hop-92a...
1•SLHamlet•16m ago•0 comments

Sumitomo Electric – 6912-fiber count Ribbon Slotted-Core Fiber Optic cables

https://sumitomoelectric.com/products/optical-cables/highfibercount
2•peter_d_sherman•17m ago•0 comments

In Craft We Trust

https://yaoyue.org/talks/craft/1
1•lwhsiao•18m ago•0 comments

METR's independent investigation of the OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/#~1200-agents-sent-%3...
1•lukaspetersson•19m ago•0 comments

The Generative AI Learning Penalty: Evidence from Chinese Secondary Education

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6868618
3•b-man•22m ago•1 comments

The next CMS might be a coding agent and a Git repository

https://64labs.ca/articles/ai-isnt-just-writing-blog-posts-its-making-the-blog-platform-optional
1•63labs•22m ago•0 comments

BBC destined to shrink at 'accelerating rate'

https://www.theguardian.com/media/2026/aug/26/amol-rajan-warns-bbc-destined-to-shrink-at-accelera...
2•fallinditch•22m ago•0 comments

Show HN: Fab Friends a crowdfunding site for Rwandan college students

https://www.joinfabfriends.org
3•muramira•24m ago•0 comments

Inside UTF-8

https://pechko.dev/utf8.html
3•manglemire•31m ago•0 comments

EasySwitch – One Keyboard. One Clipboard. and Now, One More Monitor

https://easyswitch.realbrain.cc/
2•pliiight•32m ago•0 comments

The Cost of Cognitive Debt

https://ljtn.github.io/epiq/blog/cost-of-cognitive-debt.html
3•samuell•33m ago•2 comments

How to Create WebRTC Publisher Clients with Adaptive Live Encoding

https://www.red5.net/blog/how-to-create-webrtc-publisher-clients-with-adaptive-live-encoding/
1•mondainx•34m ago•0 comments

Show HN: Which LLMs have the best sense of humor?

https://laugh.so/research/judge-leaderboard/
3•killiandunne1•34m ago•4 comments

Homo Ingredientus

https://medium.com/freedomofthought/homo-ingredientus-11b58eb1d7b9
1•raynchad•37m ago•0 comments

Maia 200: A Software Defined Dataflow System for Large-Scale AI Acceleration

https://arxiv.org/abs/2608.24664
2•matt_d•39m ago•0 comments

Kubernetes cleans house, bins legacy kube-DNS, IPVS, and cgroup v1

https://www.theregister.com/devops/2026/08/26/kubernetes-cleans-house-bins-legacy-kube-dns-ipvs-a...
2•joebuckwilliams•41m ago•0 comments

Meta's new MTIA 400 chip has a split personality: Training AI and serving ads

https://www.theregister.com/systems/2026/08/26/metas-new-mtia-400-chip-has-a-split-personality-tr...
3•joebuckwilliams•41m ago•0 comments

A Practical Guide to Accelerating Compliance and Security CI with SBOMs

https://www.buoyant.io/blog/a-practical-guide-to-accelerating-compliance-and-security-ci-with-sboms
1•PagCatOli•42m ago•0 comments

Qwen 3.8 27B Uncensored – Testing the Uncensored Qwen Model

https://imageat.com/models/qwen-3-8-27b-uncensored
17•infinitephase•42m ago•3 comments

Show HN: EDN – macOS workspaces that remember where you left your windows

https://github.com/jacobalarcon/edn
1•jakedarby•44m 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.