frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI will dissolve human civilization as we know it

https://www.newstatesman.com/culture/books/book-of-the-day/2026/04/ai-will-dissolve-human-autonomy
1•thinkingemote•24s ago•0 comments

Employers are blindsiding candidates with AI interviews–and scaring them off

https://www.fastcompany.com/91534397/employers-are-blindsiding-candidates-with-ai-interviews-and-...
2•geox•2m ago•0 comments

Price of Free Gmail

https://www.forbes.com/sites/zakdoffman/2026/04/28/price-of-free-gmail-how-much-your-google-accou...
1•nreece•5m ago•0 comments

96.8% of MCP tool descriptions don't warn the agent about destructive behaviour

https://policylayer.com/research/state-of-mcp-2026
2•liad•6m ago•0 comments

Signs of early life in post asteroid impact sites

https://www.nature.com/articles/s43247-026-03206-7
1•albertgoeswoof•6m ago•0 comments

Is `cal` broken? What happened in September 1752?

https://unix.stackexchange.com/questions/17903/is-cal-broken-what-happened-in-september-1752
2•vismit2000•9m ago•1 comments

Show HN: SelectAndTranslate – Build vocabulary from anything you read (free)

https://selectandtranslate.z7.web.core.windows.net/
1•yanahackernews•10m ago•0 comments

Hype: List of latest ML Python repos,models and subreddits

https://hype.replicate.dev/
1•nalinidash•11m ago•0 comments

Openrouter.ai Now Supports Workspaces

https://openrouter.ai/docs/guides/features/workspaces
1•janandonly•15m ago•0 comments

When Dawkins met Claude – Could this AI be conscious?

https://unherd.com/2026/04/is-ai-the-next-phase-of-evolution/
1•pentestercrab•18m ago•0 comments

How to make SSE token streams resumable, cancellable, and multi-device

https://zknill.io/posts/everyone-said-sse-token-streaming-was-easy/
1•zknill•18m ago•0 comments

Grok 4.3

https://docs.x.ai/developers/models/grok-4.3
2•simianwords•24m ago•1 comments

Breaking ten years of API compatibility

https://futhark-lang.org/blog/2026-04-29-breaking-api-compatibility.html
1•Fudgel•34m ago•0 comments

Lost in translation: The linguistic challenges facing N. Korean defectors (2025)

https://www.dailynk.com/english/lost-in-translation-the-linguistic-challenges-facing-n-korean-def...
3•spzb•34m ago•0 comments

Our agent found a bug with WireGuard in Google Kubernetes Engine

https://lovable.dev/blog/hunting-networking-bugs-in-kubernetes
12•vikeri•40m ago•0 comments

Medicare portal database exposed health providers' Social Security numbers

https://www.washingtonpost.com/health/2026/04/30/medicare-portal-social-security-numbers-exposed/
2•chirau•40m ago•2 comments

Portabase: Database Backup and Restore Tool

https://github.com/Portabase/portabase
1•thunderbong•41m ago•0 comments

Turning the gears of an early modern search engine (2019)

https://www.rochester.edu/newscenter/book-wheel-modern-search-engine-364122/
1•Eridanus2•47m ago•0 comments

SED Diode

http://www.catb.org/jargon/html/S/SED.html
2•drmacak•49m ago•0 comments

git-sync

https://github.com/entireio/git-sync
3•tosh•52m ago•0 comments

Top Storyblok CMS Migration Companies to Choose From

https://focusreactive.com/blog/storyblok-cms-migration-companies/
1•katarinadrozd•52m ago•0 comments

Claude Code Source Code Breakdown

https://kuber.studio/blog/AI/Claude-Code%27s-Entire-Source-Code-Got-Leaked-via-a-Sourcemap-in-npm...
1•sea-gold•1h ago•0 comments

Vibe Maintainer

https://steve-yegge.medium.com/vibe-maintainer-a2273a841040
4•duggan•1h ago•1 comments

Oscar goes missing after Academy Award winner is blocked from taking on flight

https://www.bbc.com/news/articles/cz72j59znw3o
1•saikatsg•1h ago•0 comments

When Vibe Coding Fails: When to Buy versus When to Build

https://www.forbes.com/councils/forbesbusinesscouncil/2026/04/30/when-vibe-coding-fails-when-to-b...
2•sminchev•1h ago•0 comments

Canonical/Ubuntu have been under DDoS for more than 15h

https://status.canonical.com/#/incident/KNms6QK9ewuzz-7xUsPsNylV20jEt5kyKsd8A-3ptQEHpOd8VQ40ZQs-K...
25•jtlebigot•1h ago•1 comments

What Happened with Mars Sample Return?

https://mceglowski.substack.com/p/what-happened-with-mars-sample-return
2•calcifer•1h ago•0 comments

Nvidia's Jim Fan on the End Game for Robotics [video]

https://www.youtube.com/watch?v=3Y8aq_ofEVs
3•pbd•1h ago•1 comments

Show HN: WeSearch – Anonymous news aggregator with no algorithm, 700 sources

https://wesearch.press/
3•EGCstudy•1h ago•0 comments

SoftBank, Intel to develop ZAM memory – new memory designed as lower-power HBM

https://www.tomshardware.com/tech-industry/artificial-intelligence/softbank-subsidiary-working-wi...
4•rbanffy•1h 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.