frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Vibe Coding Does Not Have One Definition, It Has One per Developer

https://dupflo.dev/blog/vibe-coding-has-one-definition-per-developer/
1•dupflo•34s ago•0 comments

An AI agent sliced through an enterprise defenses in 10 hours

https://unit42.paloaltonetworks.com/ai-assisted-cyber-attack-inside-a-unit-42-investigation/
1•scottmas•56s ago•0 comments

21st Revision of Patches for Getting Linux to Shutdown Devices Asynchronously

https://www.phoronix.com/news/Linux-Shutdown-Async-21
1•Bender•1m ago•0 comments

Live Atomic Spatial Audio

https://panaudia.com/
1•paulharter•1m ago•0 comments

Show HN: Eliminating low-LTV support ticket spam with grounded RAG

https://fireflysupport.io/
1•saturn5k•5m ago•1 comments

Elevated Errors for Multiple Models

https://status.claude.com/incidents/461yvfrzpwtt
4•__vivek•5m ago•0 comments

GLP-1 treatment late in life extends lifespan in animal model

https://www.nih.gov/news-events/news-releases/glp-1-treatment-late-life-extends-lifespan-animal-m...
2•DeepLogin•5m ago•0 comments

Data Science Weekly – Issue 667

https://datascienceweekly.substack.com/p/data-science-weekly-issue-667
1•sebg•5m ago•0 comments

UK's Online Safety Act has made 'absolutely no difference,' kids say

https://www.theregister.com/security/2026/09/03/uks-online-safety-act-has-made-absolutely-no-diff...
1•Bender•5m ago•0 comments

Telstra: What we've learned from the external investigation of our July outage

https://www.telstra.com.au/exchange/what-we-ve-learned-from-the-external-investigation-of-our-july-o
1•throw0101d•6m ago•0 comments

FCC plans robocall scorecard to grade phone companies on spam call blocking

https://arstechnica.com/tech-policy/2026/09/fcc-plans-robocall-scorecard-to-grade-phone-companies...
3•Bender•6m ago•1 comments

Nvidia Agrees to Buy Hugging Face for $13B

https://www.wsj.com/tech/ai/nvidia-agrees-to-buy-hugging-face-for-13-billion-11929060
2•JumpCrisscross•7m ago•0 comments

Show HN: Royalty free UI avatars for Figma/React

https://radianui.com/resources/avatar
2•Ashmit72•7m ago•0 comments

Show HN: Openvurp – A wallet of AI agents that use tools and consult each other

https://github.com/openvurp/openvurp
1•vforno•8m ago•0 comments

Inside The Medical AI Factory

https://kaiko.ai/insights-hub/ai-factory/
1•denysvitali•10m ago•0 comments

Stop building your product three times: APIs, MCP and agents should be one stack

https://bump.sh/blog/api-mcp-agents-one-stack/
1•scharrier•12m ago•0 comments

Pgmigrate – Pgcopydb Rewritten in Go

https://github.com/GetStream/pgmigrate
1•tbarbugli•12m ago•1 comments

Ask HN: Founders that raised funding and shutdown, did you raise again?

2•asim•12m ago•0 comments

Yojimbo 1.11.0

https://github.com/mas-bandwidth/yojimbo/releases/tag/v1.11.0
2•klaussilveira•13m ago•0 comments

Robotaxis Aren't Going Where They Are Needed Most

https://www.bloomberg.com/news/articles/2026-09-03/the-improbable-case-for-the-rural-robotaxi
1•toomuchtodo•13m ago•1 comments

The Little-Known Link Between Dementia and Epilepsy

https://www.nytimes.com/2026/08/18/well/mind/dementia-epilepsy-risk.html
1•bookofjoe•15m ago•1 comments

Rpkiviews.org: global RPKI reached 1M unique VRPs

https://lists.nanog.org/archives/list/nanog@lists.nanog.org/message/SIMCPK4W72G4YLLYNAVHDW35YMKC6...
1•speckx•20m ago•0 comments

C2PA Issues and Evaluation (2025) [pdf]

https://hackerfactor.com/papers/c2pa-issues-2025-06-09.pdf
1•1317•20m ago•0 comments

Record Keeping Became Writing

https://apfleming.netlify.app/posts/record-keeping/
1•afleming9796•22m ago•0 comments

The Rise of HOMs: Harmful Open Models

https://twitter.com/frances23398579/status/2095187528655503366
2•FrancescoMassa•22m ago•0 comments

Fedora 46 Proposal Wants to Provide Official Support for Crystal Language

https://www.phoronix.com/news/Fedora-46-Proposal-Crystal
1•Qem•23m ago•0 comments

Logos Not Found

https://valand.dev/blog/post/logos-not-found
1•valand•23m ago•0 comments

Every fix has a radius – blast radius

https://blastradius.dpdns.org/
1•codebyaditya•24m ago•0 comments

Show HN: MrEditor – a Mac editor that opens a 10 GB log in 100ms and edits it

https://github.com/MR-TABATA/MrEditor
4•hitoshi1964•25m ago•0 comments

What's in the Emacs newcomers-presets theme?

https://sachachua.com/blog/2026/04/what-s-in-the-emacs-newcomers-presets-theme/
2•birdculture•25m 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.