frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Soofi S: Our first model for industrial AI in Europe

https://www.soofi.info/
1•doener•1m ago•0 comments

Fake food delivery site for the dopamine

https://old.reddit.com/r/BingeEatingDisorder/comments/1uzr3ui/fake_food_delivery_site_for_the_dop...
1•guerrilla•1m ago•0 comments

How early SunOS did diskless workstations before NFS

https://utcc.utoronto.ca/~cks/space/blog/solaris/SunOSDisklessWithoutNFS
1•cwbuilds•3m ago•0 comments

The AI with a Thousand Voices

https://medium.com/@ic-eight/the-ai-with-a-thousand-voices-374680948342
1•ic_eight•4m ago•0 comments

Frozen 2 should be Rated R

https://interconnected.org/home/2026/07/17/frozen
1•peteforde•5m ago•0 comments

Ask HN: Claude Creating Artifacts?

1•ftchd•6m ago•0 comments

No link between acetaminophen use during pregnancy and adverse birth outcomes

https://sph.unc.edu/sph-news/no-link-between-acetaminophen-use-during-pregnancy-and-adverse-birth...
4•geox•7m ago•0 comments

Our Approach to Bioresilience: Isomorphic Labs and Google DeepMind

https://deepmind.google/blog/our-approach-to-bioresilience/
2•bookofjoe•7m ago•0 comments

Heat can trigger or intensify mental illnesses

https://www.meduniwien.ac.at/web/en/about-us/news/2023/news-in-august-2023/heat-can-trigger-or-in...
2•tosh•7m ago•0 comments

Google fixing Android lock screen bug that lets Gemini send SMS without a PIN

https://www.theregister.com/security/2026/07/17/google-fixing-android-lock-screen-bug-that-lets-g...
1•Bender•11m ago•0 comments

AI spam filters are getting suckered by old-school text salting

https://www.theregister.com/security/2026/07/17/ai-spam-filters-are-getting-suckered-by-old-schoo...
1•Bender•12m ago•0 comments

Britain's Kerr breaks 27-year mile world record in London

https://www.bbc.com/sport/athletics/articles/cx2jl1wge2po
1•nadermx•12m ago•0 comments

Hegseth wants a "High-T" military; doctors call it a clinical minefield

https://arstechnica.com/health/2026/07/hegseth-wants-a-high-t-military-doctors-call-it-a-clinical...
2•Bender•12m ago•0 comments

Show HN: Randomly Generated ASCII Trees

https://gist.githubusercontent.com/Soham-Saha/f6e8d25327ee86b915c53ac73e4eb7b3/raw/aeba99ece14c90...
1•omegacombinator•13m ago•0 comments

Building Dynamic Rule Engines in Elixir with Excanon

https://medium.com/@juan.lovera4/stop-hardcoding-business-rules-building-dynamic-rule-engines-in-...
1•allanmacgregor•14m ago•0 comments

RS-Key: Security Key. Fido/OpenPGP Firmware for RP2350

https://github.com/TheMaxMur/RS-Key
2•envbinsus•17m ago•0 comments

Surrender as a non-stupid life strategy

https://sashachapin.substack.com/p/should-you-be-in-charge-of-your-life
2•eatitraw•20m ago•0 comments

Denote Notes on the iPhone

https://en.andros.dev/blog/9abcdcfe/your-denote-notes-on-the-iphone/
1•andros•20m ago•0 comments

Gleam Is Now on Tangled

https://tangled.org/gleam.run/gleam
26•nerdypepper•26m ago•8 comments

The Fermi Paradox, Percolation, and Inbreeding

https://reactormag.com/the-fermi-paradox-percolation-and-inbreeding/
3•bryanrasmussen•31m ago•0 comments

Trump Media pitched $100k monthly fee for fast feed of president's posts

https://www.ft.com/content/e466df85-fa3b-4a7f-a4a1-ae04d66db99f
3•theahura•33m ago•0 comments

If You Build It, They Will Come

https://www.benlandautaylor.com/p/if-you-build-it-they-will-come
2•barry-cotter•33m ago•0 comments

Show HN: Sovereign-Metal – Zero-Dependency Python/Metal GPGPU Advection

https://github.com/getcognition-online/sovereign-metal
1•Jamie_Nixx_CUI•34m ago•0 comments

US data center protests go national as backlash grows

https://www.reuters.com/business/retail-consumer/us-data-center-protests-go-national-backlash-gro...
3•vrganj•34m ago•0 comments

Elixir-lang.org has a new design

https://elixir-lang.org/
11•bbg2401•38m ago•2 comments

Multidim inplace permutations in constant(*) space

https://cschen.cc/posts/inplace-permdims/
2•FacelessJim•38m ago•0 comments

How voice-to-voice models work: from sound wave to living conversation

https://asaptf.github.io/v2v-models-article-en/
2•asaptf•40m ago•0 comments

Official Jagex Launcher for Linux

https://secure.runescape.com/m=news/jagex-launcher-for-linux-beta-out-now?oldschool=1
1•Venn1•41m ago•1 comments

What else do people draw on gradient.horse?

https://rybakov.com/blog/what_else_do_people_draw_on_gradient-copy.horse/
1•spython•41m ago•0 comments

Traders are increasingly betting against SpaceX just weeks after IPO

https://www.ft.com/content/2b96703d-440b-46db-8d86-9fff9ecc59d5
11•ethanhawksley•44m 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.