frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A tool to screen new ArXiv papers

https://github.com/ibaaj/arxiv-digest
1•newolive•12s ago•0 comments

Original Sony MiniDisc Announcement (1991)

https://www.minidisc.org/sony_announcement.html
1•Tomte•4m ago•0 comments

LLM models are not ready for orchestrating many agents

1•daemon_9009•4m ago•0 comments

"Run the agent program" in 1978

https://www.youtube.com/watch?v=4xPzYmj1QLs
1•Jonovono•12m ago•1 comments

Privacy is becoming more of a privilege

https://blog.avas.space/privacy-privilege/
1•speckx•12m ago•0 comments

OpenAI and Malta partner to bring ChatGPT Plus to all citizens

https://openai.com/index/malta-chatgpt-plus-partnership/
6•bookofjoe•14m ago•3 comments

The Quiet Renovation at Bitwarden

https://blog.ppb1701.com/the-quiet-renovation-at-bitwarden
2•DaSHacka•15m ago•0 comments

What breaks when you ship Next.js on Cloudflare Workers

https://finterm.xyz/blog/nextjs-on-cloudflare-workers
1•qemuguest•18m ago•1 comments

Microsoft Exchange Server Spoofing Vulnerability New

https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42897
1•doener•18m ago•0 comments

Pretext-breaker – a configurable block-breaker easter egg for React apps

https://github.com/y-lakhdar/pretext-breaker
1•ylakhdar•19m ago•0 comments

Microsoft Exchange: Zero-day vulnerability is being attacked

https://www.heise.de/en/news/Microsoft-Exchange-Zero-day-vulnerability-is-being-attacked-11295808...
1•doener•19m ago•0 comments

Show HN: I stripped GNSS/BT/NFC from GrapheneOS and built a RAM-only messenger

https://arpokrat.com
1•anthonype•21m ago•0 comments

ClickBook – Offline Android eReader with local LLM inference via llama.rn

https://play.google.com/store/apps/details?id=com.clickbook.reader&hl=en_US
1•elcooo•23m ago•1 comments

A History of Quality in Software Engineering

https://roberthopman.com/history-of-quality-in-software-engineering/
1•speckx•24m ago•0 comments

Create anime-style videos from your ideas in minutes

https://www.gocrazyai.com/
1•gocrazyai•25m ago•0 comments

Breaking the code: Multi-level learning in the Eurovision Song Contest

https://royalsocietypublishing.org/rsos/article/13/4/251727/481541/Breaking-the-code-Multi-level-...
1•Tomte•31m ago•0 comments

Linux devs are fighting the new age-gated internet

https://www.theverge.com/tech/930573/age-verification-bills-linux-open-source
2•speckx•33m ago•1 comments

Show HN: Stoic AgentOS - Open-source operating system for AI agent fleets

https://github.com/benjaminkernbaum-ux/stoic-agentos
1•bk0•37m ago•0 comments

Show HN: Mpvc, minimal music player for controling mpv from the shell

https://gmt4.github.io/mpvc/
1•gmt4•37m ago•0 comments

Swatch Royal Pop: A Grotesque Spectacle of the Absurd

https://www.wespiser.com/posts/2026-05-16-spectacle-absurd.html
1•wespiser_2018•39m ago•0 comments

Kelvin versioning

https://wiki.xxiivv.com/site/kelvin_versioning.html
1•manwithaplan•49m ago•1 comments

A multiplicity of tomorrows: Imagining 299 climate intervention futures

https://www.sciencedirect.com/science/article/pii/S1462901126000626
1•rbanffy•52m ago•0 comments

American Keiretsu: A World of Increasing Interconnectivity (2025)

https://www.lom.com/american-keiretsu-a-world-of-increasing-interconnectivity/
1•walterbell•52m ago•0 comments

A Pragmatic Beginner's Guide to Introducing AI to Your Engineering Workflow

https://jeffammons.com/2026/05/05/a-pragmatic-beginners-guide-to-introducing-ai-to-your-engineeri...
2•jammons•53m ago•0 comments

Interpolatable Archives

https://goodinternet.substack.com/p/on-interpolatable-archives-clean
1•walt74•53m ago•1 comments

Show HN: I built a screen recorder that captures console logs, requests and more

https://userplane.io/
1•wizenheimer•54m ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
2•andsoitis•54m ago•1 comments

Collective climate geoengineering futures through technology foresight exercise

https://www.sciencedirect.com/science/article/pii/S2214629625004104
1•rbanffy•55m ago•0 comments

Prometheus and Christ

https://hommepresse.substack.com/p/prometheus-and-christ
1•paulpauper•56m ago•0 comments

Show HN: Aggregating votes from US Congress representatives

https://usvote.fyi/
1•readonkeyless•56m 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.