frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Escaping the Paradox of More

https://www.yorba.co/internet-less/escaping-the-paradox-of-more
1•schmudde•1m ago•0 comments

The Mafia may be keeping fentanyl out of Italy

https://www.economist.com/europe/2026/09/24/the-mafia-may-be-keeping-fentanyl-out-of-italy
1•geneticdrifts•1m ago•0 comments

Raspberry Pi Locks Down RAM Upgrades

https://hackaday.com/2026/09/22/raspberry-pi-locks-down-ram-upgrades/
1•airhangerf15•2m ago•0 comments

Nuclear Waste Accidentally Leaked at Pacific Coast Site

https://americanbuildout.com/radioactive-material-from-dormant-nuclear-plant-accidentally-leaks-a...
1•newyorkinfra•3m ago•0 comments

Grieving the Loss of Details

https://purplesyringa.moe/blog/grieving-the-loss-of-details/
1•ibobev•3m ago•0 comments

Test

https://www.reddit.com/r/CryptoRoyale/comments/1o97pz5/community_reminder_clan_war_invite_competi...
1•godlymod•4m ago•0 comments

Servers in Dawn-Dusk Orbit

https://www.johndcook.com/blog/2026/09/25/dawn-dusk-orbit/
1•ibobev•5m ago•0 comments

The Tudor Queens

https://analog-antiquarian.net/2026/09/25/the-tudor-queens/
1•ibobev•5m ago•0 comments

Active Directory Penetration Testing Playbook

https://0ut3r.space/2026/09/25/ad-pentest-playbook/
1•h0ek•11m ago•0 comments

A local Home Assistant door system I live with (and ways it can fail)

https://github.com/AntonisPsarras/guardian-system
1•antonispsarras•12m ago•0 comments

Lean Golf – Code golf but you're proving theorems in Lean

https://lean.golf
1•kurinikku•12m ago•0 comments

What Octavia Butler's Notebook Knew About Self-Efficacy

https://dawnwages.info/bajoran-engineer/2026/09/24/boldly-go-1-so-be-it-see-to-it/
1•mooreds•12m ago•0 comments

Show HN: Storia – A free voice-following teleprompter with mood and pacing cues

https://www.get-storia.com/
1•matteomosca•13m ago•0 comments

Show HN: PitchDrops offline-first ear training PWA built w Web Audio and React

https://pitchdrops.com/
1•EdBoraas•13m ago•0 comments

LLM Policies: Progress at All Costs

https://diegoe.be/2026/09/25/llm-policies-progress-at-all-costs/
4•eustoria•14m ago•0 comments

What is Enlightenment? (1784) [pdf]

https://www.nypl.org/sites/default/files/kant_whatisenlightenment.pdf
1•RGS1811•14m ago•0 comments

Notion Mail Is Shutting Down

https://twitter.com/NotionMail/status/2070177264457715817
3•hisamafahri•14m ago•1 comments

Show HN: I built a tool to combine separate photos into one scene using AI

https://tancky.io/
1•tancky•14m ago•0 comments

After the Data Centers

https://dissentmagazine.org/article/ai-data-center-backlash/
1•eustoria•15m ago•0 comments

Compared four spec driven, tools. I didn't expect this gap

https://twitter.com/SSShken/status/2101284944534204771
1•darkniss•15m ago•0 comments

What's still manual when debugging AI agents?

https://www.traser.dev/
1•Tussa_Domingos•16m ago•0 comments

Scientists Mapped a Hidden Glacier Using Gravity

https://eos.org/articles/scientists-mapped-a-hidden-glacier-using-gravity
1•eustoria•16m ago•0 comments

Dirty deal on ChatControl 2.0 looms, allowing PERMANENT mass scanning

https://digitalcourage.social/@echo_pbreyer/117331480393548354
1•latexr•16m ago•0 comments

A Prompt to Learn Anything

https://github.com/ZaneH/tutor
2•FinalDestiny•17m ago•0 comments

Show HN: Llama.cpp fork with 2-4x multiGPU speed for MoE models bigger than VRAM

https://github.com/neurall/llama.cpp
1•neuralll•19m ago•1 comments

Guys, We Suck at This

https://unattributed.cc/2026/09/06/guys-we-really-really-suck/
1•surprisetalk•19m ago•0 comments

John Coltrane Centenary's – Impulse Records Release the Legendary Tiberi Tapes

https://www.jazzwise.com/content/news/john-coltrane-centenary-celebrations-see-impulse-records-re...
3•gregsadetsky•21m ago•0 comments

My Unicorn Founder Friend Was Phished

https://casco.com/blog/how-my-unicorn-founder-friend-was-phished
1•rafaelc•24m ago•1 comments

Show HN: PixelSniff – Check if a photo is AI-generated, no sign-up

https://pixelsniff.com/
1•songtianlun1•25m ago•2 comments

Crab-like autonomous wheelchair (2025)

https://www.designboom.com/technology/autonomous-wheelchair-foldable-tentacle-legs-climb-stairs-s...
1•simonebrunozzi•25m 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.