frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DeepSeek 4 Flash local inference engine for Metal

https://github.com/antirez/ds4
1•tamnd•14s ago•0 comments

Show HN: Statewright – Visual state machines that make AI agents reliable

https://statewright.ai/
1•azurewraith•21s ago•0 comments

Ask HN: What inspires you to persevere through adversity?

1•downbad_•1m ago•1 comments

Show HN: Stage CLI – a tool to make reading your AI generated changes easier

https://github.com/ReviewStage/stage-cli
2•cpan22•2m ago•0 comments

Integration testing led me to create the Tyk mock MCP server

https://tyk.io/blog/imagine-build-share-how-integration-testing-led-me-to-create-the-tyk-mock-mcp...
1•elkinthewoods•3m ago•0 comments

TikTok Algo Simple AF

https://newsroom.tiktok.com/how-tiktok-recommends-videos-for-you?lang=en
1•smooke•4m ago•0 comments

The telemapforloktastic inventor: decide size of required majority, then topic

https://gb.weltfernsehsender.de/demandmajority/
1•interbr•5m ago•0 comments

I'm building a searchable global index of peptide lab reports

https://old.reddit.com/r/samebatch/comments/1t6dxcy/im_building_a_searchable_global_index_of_pept...
1•m00dy•5m ago•0 comments

The all-new Fitbit Air

https://blog.google/products-and-platforms/devices/fitbit/fitbit-air/
3•zodvik•5m ago•0 comments

Elon Grew to Love Anthropic

https://www.axios.com/2026/05/07/musk-anthropic-compute-spacex-ai
1•Brajeshwar•6m ago•0 comments

FreeFish – Terminal Aquarium in the Browser

https://freefish.neocities.org
1•macwhisperer•6m ago•1 comments

Passkey Benchmark 2026: 97-99% mobile readiness, but adoption still stalls

https://www.corbado.com/passkey-benchmark-2026
1•vdelitz•6m ago•1 comments

First tunnel element of the Fehmarnbelt Tunnel immersed

https://www.arup.com/en-us/news/first-fehmarnbelt-tunnel-element-lowered/
1•robin_reala•6m ago•0 comments

Migrating from Supabase to Render (2023)

https://blog.val.town/blog/migrating-from-supabase/
3•nathanh•6m ago•0 comments

Hosting a Forum in 2026

https://blog.webb.page
2•speckx•6m ago•0 comments

Vibe-Coded Apps Expose Corporate and Personal Data on the Open Web

https://www.wired.com/story/thousands-of-vibe-coded-apps-expose-corporate-and-personal-data-on-th...
4•cdrnsf•8m ago•0 comments

Do Developing Countries Still Need to Industrialize?

https://nicholasdecker.substack.com/p/do-developing-countries-still-need
2•surprisetalk•10m ago•1 comments

U.S. Treasury will have to borrow $2T this year just to continue functioning

https://fortune.com/2026/05/07/treasury-expected-to-borrow-2-trillion-omb-cbo-estimates/
6•whoknowsidont•11m ago•1 comments

Most agent reliability problems are data engineering problems

https://sderosiaux.substack.com/p/from-prompt-engineering-to-data-engineering
2•chtefi•11m ago•0 comments

Value Contamination Through Post-Training in Talkie-1930

https://zenodo.org/records/20070239
1•whythismatters•11m ago•0 comments

Sticks, Stones, and Light Speed

https://alexoppenheimer.substack.com/p/sticks-stones-and-light-speed
2•crescit_eundo•14m ago•0 comments

Nvidia faces its biggest threat yet as tech giants build their own AI chips

https://www.latimes.com/business/story/2026-05-06/nvidia-faces-its-biggest-threat-yet-as-tech-gia...
2•1vuio0pswjnm7•14m ago•0 comments

Motherboard sales are now collapsing amid unprecedented shortages fueled by AI

https://www.tomshardware.com/pc-components/motherboards/motherboard-sales-collapse-by-more-than-2...
9•speckx•17m ago•1 comments

The war between fast and legitimate is here

https://www.joanwestenberg.com/the-war-between-fast-and-legitimate-is-here/
2•alcazar•17m ago•0 comments

Show HN: Kon – A Coding Agent with a System Prompt under 270 tokens

https://github.com/0xku/kon
2•krumboy•20m ago•0 comments

I Want to Live Like Costco People

https://tastecooking.com/i-want-to-live-like-costco-people/
18•speckx•21m ago•6 comments

Behind the Curtain: Intelligence Explosion

https://www.axios.com/2026/05/07/anthropic-jack-clark-ai-intelligence-explosion
2•Brajeshwar•21m ago•0 comments

Lisping at JPL Revisited (2023)

http://blog.rongarret.info/2023/01/lisping-at-jpl-revisited.html
2•tosh•24m ago•0 comments

Dream Physics

https://seths.blog/2026/05/dream-physics/
3•herbertl•25m ago•0 comments

What Are 'Teen Takeovers,' and Why Are Police Struggling to Stop Them?

https://www.nytimes.com/2026/05/07/us/teen-takeovers.html
3•mikhael•25m ago•1 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.