frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Therapy for the Vibe-Coded Brain

https://www.youtube.com/watch?v=DkhhE97Swmo
1•conferza•2m ago•0 comments

Apple lays off 200 people across Vision Pro and Siri teams

https://9to5mac.com/2026/08/21/apple-lays-off-200-people-across-vision-pro-and-siri-teams/
1•ksec•3m ago•0 comments

BDH-CQ: In-Context Learning with Recurrent Latent Reasoning

https://arxiv.org/abs/2608.09888
1•flaburgan•7m ago•0 comments

$40T Debt, 6.7% Mortgages and $5 Diesel

https://www.ft.com/content/6cb399fa-9fba-4806-98a3-9572fe319622
2•tcp_handshaker•10m ago•1 comments

A Week in the Life Of

https://profane-tmesis.info/a-week-in-the-life-of
1•riskone•11m ago•0 comments

I built roads.fyi – view and report the condition of roads near you

https://roads.fyi
1•ss1996•12m ago•1 comments

Ask HN: Is there a "knowledge base" of expert insights for Claude?

1•iosifnicolae2•14m ago•0 comments

Chatflare: Chat with your friends via Cloudflare cache hits

https://github.com/beescuit/chatflare
1•gavide•14m ago•0 comments

FreeToken: Efficient Edge-Native Moe Serving with Bandwidth-Adaptive Execution

https://arxiv.org/abs/2608.16157
1•theanonymousone•16m ago•0 comments

Rights-infringing copies of "NEINhorn": Carlsen sues OpenAI

https://www.heise.de/en/news/Rights-infringing-copies-of-NEINhorn-Carlsen-sues-OpenAI-11420677.html
1•wodniok•20m ago•0 comments

Uber fined nearly $1B by Dutch regulators

https://apnews.com/article/uber-fine-automated-suspensions-netherlands-e64385dc72fd2da440a68babd1...
2•gostsamo•23m ago•0 comments

Pets vs. Cattle and How to Use the Analogy Properly

https://cloudscaling.com/blog/cloud-computing/the-history-of-pets-vs-cattle/
1•fagnerbrack•24m ago•0 comments

RayNeo IO

https://www.rayneo.com/pages/rayneo-io-ai-glasses
1•handfuloflight•28m ago•0 comments

Is "AI slop" now the default response to every new project?

2•antonreshetov•31m ago•1 comments

Show HN: Financialdata.net – Stock Market API with Python SDK and MCP Server

https://financialdata.net/stock-market-api
1•_FDN_•32m ago•0 comments

Tesla Recalls 3M EVs in China over Door Handle Safety

https://www.bloomberg.com/news/articles/2026-08-21/tesla-recalls-3-million-evs-as-china-cracks-do...
4•Hoefner•36m ago•0 comments

Walmart adding Tap to Pay after years of shoppers asking for it

https://www.dexerto.com/entertainment/walmart-finally-adding-tap-to-pay-after-years-of-shoppers-a...
2•thunderbong•41m ago•0 comments

Older Americans leaving workforce poses challenges for AI plans

https://www.spglobal.com/market-intelligence/en/news-insights/articles/2026/8/older-americans-lea...
3•littlexsparkee•41m ago•0 comments

Show HN: Best of Marketing, an interactive and ranked advertising index

https://bestmarketingnewsletter.com/
1•jaskaransainiz•47m ago•0 comments

You can just choose how many bugs you want now

https://nolanlawson.com/2026/08/16/you-can-just-choose-how-many-bugs-you-want-now/
1•tosh•49m ago•0 comments

10% worse, 100x cheaper, 10000x faster: Why Simulation is taking over

https://www.latent.space/p/ainews-10-worse-100x-cheaper-10000x
1•swyx•50m ago•0 comments

I turned Unix talk from 1983 into the interface for my AI

https://en.andros.dev/blog/09a21bdd/i-turned-unix-talk-from-1983-into-the-interface-for-my-ai/
1•andros•51m ago•0 comments

Show HN: Agile AI Development Lifecycle

https://valeriavg.dev/agile-ai-development-lifecycle
2•valeriavg_dev•57m ago•0 comments

Show HN: Learn Leap, an AI tutor that teaches from your own material

https://learnleap.xyz
1•HarunaOseni•58m ago•0 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
3•reorder9695•59m ago•0 comments

Anthropic's Opus 4.6 is a smut-machine

https://techcrunch.com/2026/08/21/anthropics-opus-4-6-is-a-smut-machine/
2•sbulaev•59m ago•0 comments

LYF SOS: Emergency Tech for Indian Networks

https://lyfsos.lyfmail.com/
1•LYFMail•1h ago•0 comments

Feminism didn't kill the male breadwinner model, the economy did

https://www.ft.com/content/4b7b8d3f-5625-4dba-ad90-66192c101956
1•go4rayyan•1h ago•0 comments

Chainwarden – offline crypto address validation for Java

https://chainwarden.org
1•salvatorzy•1h ago•0 comments

Angus Barbieri's Fast

https://en.wikipedia.org/wiki/Angus_Barbieri%27s_fast
1•handfuloflight•1h 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.