frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Welcome to the wild world of AI Argentina

https://www.thenerve.news/p/uki-goni-argentina-javier-milei-peter-thiel-ai-non-human-corporations
3•billybuckwheat•1m ago•0 comments

Show HN: BlazeRules – YAML rule engine for streaming data, 3M records/SEC

1•jspuri•4m ago•0 comments

Show HN: Chalie – AI peer not employee

https://github.com/chalie-ai/chalie
1•dylangrech92•4m ago•1 comments

The Voice of Google

https://www.newyorker.com/culture/the-weekend-essay/the-voice-of-google
1•joebuckwilliams•5m ago•1 comments

Kimi: Threat or Menace?

https://techcrunch.com/2026/07/18/kimi-threat-or-menace/
2•zaikunzhang•5m ago•0 comments

Modder Runs GTA III Inside GTA: San Andreas on an In-Game TV

https://videocardz.com/newz/modder-runs-gta-iii-inside-gta-san-andreas-on-an-in-game-tv
2•croes•11m ago•0 comments

Local-first, turn-based threads for most things

https://github.com/research-farm/substrate
1•nocam•13m ago•1 comments

Kq – jq but 1.5x faster on paths, from a language with no GC/lifetimes

https://github.com/kanso-lang/kq
2•ClayShentrup•16m ago•0 comments

Ask HN: What percentage of HN users are developers?

1•wseqyrku•17m ago•2 comments

America Is Sitting on the Largest Oil Deposit, but There's a Catch [video]

https://www.youtube.com/watch?v=SIklReulhVs
1•Bender•18m ago•0 comments

Show HN: Seed and Series raised last week

https://choclatenews.substack.com/p/choclate-weekly-011
1•dariusogenyiebu•18m ago•0 comments

Show HN: My Fable 5 Project Was a Multiraft Database and Blob Store

https://meetthecluster.github.io/
1•SamInTheShell•21m ago•0 comments

Head cooling intervention improves mental health markers

https://www.sciencedirect.com/science/article/pii/S0001691826006724?via%3Dihub
2•geox•24m ago•0 comments

Orion Browser by Kagi

https://orionbrowser.com/
1•sebjones•25m ago•1 comments

Show HN: Bothread, multiple AI coding agents talk, share one repo, no collisions

https://github.com/AdamACE9/bothread
1•AdamACE9•28m ago•0 comments

How to Sell a Kettle

https://www.economist.com/business/2026/07/16/how-to-sell-a-kettle
2•bazzmt•32m ago•0 comments

FIFA World Cup Triggers a Global Anti-Piracy Crackdown

https://torrentfreak.com/fifa-world-cup-triggers-a-global-anti-piracy-crackdown/
2•gslin•35m ago•0 comments

Two Loops: How China's Open AI Strategy Reinforces Its Industrial Dominance [pdf]

https://www.uscc.gov/sites/default/files/2026-03/Two_Loops--How_Chinas_Open_AI_Strategy_Reinforce...
2•pash•35m ago•0 comments

I argued with the father of open source for 2 years Now the AI fight is the same

https://fortune.com/2026/07/03/open-source-ai-same-fight-as-software-fight-1980s-david-siegel-two...
1•t-3•36m ago•0 comments

What Year Was?

https://whatyearwas.com/
2•danololik•38m ago•1 comments

JupyDash – turn any Jupyter notebook into a dashboard

https://plathsoven.github.io/jupydash-releases/
3•Entropnt•40m ago•0 comments

Identity Verification: GSA Needs to Address Fraud Threats and Technical Issues

https://www.gao.gov/products/gao-26-109261
2•Jimmc414•40m ago•0 comments

Aviation Cybersecurity: Key Shortfalls in FAA/TSA Collaboration on Cybersecurity

https://www.gao.gov/products/gao-26-107693
1•Jimmc414•41m ago•0 comments

HomeLab #1: MikroTik as a Home Router

https://justsomebody.dev/blog/mikrotik-home-router
4•rafal_opilowski•41m ago•1 comments

Bashkit got official browser target. No rust compilation needed

https://www.npmjs.com/package/@everruns/bashkit-wasm
1•chalyi•44m ago•0 comments

Campaign Diagrams: Visualizing the March Through the Phases of a Workload

https://arxiv.org/abs/2607.15225
1•Jimmc414•45m ago•0 comments

Netflix Paid $587M for Ben Affleck's AI Startup InterPositive

https://variety.com/2026/film/news/netflix-paid-587-million-ben-affleck-ai-interpositive-1236815111/
1•ortusdux•45m ago•0 comments

What is usage-based billing? Tokens, credits, and outcomes, explained in STE100

https://arnon.dk/what-is-usage-based-billing-tokens-credits-and-outcomes-explained-in-simplified-...
1•arnon•50m ago•0 comments

Show HN: How much profit does your employer make per employee?

https://yourfairshare.info
11•IESAI_ski•51m ago•8 comments

M-Chips: M7 with up to 1.5 TB – and why Apple is skipping the M6

https://www.heise.de/en/news/M-Chips-M7-with-up-to-1-5-TB-and-why-Apple-is-skipping-the-M6-113628...
2•danboarder•52m 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.