frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What I Learned Securing Sniffnet with the GitHub Secure Open Source Fund

https://sniffnet.app/news/github-secure-open-source-fund/
1•dmit•22s ago•0 comments

AI isn't ready to research itself

https://www.nature.com/articles/d41586-026-02494-5
1•Brajeshwar•54s ago•0 comments

Gemini 3.7 Flash

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-gemini-3-7-fl...
2•meetpateltech•1m ago•0 comments

Class clowns: the triumph of inanity over academia

https://spectator.com/article/class-clowns-the-triumph-of-inanity-over-academia/
1•rahimnathwani•1m ago•0 comments

The Download: kids' thoughts on AI, and female clones of male mice

https://www.technologyreview.com/2026/08/13/1141896/the-download-kids-thoughts-on-ai-female-clone...
1•joozio•1m ago•0 comments

Databricks Raises $5B at a $190B Valuation

https://finance.yahoo.com/technology/articles/databricks-raises-5-billion-190-144033565.html
2•sixdimensional•2m ago•0 comments

Previewing Ultrafast mode: GPT‑5.6 Sol at up to 14X the speed

https://openai.com/index/previewing-ultrafast/
1•meetpateltech•4m ago•0 comments

Inside UBS's Record $125M Anti-Money Laundering Penalty

https://brief.middesk.com/p/ubs-125-million-aml-penalty-fincen
1•petethomas•4m ago•0 comments

The EU Cyber Resilience Act Meets Its Match in Determinate Secure Packages

https://determinate.systems/blog/nix-cyber-resilience-act/
1•biggestlou•6m ago•0 comments

Chicago Mercantile Exchange will list futures contracts for GPU costs

https://www.cmegroup.com/media-room/press-releases/2026/8/11/cme_group_and_silicondatatolaunchcom...
1•p4ul•6m ago•0 comments

I built a memory tool for Claude Code that never leaves your disk

https://github.com/georgedagher/deposition
1•georgedagher•9m ago•0 comments

Forgetting Is a Feature

https://medium.com/@majid.fekri/forgetting-is-a-feature-2cc53c7693cc
1•supportm•9m ago•0 comments

Cloud should come with an app builder

https://blog.railway.com/p/dev-new
1•thisismahmoud_•10m ago•1 comments

In a first, US will allow some private firms to carry out cyberattacks

https://techcrunch.com/2026/08/13/in-a-first-us-will-allow-some-private-firms-to-carry-out-cybera...
2•Cider9986•12m ago•0 comments

Who Should Pay for Source Code Availability?

https://kristoff.it/blog/source-code-availability/
1•kristoff_it•12m ago•0 comments

Cloudflare Durable Objects, Ported to Rails

https://solidobjects.dev/
3•necrodome•13m ago•0 comments

The Biology of Claude's Tokenizer: Reverse Engineered

https://tokencontributions.substack.com/p/on-the-biology-of-claudes-tokenizer
1•goranmoomin•15m ago•0 comments

Marketers are Addicted to Bad Data (2020)

https://www.jacquescorbytuech.com/writing/marketers-addicted-bad-data
1•zbentley•15m ago•0 comments

Five European companies just agreed to buy AI compute that doesn't exist yet

https://thenewstack.io/mistral-third-party-open-models/
1•Brajeshwar•15m ago•0 comments

Greatness: Telegram-Distributed M365 AiTM PhaaS

https://zerobec.com/blog/greatness-phaas-aitm-and-device-code-phishing
1•speckx•16m ago•0 comments

Does AI save time at work?

https://censuseasy.com/blog/does-ai-save-time-at-work
1•misterinfo•16m ago•1 comments

Show HN: My Claude subscription did $5,868 of API-equivalent work last month

https://github.com/dpro10/cookbook-meter
1•dproz•17m ago•0 comments

US Navy sailors try to throw themselves overboard after 250 days at sea

https://www.telegraph.co.uk/world-news/2026/08/13/us-navy-sailors-jump-overboard-after-nine-month...
6•embedding-shape•18m ago•2 comments

The Prompt Sequence I Used to Make a Full Game and Deploy in 2 Days

https://github.com/Glitch-Gaming-Platform/AI-Prompts-For-Game-Development
1•bingewave•20m ago•0 comments

Boom

1•Hidalberto_•20m ago•0 comments

Elon Musk, the Most Famous EV Pioneer, Is Now Leaning into Fossil Fuels

https://www.wsj.com/business/energy-oil/elon-musk-the-worlds-most-famous-ev-pioneer-is-now-leanin...
2•melling•21m ago•0 comments

Researchers find Windows 11 can be hacked with no physical access

https://www.neowin.net/news/researchers-find-windows-11-can-be-hacked-with-no-physical-access-wit...
1•stalkHN24x7•21m ago•0 comments

AHP: Agent Handoff Protocol

https://github.com/DeepJudge-Agent-Handoff-Protocol/agenthandoffprotocol
1•westernmagic•23m ago•0 comments

Show HN: OpenAI network checker using 31 browser and IP signals

https://www.getplus.ai/openai-ip-check
1•lixiaofei•24m ago•0 comments

Fix "Your Connection Is Not Private" in Chrome

https://tlsradar.com/blog/fix-not-private-chrome
1•tlsradar•28m 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.