frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google is reportedly testing a Gemini app for Mac

https://www.engadget.com/ai/google-is-reportedly-testing-a-gemini-app-for-mac-203703372.html
1•babblingfish•1m ago•0 comments

Freemium vs. Free Trial

https://www.revturbine.com/resources/freemium-vs-free-trial
1•millereffect•2m ago•0 comments

The Trump administration's campaign to counter content bans in Europe

https://www.washingtonpost.com/technology/2026/03/20/trump-eu-dsa-censorship/
1•bryanrasmussen•2m ago•0 comments

Ask HN: FileZilla/WinSCP Speed Comparison

1•eahm•3m ago•0 comments

Show HN: I Built a MTA Subway Display So I'd Stop Checking My Phone

https://twitter.com/pirosb3/status/2034370959977619513
2•pirosb3•4m ago•0 comments

Tcl's German QLED ban puts pressure on TV brands to be more honest about QDs

https://arstechnica.com/gadgets/2026/03/tcls-german-qled-ban-puts-pressure-on-tv-brands-to-be-mor...
1•detaro•4m ago•0 comments

The Interface Is Content

https://borism.medium.com/the-interface-is-content-b13f4d693d66
1•felixbraun•4m ago•0 comments

What we heard about Rust's challenges, and how we can address them

https://blog.rust-lang.org/2026/03/20/rust-challenges.md/
1•emschwartz•5m ago•0 comments

More Americans Will Die Than Be Born in 2030 – Immigration Will Drive Growth

https://fortune.com/2026/01/07/cbo-outlook-population-decline-more-americans-will-die-than-be-bor...
1•karakoram•5m ago•0 comments

Show HN: Git-issues – AI agent-first task management for Git repos

https://github.com/steviee/git-issues
1•steviee•6m ago•0 comments

US startup advertises 'AI bully' role to test patience of leading chatbots

https://www.theguardian.com/technology/2026/mar/19/us-startup-advertises-ai-bully-role-to-test-pa...
1•Brajeshwar•7m ago•0 comments

Show HN: Libretto – Edit long recordings faster (a simpler Descript alternative)

https://libretto.fm
1•michael_y•7m ago•0 comments

Show HN: Qage.dev – Bug Reporting for Everyday Users

1•hunch_tan•8m ago•0 comments

The Tufte Test: Teaching an AI Agent to Make Better Data Visualizations

https://old.reddit.com/r/dataisbeautiful/comments/1rz0c94/the_tufte_test_teaching_an_ai_agent_to_...
1•rhiever•8m ago•1 comments

The Importance of Mathematics in Political Decision-Making

https://www.siam.org/publications/siam-news/articles/the-importance-of-mathematics-in-political-d...
2•teleforce•8m ago•0 comments

Roast My Skill

https://roast-my-skill.vercel.app/
1•sjmaplesec•8m ago•1 comments

Major phone carriers to launch 'Japan Roaming' for use in disasters

https://www.japantimes.co.jp/news/2026/03/20/japan/japan-roaming-service-disasters/
2•mikhael•10m ago•0 comments

EAV: An and Dangerous Anti-Pattern

https://www.milkadmin.org/article.php?id=10-eav
1•giuliopanda•10m ago•0 comments

Show HN: Cairn – Event-sourced reasoning graphs for AI memory

https://github.com/smcady/Cairn
1•smcady•12m ago•0 comments

Price Like a Winner

https://www.revturbine.com/resources/fastest-growing-saas-2025
2•millereffect•13m ago•0 comments

How Open world Soulslike deckbuilder Death Howl was built

https://blog.playstation.com/2026/02/16/how-open-world-soulslike-deckbuilder-death-howl-was-built/
1•PaulHoule•14m ago•0 comments

20 Days Later: Trivy Compromise, Act II

https://labs.boostsecurity.io/articles/20-days-later-trivy-compromise-act-ii/
1•slim•15m ago•0 comments

LHCb Collaboration discovers new proton-like particle

https://home.cern/news/news/physics/lhcb-collaboration-discovers-new-proton-particle
1•woodwireandfood•16m ago•0 comments

Show HN: Clay for CRE assessors

https://compredux.com
2•gtlpanda•17m ago•0 comments

Mistral CEO: AI companies should pay a content levy in Europe

https://www.ft.com/content/d63d6291-687f-4e05-8b23-4d545d78c
2•pember•18m ago•0 comments

Show HN: Designing a physical product experience in the AI era

https://oryzo.ai/
1•lusionltd•19m ago•1 comments

Experimental AI agent breaks out of test environment, Mines crypto

https://techputs.com/experimental-ai-agent-breaks-out-of-test-environment/
1•randycupertino•20m ago•1 comments

ancient origin of counting sheep to fall asleep

https://www.purplemotes.net/2013/09/01/origin-counting-sheep-fall-asleep/
1•marysminefnuf•20m ago•0 comments

Chuck Norris Dies at 86

https://apnews.com/article/chuck-norris-dies-b92804d43c6eee0d9e3fb31583d7f877
2•speckx•20m ago•1 comments

The Economics of Scarcity and the UNC-Duke Basketball Game [audio]

https://www.econtalk.org/the-economics-of-scarcity-and-the-unc-duke-basketball-game-with-michael-...
1•mooreds•21m ago•0 comments
Open in hackernews

Avoid Continue

https://www.teamten.com/lawrence/programming/avoid-continue.html
2•todsacerdoti•11mo ago

Comments

zoezoezoezoe•11mo 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•11mo 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.