frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

There's software, and then there's promptware

https://kelvinfichter.com/pages/thoughts/promptware/
1•kfichter•55s ago•0 comments

EDRi Open Letter: We say no to Big Tech mass snooping on our messages

https://edri.org/our-work/open-letter-we-say-no-to-big-tech-mass-snooping-on-our-messages/
1•robtherobber•2m ago•0 comments

Tim Cook Warned by CIA That China Could Move on Taiwan by 2027

https://www.macrumors.com/2026/02/24/tim-cook-warned-by-cia-china-taiwan-2027/
1•stalfosknight•2m ago•0 comments

IBM stock tumbles 10% after Anthropic launches COBOL AI tool

https://finance.yahoo.com/news/ibm-stock-tumbles-10-anthropic-194042677.html
1•jspdown•4m ago•0 comments

Data center builders thought farmers would willingly sell land, learn otherwise

https://arstechnica.com/tech-policy/2026/02/im-not-for-sale-farmers-refuse-to-take-millions-in-da...
2•stalfosknight•4m ago•0 comments

Towards a Science of AI Agent Reliability

https://arxiv.org/abs/2602.16666
1•smartmic•4m ago•0 comments

How we made Docker builds 193x faster across AI agent sessions

https://blog.helix.ml/p/how-we-made-docker-builds-193x-faster
1•quesobob•6m ago•0 comments

Ask HN: Did your client ever replace you by a more junior freelancer?

1•goingbananas•8m ago•0 comments

Addressing your questions about the Cyber Resilience Act

https://fsfe.org/news/2026/news-20260224-01.html
2•Tomte•8m ago•0 comments

I don't care what tools you use. But – and this is a big but

https://come-from.mad-scientist.club/@algernon/statuses/01KHYGWT17C1HNKRCVBMYTZVHQ
2•latexr•9m ago•0 comments

Show HN: StarkZap – Gasless Bitcoin Payments SDK for TypeScript

https://github.com/keep-starknet-strange/starkzap
1•starkience•9m ago•2 comments

Mercury 2: Diffusion Reasoning Model

https://www.inceptionlabs.ai/blog/introducing-mercury-2
2•zof3•9m ago•0 comments

SpacetimeDB 2.0 [video]

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

Show HN: Awsim – Lightweight AWS emulator in Go (40 services in progress)

https://github.com/sivchari/awsim
2•sivchari•10m ago•0 comments

Stripe valued at $159B, 2025 annual letter

https://stripe.com/newsroom/news/stripe-2025-update
3•jez•11m ago•0 comments

The Schema Language Question: The Quest for a Single Source of Truth

https://www.chiply.dev/post-schema-languages
1•chiply•11m ago•0 comments

OpenClaw led to a user's Gmail account being disabled

https://twitter.com/iamlukethedev/status/2025782621066899873
2•idoxer•12m ago•0 comments

Lockrion – a deterministic issuance protocol on Solana (pre-launch)

https://lockrion.com
1•flexionU•13m ago•1 comments

Dangerously Skip Permissions

https://asimovaddendum.substack.com/p/dangerously-skip-permissions
1•srulyrosenblat•13m ago•0 comments

I built a job board that crawls 900 company career pages directly

https://www.jobscroller.net
3•couentine•14m ago•1 comments

Global AI data center boom hits delays

https://www.axios.com/2026/02/24/ai-data-center-boom-projects-numbers
1•1vuio0pswjnm7•14m ago•0 comments

'Probably' doesn't mean the same thing to your AI as it does to you

https://theconversation.com/probably-doesnt-mean-the-same-thing-to-your-ai-as-it-does-to-you-275626
1•geox•14m ago•0 comments

Build your own custom AI CLI with Pydantic AI

https://vstorm-co.github.io/pydantic-deepagents/
2•frankwiles•14m ago•2 comments

AI Homer Simpson 'Cover Songs' Have 'Poisoned' Soulseek

https://www.vice.com/en/article/infinite-ai-homer-simpson-cover-songs-poisoned-soulseek/
3•ides_dev•14m ago•0 comments

QED: John's Not Mad – Documentary 1988 [video]

https://www.youtube.com/watch?v=wxfJDpd3XcY
1•mellosouls•16m ago•1 comments

Single Store Vector Search Index: Architecture and Memory Efficiency

https://memgraph.com/blog/single-store-vector-index
2•mbuda•16m ago•1 comments

Nothing's Happening

https://uptointerpretation.com/posts/nothings-happening/
1•hardwaregeek•16m ago•0 comments

Great Isaiah Scroll, oldest Biblical book ever found, on show for first time

https://www.timesofisrael.com/great-isaiah-scroll-oldest-near-complete-biblical-book-ever-found-o...
1•myth_drannon•17m ago•0 comments

Ask HN: Developers cloned my student project in 2 weeks. Why?

1•glinkswww•17m ago•2 comments

Row Locks with Joins Can Produce Surprising Results in PostgreSQL

https://hakibenita.com/postgres-row-lock-with-join
1•haki•17m 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.