frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Has the answer to life's origins been hiding in our cells all along?

https://www.newscientist.com/article/2529162-has-the-answer-to-lifes-origins-been-hiding-in-our-c...
1•DonaldFisk•46s ago•0 comments

Joshua Baer, godfather of Austin's startup scene, dies in plane crash

https://www.kxan.com/news/local/austin/joshua-baer-godfather-of-austins-startup-scene-dies-in-pla...
1•csbrooks•3m ago•0 comments

Wang/Blob Tilesets

https://www.boristhebrave.com/permanent/24/06/cr31/stagecast/wang/blob_g.html
1•dested•4m ago•0 comments

Can't get new PlanetScale databases billed to my Cloudflare account

https://blog.cloudflare.com/deploy-planetscale-postgres-with-workers/
1•peterboro•4m ago•0 comments

DuckDuckGo browser blocks ads on YouTube

https://duckduckgo.com/duckduckgo-help-pages/privacy/detecting-ad-blocking-interference-anonymously
3•HelloUsername•5m ago•0 comments

Why servers running Ubuntu can stall on boot for two minutes

https://utcc.utoronto.ca/~cks/space/blog/linux/UbuntuNetplanWaitForCarrier
2•speckx•6m ago•0 comments

The Color Strike

https://ironicsans.ghost.io/the-color-strike/
1•caminanteblanco•6m ago•0 comments

When AI Is Your Pastor: Benchmark for Theological Triage and Pastoral Guidance

https://fideai.org/research/fmg-bench/
1•alexchaomander•8m ago•1 comments

This isn't a post about eating meat

https://jacobian.org/2026/jun/16/not-about-eating-meat/
1•svxml•8m ago•0 comments

CEOs of Anthropic and Google DeepMind call for US-led AI coalition in G7 meeting

https://www.cnbc.com/2026/06/17/anthropic-amodei-google-hassabis-us-ai-coalition-g7.html
2•thm•9m ago•0 comments

Dog Online – A Browser-based MMO for the indie web

https://dogonline.net
1•mimimerlot•9m ago•0 comments

Atomic Arch: Technical Summary of This Arch User Repository Compromise

https://www.linuxtricks.fr/news/10-logiciels-libres/605-atomic-arch-synthese-technique-sur-cette-...
1•daesorin•9m ago•0 comments

Ask HN: At what point does AI regulation lead to confiscation of compute?

1•thoughtpeddler•11m ago•0 comments

How to Stop Babysitting AI Code

https://rohangandhi.com/posts/how-to-stop-babysitting-ai-code/
1•mgamma•11m ago•0 comments

Real-time monitoring of chatbots and agents for AI compliance and governance

https://splabs.io/compliance
1•k-thimmaraju•11m ago•0 comments

Eve: Vercel's Framework for Building Agents

https://vercel.com/eve
1•CharlesW•11m ago•0 comments

UK government built an AI tool to digitise historic planning records

1•brokebroadbeat•12m ago•0 comments

NetBSD 11.0 RC5 Available

https://blog.netbsd.org/tnf/entry/netbsd_11_0_rc5_available
1•bradley_taunt•13m ago•0 comments

Show HN: Yomi – Read any web page, or a whole website, into clean Markdown

https://github.com/tamnd/yomi
3•tamnd•14m ago•2 comments

Neon Testing now supports Bun Test

https://github.com/starmode-base/neon-testing/releases/tag/v3.0.0
1•lirbank•14m ago•0 comments

The Sovereign User: Trading Technological Victimhood for Personal Agency

https://petrapalusova.com/articles/the-sovereign-user-trading-technological-victimhood-for-person...
2•speckx•16m ago•0 comments

The frustration of agreeing with everyone about AI

https://www.flourish.org/2026/06/agree-everyone-ai/
1•frabcus•17m ago•0 comments

Show HN: Tamper evident audit logs for LangGraph/CrewAI agents

https://github.com/Providex-AI/rootsign
1•oabolade•17m ago•0 comments

Hacking the atmosphere: Geoengineering gets a reality check

https://www.technologyreview.com/2026/06/17/1138743/hacking-atmosphere-geoengineering-reality-check/
1•Brajeshwar•20m ago•0 comments

Show HN: A locally hosted version of Google's internal SnipIt tool

https://github.com/ralphite/panda
1•yadongwen•21m ago•0 comments

The Slate Truck's price may have leaked, starts at $24,950

https://arstechnica.com/cars/2026/06/the-slate-trucks-price-may-have-leaked-starts-at-24950/
2•canucker2016•21m ago•1 comments

Austin, TX Incubator Capitol Factory founder Joshua Baer dies in a plane crash

https://www.statesman.com/news/article/laredo-plane-crash-loop-20-austin-bound-22308875.php
2•holler•22m ago•0 comments

Bird jumps 20%+ after shoemaker Allbirds changes name to Smartbird for AI pivot

https://ir.smartbird.ai/news-releases/news-release-details/smartbird-appoints-new-ceo-advance-ai-...
2•thoughtpeddler•23m ago•0 comments

Summoning the Demon

https://geohot.github.io//blog/jekyll/update/2026/06/17/summoning-the-demon.html
1•therepanic•24m ago•0 comments

The technical debt of agentic engineering

https://newsletter.port.io/p/the-hidden-technical-debt-of-agentic
1•krakenwake•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.