frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

a11yShiny: Accessibility for R Shiny Apps

https://bmbf.usercontent.opencode.de/datenlabor/a11yshiny/inst/pages/a11yshiny_blog.html
1•janderkran•3m ago•0 comments

Commodore 64 Basic for PostgreSQL

https://thombrown.blogspot.com/2026/07/load-plcbmbasic81-commodore-64-basic.html
1•hans_castorp•5m ago•0 comments

Designing Systems Series

https://yusufaytas.com/series/designing-systems
7•yusufaytas•7m ago•1 comments

Backtest to Insight: Building an Index Futures Strategy from Stock-Level Signals

https://medium.com/@DolphinDB_Inc/backtest-to-insight-building-an-index-futures-strategy-from-sto...
1•yiweileng•12m ago•0 comments

Godot says bye bye AI, bans vibe-coded contributions

https://www.theregister.com/ai-and-ml/2026/07/01/godot-says-bye-bye-ai-bans-vibe-coded-contributi...
2•taubek•13m ago•0 comments

Spyware found on phone of European Parliament member probing it

https://therecord.media/pegasus-spyware-european-parliament-pega-committee-member
3•jruohonen•14m ago•0 comments

How to Build an AI Chat Endpoint in Node.js with the Telnyx AI Assistants API

https://old.reddit.com/r/Telnyx/comments/1ukn7n3/how_to_build_an_ai_chat_endpoint_in_nodejs_with/
1•harpreetseehra•15m ago•1 comments

We Built a New Editor. Want to Try It?

https://simplenote.com/2026/07/03/we-built-a-new-editor-want-to-try-it/
1•ingve•17m ago•0 comments

Library Song

https://authorscalendar.info/
1•jruohonen•19m ago•0 comments

Rare copy of US Declaration of Independence found by volunteer in UK archives

https://www.bbc.co.uk/news/articles/cgrkl104ly5o
3•iam-TJ•20m ago•0 comments

The AI Superforecasters Are Here

https://www.astralcodexten.com/p/the-ai-superforecasters-are-here
1•Michelangelo11•21m ago•0 comments

Show HN: Scopewalker, an MCP server for codebase complexity metrics

https://github.com/timohaa/scopewalker-mcp
1•thaanpaa•22m ago•0 comments

Wordgard: The new in-browser rich-text editor from the creator of ProseMirror

https://wordgard.net/
1•indy•22m ago•0 comments

Show HN: Numbword – a daily word game where letters add up to a target

https://numbword.com/
1•celltalk•24m ago•0 comments

30-Second Cherry Trick Sleep Formula Explained

https://gamma.app/embed/30-Second-Cherry-Trick-For-Sleep-Yu-Sleep-Review-2026-tsv4bcfbd4syqwf?mod...
1•prepostseo•24m ago•0 comments

Check any website up/down Status?

https://urlwatch.io/
1•rajkverma123•26m ago•0 comments

The mathematical secrets of Barcelona's Sagrada Familia

https://mappingignorance.org/2026/06/30/sagrada-familia/
1•Gedxx•29m ago•0 comments

EU Parliament temporarily defies Chat Control

https://www.heise.de/en/news/Partial-victory-with-a-catch-EU-Parliament-temporarily-defies-chat-c...
4•donpott•30m ago•0 comments

SmrtLnks – Cheaper Bitly link shortener that routes by GEO, dynamic QR included

https://smrtlink.link/
1•ExcellentNobody•30m ago•0 comments

India asks WhatsApp to pause username feature rollout over fraud concerns

https://www.bbc.com/news/articles/ckg8e0n9l41o
2•Markoff•33m ago•0 comments

JPEG-XL Libjxl 0.12 Brings More Performance Optimizations

https://www.phoronix.com/news/JPEG-XL-libjxl-0.12
3•blurred•35m ago•0 comments

Multiple Linux tarballs return 404 on kernel.org

https://kernel.org/
2•Lwrless•41m ago•2 comments

Alibaba to ban Claude Code in workplace over alleged backdoor risks, source says

https://www.reuters.com/world/china/alibaba-ban-claude-code-workplace-over-alleged-backdoor-risks...
18•nsoonhui•41m ago•4 comments

Half-Baked Product

https://weli.dev/blog/half-baked-product/
2•weli•49m ago•1 comments

How eveRy webSite is tRacking you 24/7. SiTe STaMpS

https://medium.com/@thesuperrepemail/how-every-website-is-tracking-you-24-7-site-stamps-333e8026eaba
1•mssblogs•49m ago•0 comments

Giotto.ai: "A Swiss lab with European heart"

https://www.giotto.ai/#about
1•theanonymousone•50m ago•0 comments

ECTC 2026 Roundup, Intel, TSMC, SK Hynix, Samsung, Micron, Marvell, Lightmatter

https://newsletter.semianalysis.com/p/ectc2026
1•felixdoerp•52m ago•0 comments

Nobody Reads the SQL Anymore

https://tabularis.dev/blog/nobody-reads-the-sql-anymore
1•debba•52m ago•1 comments

'guix substitute' and 'guix pull' Vulnerabilities

https://guix.gnu.org/en/blog/2026/guix-substitute-pull-vulnerabilities/
2•elephant-ocean•52m ago•0 comments

I replaced my GitHub runners with Lambda MicroVMs, and maybe you should too

https://lucvandonkersgoed.com/2026/07/01/i-replaced-my-github-runners-with-lambda-microvms-and-ma...
1•touristtam•54m ago•1 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.