frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Chatbots Still Can't Render Code Properly (and How to Fix It)

https://barish.me/blog/ai-chatbots-still-cant-render-code-properly/
1•barishnamazov•1m ago•0 comments

Show HN: Bundling Linux inside an Android app to run OpenClaw

https://github.com/coderredlab/andClaw
1•coderredlab•6m ago•0 comments

Karl: Expression-first language with built-in concurrency (playground and REPL)

https://karl-lang.org/
1•broyeztony•10m ago•0 comments

Show HN: Raya – TypeScript-like language with Go-like concurrency model

https://github.com/rizqme/raya
1•rizqme•12m ago•0 comments

Attacker gets into France's database listing all bank accounts

https://www.theregister.com/2026/02/22/french_bank_hack/
1•jjgreen•12m ago•0 comments

Maintenance Release: Godot 4.6.1

https://godotengine.org/article/maintenance-release-godot-4-6-1/
1•__natty__•12m ago•0 comments

PocketAgents, a single-binary runtime for Vercel AI SDK apps

https://github.com/treyorr/pocket-agents
1•trey-orr•12m ago•1 comments

Show HN: Franklin Prompt Studio – Structured prompts for serious AI decisions

https://dfrankstudioz.gumroad.com/l/franklin-prompt-studio
1•dfstudioz•14m ago•0 comments

Show HN: Vocab Top – AI-powered vocabulary builder with visual mnemonics

https://www.vocab.top/
1•Jaber_Said•14m ago•0 comments

Show HN: AIO Checker – See what ChatGPT and Claude see on your website

https://aiochecker.vercel.app
1•solskede•17m ago•1 comments

Will Iran be here in the morning?

1•ShermFrederick•19m ago•1 comments

IT Staffing Firms (TCS, Cognizant, Infosis Underpay Developers by 80–100%

https://h1bdatahub.com/blog/cognizant-tcs-infosys-low-h1b-salaries-exposed
2•buildwithmanju•19m ago•3 comments

Show HN: Deeper – Open-Source Beeper Analytics App for macOS

https://github.com/f/deeper
1•fka•22m ago•0 comments

A minimal CLI for managing TCP ports

https://github.com/odysa/portit
1•agentforce•22m ago•0 comments

New York's Robotaxi Plan Pulled in Blow to Waymo Expansion

https://www.bloomberg.com/news/articles/2026-02-19/new-york-s-robotaxi-plan-pulled-in-setback-to-...
2•1vuio0pswjnm7•24m ago•0 comments

Man in Sicily trained his dog to illegally dump rubbish

https://news.sky.com/video/man-in-sicily-trained-his-dog-to-illegally-dump-rubbish-13509984
1•austinallegro•25m ago•0 comments

Show HN: Treni – single-binary GPU runtime for uncertainty-aware agents 5ms TTFT

https://treni-docs.pages.dev/docs/
1•andrewmonostate•28m ago•1 comments

The possibilities for micro-intelligent fungus

1•justellemno•28m ago•0 comments

Redefining the Software Engineering Profession for AI

https://dl.acm.org/doi/10.1145/3779312
2•dnw•28m ago•0 comments

Simulating fusion reactors in C++ [video]

https://www.youtube.com/watch?v=IaiYxnLrs_8
2•linkdd•35m ago•0 comments

Glue: Unified Toolchain for Your Schemas

https://guywaldman.com/posts/introducing-glue
2•guywald•36m ago•0 comments

Show HN: A Vaadin Algebra and Calculus Solver Built with AI Assistance

2•bellaOxmyx•36m ago•0 comments

Daron Acemoglu warns U.S. democracy won't survive unless these two things change

https://fortune.com/2026/02/22/who-is-daron-acemoglu-nobel-laureate-ai-job-layoffs-economic-inequ...
4•sendes•37m ago•0 comments

Nobulex – Open-source cryptographic accountability protocol for AI agents

https://github.com/agbusiness195/NOBULEX
8•NOBULEX•38m ago•5 comments

Show HN: Ahnotate – A zero-compression, no-login screenshot annotation tool

https://ahnotate.com/
1•advanttage•39m ago•0 comments

Fluxer – AGPL alternative to Discord, has hosted version

https://github.com/fluxerapp/fluxer
1•Sean-Der•43m ago•0 comments

Tesla loses bid to overturn $243M Autopilot verdict

https://techcrunch.com/2026/02/20/tesla-loses-bid-to-overturn-243m-autopilot-verdict/
2•doener•45m ago•0 comments

Show HN: I made a free restock alert system for Pokemon packs, Lego kits, & more

https://www.pricedropnotifications.com/collectibles-restock-alerts
1•HNCATCH•46m ago•1 comments

Why OpenAI's CEO says space-based data centres won't matter this decade

https://indianexpress.com/article/technology/artificial-intelligence/sam-altman-elon-musk-space-d...
1•doener•48m ago•1 comments

Show HN: Testing an Idea – Per-Decision Authorization Layer for AI Systems

1•rkka•48m ago•0 comments
Open in hackernews

Avoid Continue

https://www.teamten.com/lawrence/programming/avoid-continue.html
2•todsacerdoti•10mo ago

Comments

zoezoezoezoe•10mo 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•10mo 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.