frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A little experiment in evading AI detection

https://thegustafson.com/blog/evading-ai-detection
1•usernotfoundrn•1m ago•0 comments

Why OpenRouter can be the next great platform

https://taikhooms.substack.com/p/why-openrouter-can-be-the-next-great
1•theanonymousone•3m ago•0 comments

Origami Cat Puppet

https://www.ducksters.com/videos/arts-crafts/origami_cat_puppet.php
1•jruohonen•6m ago•0 comments

Digital Fauxice – an OSS clean room Nikon Digital Ice with 1:1 results

https://github.com/rohanpandula/digital-fauxice
2•peteforde•16m ago•0 comments

Martin Picard's Mitochondrial Theory of Mind

https://www.quantamagazine.org/martin-picards-mitochondrial-theory-of-mind-20260717/
2•nsoonhui•19m ago•0 comments

Recap: Software Should Work 2026

https://bencornia.com/blog/recap-software-should-work-2026
1•bencornia•24m ago•0 comments

Gpu.ai $1k Grand Prize Buildathon August 22nd 2026: Build on Free Cloud GPUs

https://gpu.ai/buildathon
1•johngpuai•29m ago•0 comments

Show HN: A model-routing benchmark – the routers optimize the wrong axis

https://github.com/dotnetspark/fbc-model-routing-benchmark
1•yadellopez•34m ago•0 comments

New normal? US had a major power outage EVERY month of 2026

https://electrek.co/2026/07/15/new-normal-the-us-has-suffered-a-major-power-outage-every-month-of...
1•sharjeelsayed•38m ago•0 comments

Pre-Modern Armies for Worldbuilders, Part IVa: Leadership

https://acoup.blog/2026/07/18/collections-pre-modern-armies-for-worldbuilders-part-iva-leadership/
1•gostsamo•38m ago•0 comments

CoRecursive Interview with Paul Lutus, the Author of Apple Writer

https://corecursive.com/remote-developer/
1•lioeters•42m ago•1 comments

In-browser agent that bulk enriches any webpage

https://www.rtrvr.ai/blog/agentic-dataset-enrichment-in-your-browser
1•arjunchint•44m ago•0 comments

Rolling Stones match Beatles with 15th UK number one album

https://www.reuters.com/business/media-telecom/rolling-stones-match-beatles-with-15th-uk-number-o...
1•1659447091•50m ago•0 comments

Three workers digging in a field outside the data center

https://sign2.nl/websign/three-workers-digging-in-a-field-outside-the-data-center-by-dinnis-van-d...
1•jruohonen•51m ago•0 comments

Flathub's AI slop ban looks like it was the right call

https://www.omgubuntu.co.uk/2026/07/flathub-ai-slop-ban-data
2•shaunpud•51m ago•0 comments

Show HN: Scenario Tests for Distributed Systems

https://www.srinidhin.com/blog/11.html
1•srinidhin•52m ago•0 comments

ADHD friendly journaling: Garden of Roses and Thorns

https://thinkersutra.substack.com/p/rosesandthornsadhd
1•shrini11•56m ago•0 comments

Critical thinking has become an AI‑era buzzword. But what does it mean?

https://theconversation.com/critical-thinking-has-become-an-ai-era-buzzword-but-what-does-it-actu...
1•jruohonen•57m ago•0 comments

The Adventures of a Donkey (1815)

https://gutenberg.org/cache/epub/79114/pg79114-images.html
1•petethomas•1h ago•0 comments

California roadside icon Pea Soup Andersen's, closed for years, to be demolished

https://www.sfgate.com/centralcoast/article/pea-soup-andersens-demolition-22342288.php
1•MilnerRoute•1h ago•0 comments

Tabstack by Mozilla

https://tabstack.ai
1•handfuloflight•1h ago•0 comments

What's New on World Emoji Day 2026

https://blog.emojipedia.org/whats-new-on-world-emoji-day-2026/
1•doublepg23•1h ago•0 comments

Mac gaming is finally getting the overpowered upgrade it deserves

https://www.macworld.com/article/3189951/apples-latest-game-porting-toolkit-beta-changed-how-i-th...
18•kristianp•1h ago•10 comments

Postlia – a social media scheduler that flags AI-sounding posts

https://postlia.com
1•EraySaygin•1h ago•1 comments

Same Crash. Twice the Funerals

https://www.talkingwreckless.com/p/same-crash-twice-the-funerals
1•haltingproblem•1h ago•0 comments

Mess with DNS

https://messwithdns.net/
1•gurjeet•1h ago•1 comments

Over 10k people shared what they love about GPT-5.6

https://welcome-to-codex.openai.chatgpt.site/
1•pretext•1h ago•1 comments

Ask HN: Claude Code for Ordinary User

2•oriettaxx•1h ago•2 comments

How Does Pangram Work?

https://pangram.substack.com/p/how-does-pangram-work
5•pretext•1h ago•0 comments

Pre-auth SQL injection in WordPress Core

https://github.com/47Cid/wp2shell-lab
2•sid47•1h 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.