frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Best US- and EU-hosted abliterated models with no input/output prompt retention

https://next.abliteration.ai
1•thomadev0•29s ago•1 comments

Instagzam and Other Logo Redesigns

https://creolened.com/instagzam-and-other-logo-redesigns/
1•meetpateltech•4m ago•0 comments

The other Sean Byrne doesn't exist

https://conic.al/writing/the-other-sean-byrne-doesnt-exist/
2•rdl•4m ago•0 comments

Reconsidering O_CREAT|O_DIRECTORY

https://lwn.net/Articles/1085617/
1•pykello•6m ago•0 comments

BibleMigo- where the Bible meets technology and game mechanics

https://www.biblemigo.com/
1•mosesmanzana•6m ago•0 comments

App:Unforgetful

https://marco.org/2026/08/14/unforgetful
1•shivaraj1996•6m ago•0 comments

An Idea for a New Form of Media

3•tsydenzhap•10m ago•0 comments

Comma.ai Launches a PCIe Gen4 X4 to USB4 Dock with Open-Source Firmware

https://www.phoronix.com/news/Comma.ai-PCIe-Gen4-USB4-Dock
2•ferryth•12m ago•0 comments

Best AI solution to hunt for buffer overflows in open source apps?

1•firefax•14m ago•0 comments

VTCode

https://github.com/vinhnx/VTCode
1•handfuloflight•18m ago•0 comments

Vivodyne launches largest human biological datacenter

https://www.businesswire.com/news/home/20260812148428/en/Vivodyne-Launches-the-Worlds-Largest-Hum...
1•george_max•19m ago•0 comments

Peter Sarnak on "The AlphaZero Test" for Mathematics

https://www.ams.org/journals/notices/202607/noti3373/noti3373.html
1•the-mitr•21m ago•0 comments

People Who Will Thrive in the AI Age

https://www.theatlantic.com/ideas/2026/06/ai-open-ai-anthropic/687689/
3•jdkee•25m ago•0 comments

destruction-certificate.txt

https://stallman.org/articles/destruction-certificate.txt
2•lr0•32m ago•0 comments

Dynatrace to buy AI observability startup Arize for $915M

https://app.dealroom.co/news/note/dynatrace-to-buy-ai-observability-startup-arize-for-915m
1•doughnutstracks•34m ago•0 comments

Mesa activists oppose Japanese data center, seek audience with city council

https://www.abc15.com/news/region-southeast-valley/mesa/mesa-activists-oppose-japanese-data-cente...
1•spking•34m ago•0 comments

Show HN: Supervice – process supervisor for agentic processes. zero dependencies

https://github.com/rodmena-limited/supervice
1•rodmena•35m ago•0 comments

Tron (Hacker)

https://en.wikipedia.org/wiki/Tron_(hacker)
3•lr0•35m ago•0 comments

Water Ring Toss Game

https://projects.arkon.digital/threejs/water-ring-toss-game/
2•memalign•43m ago•0 comments

Performative Agreement — The False Alignment Trap

https://hbr.org/2026/07/the-false-alignment-trap
1•soupspaces•44m ago•0 comments

Flock Say Their Surveillance Tech Would've Solved the Nancy Guthrie Case

https://www.vanityfair.com/story/flock-founders-interview-privacy-stalking
2•jhonovich•44m ago•1 comments

The End of Mathematics

https://www.daniellitt.com/blog/2026/8/11/the-end-of-mathematics
2•practal•46m ago•0 comments

On Hacking

https://stallman.org/articles/on-hacking.html
1•lr0•46m ago•0 comments

He Mined 300 Bitcoin, Wiped the Computer, and Sold It for $200 [video]

https://www.youtube.com/watch?v=XHeMsXDyw2A
1•pierrephpguru•47m ago•0 comments

Nvidia Jetson chip found in Russian cruise missile

https://www.tomshardware.com/tech-industry/artificial-intelligence/nvidia-jetson-chip-found-in-ru...
2•raphar•49m ago•0 comments

Flutter_scene 0.21.0 runs 3D apps with Flutter GPU and Impeller

https://xcancel.com/antibot/captcha
1•chem83•52m ago•0 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
1•samuel246•52m ago•0 comments

Coal: The Next Chokepoint

https://thehonestsorcerer.substack.com/p/coal-the-next-chokepoint
1•iamnothere•55m ago•0 comments

Let's Take a Look at Lower Java Tail Latencies with ZGC

https://www.morling.dev/blog/lower-java-tail-latencies-with-zgc/
1•ksec•56m ago•0 comments

Quake Version 1.07 on RS/6000 Systems

https://public.dhe.ibm.com/aix/freeSoftware/games/Quake/
2•nazgulsenpai•57m ago•1 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.