frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Liquid AI reveals 8B-A1B MoE trained on 38T

https://www.liquid.ai/blog/lfm2-5-8b-a1b
1•simjnd•1m ago•0 comments

Strace-UI, Bonsai_term, and the TUI Renaissance

https://blog.janestreet.com/strace-ui-bonsai-term-and-the-tui-renaissance/
1•hardwaregeek•1m ago•0 comments

Same Driver, new vehicle: Welcoming our first riders trips in the Ojai

https://waymo.com/blog/2026/05/welcoming-riders-in-the-ojai/
1•xnx•2m ago•0 comments

Which LLM is the best at finding real vulnerabilities?

https://medium.com/@lp1/which-llm-is-the-best-at-finding-real-vulnerabilities-part-1-2c51802cd55b
1•leakr•2m ago•0 comments

Lipstick on a Pig

https://blog.fredrb.com/2026/05/29/lipstick-on-a-pig/
1•fredrb•3m ago•0 comments

95% of Canceled Annual App Subscribers Never Come Back

https://9to5mac.com/2026/05/27/new-report-shows-annual-app-subscribers-rarely-return-after-they-c...
1•karakoram•4m ago•0 comments

Ask HN: Is anybody providing deterministic LLMs?

1•julienreszka•4m ago•1 comments

The Unsustainable AI Subsidy

https://tomtunguz.com/ai-model-inflation/
1•djha-skin•4m ago•0 comments

Slang.net added a new AI word: Braging

https://slang.net/meaning/braging
2•jamestarr474•5m ago•1 comments

Online (One-Pass) Algorithms

https://www.johndcook.com/blog/2026/05/29/online-one-pass-algorithms/
1•ibobev•6m ago•0 comments

Embodied Cognition and Agentic AI

https://lemire.me/blog/2026/05/28/embodied-cognition-and-agentic-ai/
1•ibobev•6m ago•0 comments

Ask HN: Any advice on how to learn good software architecture practices?

3•jimsojim•7m ago•0 comments

Pill That Regrows And Repairs Teeth

https://www.futura-sciences.com/en/say-goodbye-to-dental-implants-the-pill-that-regrows-and-repai...
1•karakoram•8m ago•0 comments

Changing a Title Can Make an Epoch-Making Article Invisible

1•kokhanserhii•9m ago•0 comments

Satradar – Track 10k+ Satellites up to 120 FPS

https://satradar.com/
2•davidwhodge•9m ago•0 comments

An attempt to calculate how far behind each AI lab is from the frontier

https://labgaps.com
1•cusos•10m ago•0 comments

Gen Z Men Want Babies. Gen Z Women Don't

https://www.vox.com/podcasts/480877/gen-z-men-wanna-be-dads
3•karakoram•10m ago•1 comments

Ask HN: How would you benchmark your engineering team's AI adoption?

1•cby•10m ago•1 comments

Predicting AI Job Exposure

https://www.ben-evans.com/benedictevans/2026/5/24/ai-job-exposure
1•iamskeole•10m ago•0 comments

Flathub disallows AI-assisted code and documentation

https://social.treehouse.systems/@barthalion/116657011366876079
2•jarek-foksa•11m ago•0 comments

Study finds AI chose nuclear signalling in 95% of simulated crises

https://www.kcl.ac.uk/news/artificial-intelligence-under-nuclear-pressure-first-large-scale-kings...
2•pseudolus•13m ago•2 comments

Use all AI futer for free& unlimited. try now

https://sites.google.com/view/rrrpromex/home
1•rrrpro123•14m ago•0 comments

Show HN: Oort – A prompt library where every listing has a shipped project

https://oortstack.com
1•Wesearchpress•14m ago•0 comments

Show HN: Promptloop – create, run, and improve prompt evals from the terminal

https://github.com/Bella3202019/promptloop
1•velapod•14m ago•0 comments

Master Your Online Meetings Workflow with CallBro: The Intro

https://medium.com/@MSalnikov/master-your-workflow-with-callbro-the-intro-ad6d7fae4104
2•zlat1997•15m ago•0 comments

Why the failure of Blue Origin's New Glenn rocket is so catastrophic

https://arstechnica.com/space/2026/05/heres-why-the-failure-of-blue-origins-new-glenn-rocket-is-s...
2•Brajeshwar•15m ago•0 comments

AI can chart a course to disaster faster than humans can notice

https://thebulletin.org/2026/05/ai-can-chart-a-course-to-disaster-faster-than-humans-can-notice/
1•pseudolus•15m ago•0 comments

Pioneering the Agentic Shift Within Salesforce Engineering

https://www.salesforce.com/news/stories/how-engineering-became-agentic/?bc=HL
2•shenli3514•16m ago•0 comments

A Prompt Is Not a Thought

https://prgrmmr.org/posts/a-prompt-is-not-a-thought/
1•magalhaesh•17m ago•0 comments

Julia's Pluto notebook hits 1.0 release

https://discourse.julialang.org/t/pluto-1-0-release/137296
3•sundarurfriend•17m 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.