frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Avoid putting synthetic fibers in the dryer: it fills the air with microplastics

https://www.minimallysustained.com/blog/2026-06-26
1•blondie9x•40s ago•0 comments

NASA's X-59 "frankenjet" tests supersonic flight without the sonic boom

https://arstechnica.com/gadgets/2026/06/nasas-x-59-frankenjet-tests-supersonic-flight-without-the...
1•rbanffy•1m ago•0 comments

What I Look for When a Risky PR Lands

https://jakelundberg.dev/blog/what-i-look-for-when-a-risky-pr-lands
1•backlit4034•1m ago•0 comments

SpudCell: The first synthetic cell with a complete cell cycle

https://biotic.org/research/spudcell/
1•godwinson__4-8•1m ago•0 comments

How the U.S. Engineered Its Sovereignty

https://spectrum.ieee.org/us-engineered-sovereignty
1•rbanffy•1m ago•0 comments

An open source persistent agent that handles my boring dev chores

https://www.metabase.com/blog/persistent-agent
1•filipesilva•1m ago•1 comments

Platform Engineering 2.0 Mitigates AI Security and Compliance Risks

https://platformengineering.com/features/platform-engineering-2-0-manage-ai-costs-and-risks-witho...
1•BruceGain•2m ago•0 comments

Rotman Lens

https://en.wikipedia.org/wiki/Rotman_lens
1•thomasjb•2m ago•0 comments

Show HN: I rebuilt Instagram's feed so every post teaches LeetCode

https://app.instello.app/
2•atomics423•4m ago•0 comments

You only have weeks left to vibe code. Then it's over. You better hurry up

https://michalmalewicz.medium.com/you-only-have-weeks-left-to-vibe-code-09a89c3d3f9b
3•gbxyz•4m ago•0 comments

Stop wasting tokens everytime you continue a Claude Code session

https://recallplugin.dev
2•sleepynoodle•4m ago•0 comments

Anthropic Cyber Jailbreak Disclosure Program

https://hackerone.com/anthropic-cyber-jailbreak/?type=team
2•AlphaWeaver•6m ago•0 comments

Show HN: Multi-User Agent Workspace

https://github.com/fred-terzi/totem-llm
2•fred_terzi•6m ago•0 comments

Show HN: Ovi AI – AI QA partner that helps startups ship fast at high quality

https://www.firstqa.dev/
2•ovi_firstqa•6m ago•0 comments

RayTention – Self-Attention via Geometric Signal Extraction

https://github.com/NohWai-Software/RayTention
2•NohWai•8m ago•0 comments

Show HN: QueryDrift fail CI when a PR turns 1 query into N

https://github.com/AALXX/QueryDrift
2•S3RBVN•8m ago•0 comments

Palabre – Make two AI coding agents debate a decision in your terminal

https://palab.re/en
2•JuReyms•9m ago•0 comments

Narratives of Kingship in Eurasian Empires, 1300–1800

https://library.oapen.org/bitstream/handle/20.500.12657/38042/9789004340541_webready_content_text...
3•joebig•9m ago•0 comments

The Anti-Palantir Manifesto

https://nym.com/blog/anti-palantir-manifesto
5•eustoria•10m ago•0 comments

Can you build a recognizable World Map in under 500 bytes?

https://www.experimentlog.com/blog/building-a-world-map-with-only-500-bytes
1•iweczek•10m ago•1 comments

That's an interesting starting point. Who is made out of meat?

https://thelonggoodbye.net/p/thats-a-really-interesting-starting
1•adamfletcher•10m ago•0 comments

How to figure out what you want

https://hils.substack.com/p/how-to-figure-out-what-you-want
1•jger15•10m ago•0 comments

Show HN: Reminal – A zero-config SSH alternative (no open ports, no keys)

https://github.com/harshalgajjar/reminal
3•harshalgajjar•11m ago•1 comments

Freedom Isn't Free (2018)

https://logicmag.io/failure/freedom-isnt-free/
1•robtherobber•11m ago•0 comments

The GNU Emacs Architecture: Unlocking the Core [pdf]

https://www.diva-portal.org/smash/get/diva2:2052282/FULLTEXT01.pdf
1•cenazoic•11m ago•1 comments

Ethical NBA Championships, Ranked

https://pudding.cool/2026/06/ethical-champions/
1•surprisetalk•13m ago•0 comments

Trust Is Not Governance

https://www.blackhc.net/essays/trust_is_not_governance/
2•blackhc•14m ago•0 comments

Applying Artificial Intelligence to Trading (2021)

https://www.hudsonrivertrading.com/hrtbeat/ai-trading/
1•eustoria•14m ago•0 comments

The Goldilocks customizable select height

https://jakearchibald.com/2026/goldilocks-select-height/
1•eustoria•15m ago•0 comments

Cloudflare Attribution Business Insights

https://blog.cloudflare.com/attribution-business-insights/
1•sourcecodeplz•16m 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.