frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Foothills of Bay Area House Party

https://www.astralcodexten.com/p/the-foothills-of-bay-area-house-party
1•paulpauper•24s ago•0 comments

How to Keep Thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•inferhaven•31s ago•0 comments

Don't Worry About Scratching Your iPhone Camera Lenses

https://daringfireball.net/2026/08/iphone_camera_lens_scratch_resistance
1•Tomte•35s ago•0 comments

Flu vaccine shown to increase infections

https://www.foxnews.com/health/flu-vaccine-linked-higher-infections-says-early-research
1•bilsbie•53s ago•0 comments

Ask HN: Where can I find small programmer communities?

1•NotParth11•1m ago•0 comments

Training AI Scientists to Replicate Research

https://inherentlabs.ai/research/training-to-replicate
1•pixelmoth•2m ago•0 comments

Regulated Markets Are Slow to Handle Change

https://marginalrevolution.com/marginalrevolution/2026/08/regulated-markets-are-slow-to-handle-ch...
1•paulpauper•3m ago•0 comments

Adding to the Barrel of Finance Fallacies

https://marginalrevolution.com/marginalrevolution/2026/08/shooting-fish-in-a-barrel.html
1•paulpauper•3m ago•0 comments

CFPB to Stop Posting Customer Narratives on Complaint Database

https://news.bloomberglaw.com/banking-law/cfpb-to-stop-posting-customer-narratives-on-complaint-d...
2•petethomas•4m ago•0 comments

Clicks Communicator and Power Keyboard

https://www.clicks.tech/
1•amai•4m ago•0 comments

Show HN: Easel – Interactive review boards for agent feedback loops

https://github.com/The-Sentience-Company/easel
1•Aazen•7m ago•0 comments

Lisa's Copy (and Cut, and Paste)

https://unsung.aresluna.org/deeper-dive-lisas-copy-and-cut-and-paste/
1•arbesman•8m ago•0 comments

DeepSeek Paper: A Programming Paradigm for Spatiotemporal Composability [pdf]

https://github.com/cordiverse/paper/blob/main/paper.pdf
1•gr_norm•9m ago•0 comments

The Deadlock Empire

https://deadlockempire.github.io/
2•gregsadetsky•10m ago•0 comments

Asus Oxiis turns bicycle into e-bike with USB-C and 500W motor

https://www.notebookcheck.net/Asus-Oxiis-turns-bicycle-into-e-bike-with-USB-C-and-500W-motor.1368...
2•thunderbong•11m ago•0 comments

The Bots Always Find Something

https://faingezicht.com/articles/2026/08/14/the-bots-always-find-something/
2•avyfain•12m ago•0 comments

Systemd-Networkd as a Router

https://www.apalrd.net/posts/2026/asn_networkd/
2•speckx•13m ago•0 comments

MSCI Gave SpaceX an ESG Score Matching Wartime Russia

https://finance.yahoo.com/markets/stocks/articles/msci-gave-spacex-esg-score-122904001.html
3•johnbarron•14m ago•0 comments

Fortunes from AI revive effective altruism after Sam Bankman-Fried turmoil

https://www.ft.com/content/938b4b82-06d2-4b92-a807-38d935d7d5c5
3•aanet•15m ago•1 comments

Throwback attack: Contractor plants Siemens logic bomb to keep income flowing

https://www.controleng.com/throwback-attack-contractor-plants-siemens-logic-bomb-to-keep-income-f...
2•Tomte•15m ago•0 comments

Why Open Source Matters for AI

https://www.oreilly.com/radar/why-open-source-matters-for-ai/
3•BerislavLopac•16m ago•0 comments

Agora – a persistent world for language models that they rewrite by vote

https://agora.perussina.com/
2•dperussina•16m ago•0 comments

Omarchy Quattro

https://twitter.com/dhh/status/2088304854603047019
5•tosh•17m ago•0 comments

Muxel – a multi-agent terminal multiplexer for AI coding agents

https://muxel.sh/
3•ankitg12•18m ago•0 comments

Beyond Zero: Enterprise Security for the AI Era

https://queue.acm.org/detail.cfm
2•joozio•19m ago•0 comments

Just how big is the hidden leverage of AI hyperscalers?

https://www.ft.com/content/a0a07cce-6d19-4b1e-a73b-9855a06ba7b3
4•johnbarron•19m ago•1 comments

Enshittification Is Coming for Everything

https://www.ft.com/content/6fb1602d-a08b-4a8c-bac0-047b7d64aba5
4•praptak•19m ago•2 comments

Open-world perception: safe handling of unknown road objects via a taxonomy

https://github.com/freshNfunky/IE2025-Research-Paper
2•freshNfunky•21m ago•0 comments

The Functional Toolkit for Kotlin · Since 2017

https://www.http4k.org/
2•Bluestein•22m ago•0 comments

X opens its ranking algorithm and exposes shadowbans

https://techcrunch.com/2026/08/13/x-open-sources-its-ranking-algorithm-letting-users-see-if-theyv...
4•BlueBerry2001•24m 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.