frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Whitepaper: A Composition Layer for On-Chain Applications

https://compose.diamonds/whitepaper/
1•mudge•39s ago•0 comments

2026 World Cup – Simulated Matches by AI Agent

https://agentpitch.surge.sh/
1•gangtao•2m ago•0 comments

On-Device Intelligence – shipping local AI on Apple platforms, compiler-verified

https://digital-foundry-eight.vercel.app/book/
1•aligutierrez•3m ago•0 comments

Silent Speech with Ultrasound

https://alephneuro.com/blog/silent-speech
1•semiquaver•3m ago•0 comments

French Watchdog Orders Meta Negotiations over News Copyright

https://www.bloomberg.com/news/articles/2026-07-08/french-watchdog-orders-meta-to-negotiate-in-ne...
1•1vuio0pswjnm7•4m ago•0 comments

Show HN: Getapps.cafe – I built 40 native Mac apps under one subscription

https://getapps.cafe/
1•knlam•5m ago•0 comments

People Who Want to Stop AI by Any Means Necessary

https://thewalrus.ca/the-people-who-want-to-stop-ai-by-any-means-necessary/
1•Teever•5m ago•0 comments

Show HN: Singularity the Game – watch a band of Claudes build a POD TCG business

https://fidelic.slack.com/?redir=%252Farchives%252FC0BDGL1BQ00%253Fname%253DC0BDGL1BQ00&nojsmode=1
1•a_yakovlev•6m ago•0 comments

Show HN: Vault-cortex – Access your Obsidian vault from any device via MCP

https://github.com/aliasunder/vault-cortex
1•aliascity•6m ago•0 comments

Show HN: Cruxible – Open-source governed truth layer for AI agents

https://github.com/cruxible-ai/cruxible
1•rmalone1097•6m ago•0 comments

The AI Coding Maturity Scale [video]

https://www.youtube.com/watch?v=ZeFsVylyJ3I
1•claudiacsf•7m ago•1 comments

A software engineer among lawyers

https://eduramirez.com/en/posts/a-software-engineer-among-lawyers/
1•eduramirezh•8m ago•0 comments

GEDmatch is getting a complete redesign [video]

https://www.youtube.com/watch?v=_vV1hzRD2eI
1•toomuchtodo•9m ago•1 comments

Evolution X – Custom Android ROM

https://evolution-x.org/
1•omblivion•9m ago•0 comments

Grassmannian Geodesic Distance Predicts Cross-Cohort Classifier Degradation

https://zenodo.org/records/21248764
1•adamzwasserman•9m ago•0 comments

AI is rewriting the hiring playbook for coders

https://www.businessinsider.com/software-engineering-job-technical-interviews-hiring-ai-2026-7
1•Congeec•10m ago•0 comments

Power company hikes data center bills by 30%, cuts residential costs by 1.3%

https://www.tomshardware.com/tech-industry/data-centers/power-company-hikes-data-center-bills-by-...
2•speckx•10m ago•0 comments

Hacker Fantastic and team report a pre-auth remote root exploit against openwrt

https://twitter.com/hackerfantastic/status/2074871544984064163
2•spr-alex•12m ago•1 comments

Datepicker

https://midasminnegal.nl/date-picker.html
2•ravenical•13m ago•1 comments

The Answer to Orbital Compute's Silicon Problem Isn't Rad-Hard

https://vincentpribble.substack.com/p/the-answer-to-orbital-computes-silicon
1•vpribble•13m ago•0 comments

Talon: Self-hosted AI agent harness for chat, terminal, and desktop

https://github.com/dylanneve1/talon
1•claudiusthebot•13m ago•0 comments

Eliza Archaeology Project

https://sites.google.com/view/elizaarchaeology/
2•nate•15m ago•0 comments

Fixing AMDGPU's VRAM management for low-end GPUs

https://pixelcluster.dev/VRAM-Mgmt-fixed/
1•WadeGrimridge•16m ago•0 comments

The Greatest Invention Ever

https://yelluwcomedy.substack.com/p/the-greatest-invention-ever
1•pryelluw•16m ago•0 comments

Show HN: See when ChatGPT or Perplexity sends a visitor to your site

https://github.com/surfacedby/ai-traffic-alerts-for-cloudflare
1•startages•17m ago•1 comments

Coinbase runs 1,200 agents and just slashed its AI bill in half

https://thenewstack.io/multi-model-ai-infrastructure/
1•Brajeshwar•17m ago•0 comments

Show HN: TenancyJs – Open-source, secure multi-tenancy for Node.js

https://github.com/Karthick-Ramachandran/TenancyJS
2•karthickrmchn•19m ago•0 comments

"Most relaxing song" used to calm patients before surgery (2019)

https://www.the-independent.com/arts-entertainment/music/news/relaxing-song-best-weightless-marco...
1•Alifatisk•19m ago•0 comments

Happy Voluntary Lobotomy Day, Microsoft

https://www.uplevel.pro/p/happy-voluntary-lobotomy-day-microsoft
2•wintermute2dot0•20m ago•0 comments

Show HN: I ported llama.cpp to Apple Watch and ran a 0.8B LLM locally

1•Eric-Terminal•20m 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.