frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Synopsule – on-device meeting transcription with a local MCP server

https://apps.apple.com/us/app/synopsule/id6773112941
1•sunnynagra•26s ago•0 comments

Agent checkpointing is far from production-grade resiliency

https://www.restate.dev/blog/why-checkpointing-is-not-production-grade-durable-execution
1•gvdongen•2m ago•1 comments

Modeling Hierarchies with FusionAuth

https://fusionauth.io/docs/extend/examples/modeling-hierarchies
1•mooreds•3m ago•0 comments

Pretending to Have (Or to Be) a Computer as a Strategy in Teaching (1964)

https://www.harvardeducationalreview.org/content/34/3/383
1•tosh•3m ago•0 comments

Show HN: Tecton Forge AI – An AI tool that generates designs

https://tectonforgeai2.vercel.app/
1•tecton_forge_ai•4m ago•0 comments

Show HN: A no-back end webpage that lets users bring their own coding agent

https://shukla.io/blog/2026-06/byoa.html
1•BinRoo•4m ago•0 comments

Pickle is the pumpkin spice of summer

https://www.cnn.com/2026/06/14/us/pickle-flavor-summer-cec
1•mooreds•4m ago•0 comments

0x022 – Token Optimizers

https://unzip.dev/0x022-token-optimizers/
1•vismit2000•6m ago•0 comments

Coase-Information Theory for AI Orgs

https://github.com/galatheus-labs/coase-info-theory
1•eismcc•6m ago•0 comments

I built a private ChatGPT for my family

https://fulghum.io/family-chatgpt
1•jordanf•7m ago•0 comments

Deep-Research Agents Can Be Poisoned via User-Generated Content

https://arxiv.org/abs/2605.24245
1•rinnetensei•7m ago•0 comments

Show HN: Steal-a-GIF – A browser tool to export GIFs from locked down platforms

https://vorpus.github.io/steal-a-gif/
1•lizhang•7m ago•0 comments

AdBuster 2.0 – Offline detection of loud TV ads using RMS and contextual logic

https://github.com/AdBusterOfficial/Adbuster--WinApp
1•Bo_Amigo_910•10m ago•0 comments

This 1976 University Experiment Spun Up the U.S. Wind Industry

https://spectrum.ieee.org/william-heronemus-wind-energy
1•pseudolus•10m ago•0 comments

How to Stop a Killer Asteroid

https://thereader.mitpress.mit.edu/how-to-stop-a-killer-asteroid/
1•pseudolus•11m ago•0 comments

Genetic Mapping Identifies Potential New Targets for Cocaine Addiction

https://today.ucsd.edu/story/genetic-mapping-identifies-potential-new-targets-for-cocaine-addiction
1•gmays•12m ago•0 comments

Claude Code Is a Chainsaw

https://mechanicalsurvival.com/blog/claude-code-is-a-chainsaw/
1•duncanjbrown•13m ago•0 comments

US clampdown on Anthropic models sends EU sovereignty surge into overdrive

https://www.theregister.com/ai-and-ml/2026/06/15/us-clampdown-on-anthropic-models-sends-eu-sovere...
1•beardyw•13m ago•1 comments

Pluck: Probabilistic Programming With Lazy Inference

https://pluck-lang.github.io/
1•optimalsolver•13m ago•0 comments

EU and Civil Society Need to Progress on Digital Autonomy

https://berthub.eu/articles/posts/eu-civil-society-need-progress-digital-autonomy/
2•genericlemon24•15m ago•0 comments

Show HN: Pantheon – AI vs AI: one writes the code, the other attacks it

https://github.com/lolu1032/pantheon-skills
1•lolu1032•15m ago•0 comments

ST-RS: A suckless-like ST terminal in Rust

https://codeberg.org/ideasman42/st-rs
1•ideasman42•16m ago•2 comments

Owning vs. Renting AI

https://twitter.com/lqiao/status/2066403957824688462
1•bilsbie•17m ago•0 comments

Surf's Up

https://visakanv.substack.com/p/surfs-up
1•herbertl•18m ago•0 comments

Clawdcursor vs. Computer Use

https://clawdcursor.com
1•AmrDabb•19m ago•0 comments

Hundreds of AUR packages compromised

https://lwn.net/Articles/1077718/
1•prakashqwerty•19m ago•0 comments

Websites for Government Contractors

https://www.nasa.gov/organizations/osbp/websites-for-government-contractors/
1•ilreb•20m ago•1 comments

Pyinfra – agentless infrastructure automation, in plain Python

https://pyinfra.com
2•gregnavis•20m ago•0 comments

Deconstructing Datalog

https://www.rntz.net/post/my-thesis.html
1•rbanffy•21m ago•0 comments

E.W.Dijkstra Archive: The notational conventions I adopted, and why (EWD 1300)

https://www.cs.utexas.edu/~EWD/transcriptions/EWD13xx/EWD1300.html
1•tosh•21m 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.