frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I made an IPv6 proxy for GitHub

https://githubv6.com/
1•immibis2•2m ago•0 comments

Cherry Kearton – groundbreaking 19th-century nature photographer

https://www.bbc.com/future/article/20260507-cherry-kearton-the-eccentric-influence-on-a-young-sir...
1•jeffwass•6m ago•1 comments

I Will Never Use AI to Code

https://antman-does-software.com/i-will-never-use-ai-to-code-or-write
1•ishanz•7m ago•0 comments

Poka-Yoke

https://en.wikipedia.org/wiki/Poka-yoke
1•the-mitr•8m ago•0 comments

Anthropic weighs fundraising for near $1T valuation, FT reports

https://www.reuters.com/technology/anthropic-weighs-fundraising-near-1-trillion-valuation-ft-repo...
1•giuliomagnifico•10m ago•0 comments

Young people explicitly banned from openSUSE – urgent call for reversal

https://lists.opensuse.org/archives/list/project@lists.opensuse.org/message/6PU6JU2IGKDANYNN3KIXD...
2•robin_reala•11m ago•0 comments

The Birthplace of AI

https://www.cantorsparadise.com/the-birthplace-of-ai-9ab7d4e5fb00
1•tzury•14m ago•0 comments

Show HN: Know Any Good Jokes?

https://6jokes.com
1•dobodob•19m ago•0 comments

Stable Release of OpenClaw

https://agentwatch.aicompass.dev
1•davideuler•20m ago•1 comments

Code with Claude 2026 – San Francisco (playlist) [video]

https://www.youtube.com/watch?v=GMIWm5y90xA&list=PLmWCw1CzcFim2obQ-w3ohbULOfwp5lApR
1•pramodbiligiri•27m ago•0 comments

EU calls VPNs "a loophole that needs closing" in age verification push

https://cyberinsider.com/eu-calls-vpns-a-loophole-that-needs-closing-in-age-verification-push/
11•muse900•29m ago•1 comments

Building an AI-Powered IDE Companion App

https://mesmacosta.medium.com/google-cloud/from-idea-to-execution-building-an-ai-powered-ide-comp...
1•graup•29m ago•2 comments

How empty are the depths of space?

https://bigthink.com/starts-with-a-bang/how-empty-depths-space/
1•Kaibeezy•30m ago•0 comments

Color space conversion that transforms RGB/RYB colors in code/learn mode

https://rybitten.space/
1•jamiecurle•36m ago•0 comments

Perplexity Drops the Academic Integrity Mask

https://www.plagiarismtoday.com/2025/10/27/perplexity-drops-the-academic-integrity-mask/
2•jruohonen•38m ago•0 comments

Show HN: Hacker News Dark Mode Bookmarklet

https://github.com/gorgonian/hn-dark-bookmarklet
1•gorgonian•40m ago•0 comments

What Beijing learned about the U.S. from the Iran war

https://www.politico.com/news/2026/05/08/china-lessons-iran-trump-xi-00912539
2•KnuthIsGod•45m ago•0 comments

Data Visualisation Guide

https://data.europa.eu/apps/data-visualisation-guide/graphic-design-introduction
2•tosh•48m ago•0 comments

How Timeplus AgentGuard dectect realtime threats from Agent

https://timeplus-io.github.io/Presentation---AgentGuard-Introduction/
1•gangtao•50m ago•0 comments

How Axavive Supports Better Wellness Naturally?

1•JackSage•55m ago•0 comments

Whistling-only WhatsApp groups are taking off in Brazil

https://www.theguardian.com/world/2026/may/05/brazil-craze-whistling-only-whatsapp-groups
2•sahar_builds•57m ago•0 comments

Porting Starlark to Pure Python with Claude Code

https://dbohdan.com/starlark-python
1•networked•58m ago•0 comments

[Odds of hitting] a home run off the top of the foul pole

https://www.nytimes.com/athletic/7261633/2026/05/08/oneil-cruz-home-run-foul-pole-pirates/
1•Kaibeezy•1h ago•1 comments

A Technical Dive into Formalization of Chess Tactics

https://lichess.org/@/heroku/blog/gofchess--a-technical-dive-into-formalization-of-chess-tactics/...
2•heroku•1h ago•0 comments

Show HN: My New Projects Website

https://apps.weichart.de
1•surrTurr•1h ago•0 comments

The Making of Steven Spielberg's Jurassic Park (2012)

https://www.blu-ray.com/news/?id=8186
2•susam•1h ago•0 comments

Deepsec: The security harness for finding vulnerabilities

https://vercel.com/blog/introducing-deepsec-find-and-fix-vulnerabilities-in-your-code-base
1•gmays•1h ago•0 comments

Watts Wasting Texas Water [pdf]

https://www.sierraclub.org/sites/default/files/2026-05/texaswaterreport_final.pdf
2•littlexsparkee•1h ago•0 comments

Aurora: A Leverage-Aware Optimizer for Rectangular Matrices

https://blog.tilderesearch.com/blog/aurora
1•sanxiyn•1h ago•0 comments

Snapseed 4.0 – Note from the Team

https://old.reddit.com/r/snapseed/comments/1t7j7yt/snapseed_40_a_note_from_the_snapseed_team/
1•satvikpendem•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.