frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Proof of Conway's Refinement Conjecture

https://github.com/gaearon/conway-refinement
1•m-hodges•2m ago•0 comments

The Empire of Information

https://lareviewofbooks.org/article/data-empire-roopika-risam-information-organize-control-dominate/
1•Petiver•2m ago•0 comments

An Update on FSD Supervised in Europe

https://twitter.com/teslaeurope/status/2094661569582096779
1•tosh•4m ago•0 comments

AI Agent Memory Design: What Works and What Doesn't

https://machinelearningmastery.com/ai-agent-memory-design-what-works-and-what-doesnt/
1•eigenBasis•4m ago•0 comments

AI goes where the oracle is cheap

https://dilpreet.co/blog/2026/9/1/ai-goes-where-the-oracle-is-cheap
1•argilium•5m ago•0 comments

Claude Fable 5.1 tops AI index but costs 20% more per task

https://artificialanalysis.ai/articles/claude-fable-5-1
1•wertyk•5m ago•0 comments

Show HN: PulsarForge – run a 744B MoE model on 32GB RAM with zero GPU (pure C)

https://github.com/siris9476/pulsarforge
1•siris9476•6m ago•0 comments

Csveee – parsing CSV at up to 192 GB/s in Rust

https://github.com/ackxolotl/csveee
1•foooo4•6m ago•0 comments

Polars v2.0 Release Candidate

https://github.com/pola-rs/polars/releases/tag/py-2.0.0-rc.1
1•simicd•9m ago•0 comments

Show HN: OctoLoops – automated marketing for indie devs

https://octoloops.com
2•davedx•10m ago•0 comments

FTC, States Sue Amazon over Secret Ad Surcharge Scheme

https://www.ftc.gov/news-events/news/press-releases/2026/08/ftc-states-sue-amazon-over-secret-ad-...
3•astonex•11m ago•0 comments

Mount Everest Base Camp Is Melting. Human Urine Is a Contributor.

https://www.nytimes.com/2026/08/29/science/everest-base-camp-urine.html
1•bookofjoe•12m ago•1 comments

Bassfinity for iOS – AI guide built on solunar data, weather, and bathymetry

https://www.bassfinity.com/blog/bassfinity-for-ios-the-whole-lake-in-your-pocket
2•jequals5•12m ago•0 comments

Pointing at the error: compiler-style diagnostics in uutils coreutils

https://uutils.org/blog/2026-08-error-diagnostics/
2•ingve•13m ago•0 comments

My local model setup on an M4 Pro Mac Mini

2•RanjithKumarRag•13m ago•0 comments

Ed Zitron Is Ben Ortiz

2•thatwasez•14m ago•0 comments

Two halves make a hole – when availability features aren't

https://veesh.me/posts/two-halves-make-a-hole/?src=ha
1•rabbiveesh•15m ago•0 comments

Solar Overtakes Coal as China's Largest Power Source

https://oilprice.com/Latest-Energy-News/World-News/Solar-Overtakes-Coal-as-Chinas-Largest-Power-S...
3•gradus_ad•15m ago•0 comments

Show HN: ToolJet – Claude Code and Codex build internal tools, no codegen

https://github.com/ToolJet/ToolJet
1•oss-dev•16m ago•0 comments

Kin: Looking for Doctors to Improve Elder Care

https://wanderingfounder.substack.com/p/kin
1•surprisetalk•17m ago•0 comments

Show HN: SandrPod – run the unmodified E2B SDK against your own infrastructure

https://github.com/sandrpod/sandrpod
1•cjzhao•18m ago•0 comments

Crooks Are Learning to Love AI Hallucinations

https://spectrum.ieee.org/ai-cyberattacks-llm-slop-squatting
2•sohkamyung•18m ago•0 comments

WhatsApp flaw lets anyone access private photos on your locked phone

https://www.notebookcheck.net/A-WhatsApp-flaw-lets-anyone-access-private-photos-on-your-locked-ph...
3•ledoge•19m ago•0 comments

IFA 2026 in Berlin: all news about gadgets, AI and tech

https://forgeeks.net/theme/ifa2026/
3•ledoncool•20m ago•1 comments

Septabee; music workstation with more rewrites that you can shake a stick at [video]

https://www.youtube.com/watch?v=lW8Z98pXuSE
1•HydroKai•22m ago•0 comments

Show HN: MC/DC coverage so coding agents could work overnight

https://supercov.com
1•Nedomas•22m ago•0 comments

Normalized Fascism in Open Source: $12M Given to DHH

https://brennan.day/normalized-fascism-in-open-source-12-million-given-to-dhh/
9•birdculture•23m ago•1 comments

The Two Abstractions of System Design: Hide or Reduce

http://muratbuffalo.blogspot.com/2026/05/the-two-abstractions-of-system-design.html
1•ubolonton_•23m ago•0 comments

Ending my elixir exploratory writing

https://lucassifoni.info/blog/the-end-of-this-elixir-log/
4•ffin•25m ago•0 comments

GTA 6 Lets You Throw Dog Poop at People

https://www.gamespot.com/articles/gta-6-lets-you-throw-dog-poop-at-people/
1•EveryonePoops•25m ago•0 comments
Open in hackernews

Avoid Continue

https://www.teamten.com/lawrence/programming/avoid-continue.html
2•todsacerdoti•1y ago

Comments

zoezoezoezoe•1y ago
I dont know if I fully agree. Sure, there is definitely an argument the be had about whether or not `continue` is the best word to use in this instance, but why avoid it entirely? Every programmer is able to easily understand what code like this would do:

``` for (Node node : nodeList) { if (node.isBad()) { continue; } processNode(node); } ```

Every keyword in any programming language is largely arbitrary in my opinion let's take a look at the beginning of the codeblock `for (Node node : nodeList)` also completely arbitrary, though it's clear to anyone who's ever written C++ that it is equivalent to saying "for every node in nodeList".

Continue is not meant to read as "continue execution" it's meant to be "continue to the next item of the list", and I think avoiding it entirely is a pointless effort.

Ukv•1y ago
I feel `skip` may have been a better name, but disagree with it being logically difficult to parse beyond that.

If I'm reading a loop and see

    for x in y {
        if exclusions.contains(x) { skip; }
        if x.children.length == 0 { skip; }
        if os.file.exists(x.name) { skip; }
        ...
I instantly know that processing for those elements is skipped, and they won't be relevant for the rest of the loop.

Whereas if I see

    for x in y {
        if !exclusions.contains(x) {
            if x.children.length != 0 {
                if !os.file.exists(x.name) {
        ...
I feel like there's still mental overload with not knowing where those `if` blocks end, and so having to keep the conditions in mind. It doesn't immediately tell me that the rest of the loop is being skipped.

The `log()` mistake seems no less likely to happen using early-returns in function instead, and I'd argue nesting checks actually introduces more room for that kind of error overall, where you append something at the end within the wrong set of brackets, compared to a flatter structure.