frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How do you handle uncertain GPU capacity needs months in advance?

1•plainviewinstru•40s ago•0 comments

Spy cameras on Royal Navy drones sent data to China

https://www.telegraph.co.uk/news/2026/08/09/spy-cameras-on-navy-drones-secretly-sent-data-to-china
1•delichon•1m ago•0 comments

Show HN: DisplayWave – open-source and simple tool for Mac display management

https://github.com/kah-ve/DisplayWave
1•warpbin•4m ago•0 comments

Show HN: Memftprt, a consistent, process-tree-wide memory footprint on Linux

https://github.com/menzew/memoryfootprint
1•benzewdu•9m ago•0 comments

Measuring the Wrong Thing: Internal Harmfulness Scores Anti-Rank Successful

https://arxiv.org/abs/2608.09624
1•sbulaev•12m ago•0 comments

I built a PII pdf parser for your agent

https://www.pdfagent.net/
2•mattmerrick•14m ago•0 comments

Male redback spider's dramatic death somersault during sex coded in its DNA

https://www.abc.net.au/news/science/2026-08-12/redback-spiders-backflip-katipo-sex/107022976
2•Gaishan•14m ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
2•RyanShook•14m ago•0 comments

Dogs can tell when you're happy, sad or frustrated

https://www.washingtonpost.com/lifestyle/2026/08/11/dogs-can-tell-when-you-happy-scared-or-sad-ne...
2•wslh•15m ago•1 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•19m ago•0 comments

The 7T AI Gamble Is Failing. Big Tech Is Trapped

https://www.youtube.com/watch?v=OunJtLnyPT4
3•cable2600•22m ago•0 comments

The StubHub Customers Who Battled for Tickets–and Battle Harder for a Refund

https://www.wsj.com/business/stubhub-tickets-resell-refund-de5ef8c3
1•fortran77•23m ago•1 comments

Talk to ELIZA

https://findingeliza.org/try.html
2•droidjj•32m ago•0 comments

Statin use vs. death rate from cardiovascular diseases (2019)

https://ourworldindata.org/grapher/statin-use-cardiovascular-disease-death-rate
2•js2•32m ago•0 comments

We found a bug in FFmpeg with a vibecoded fuzzer

https://code.ffmpeg.org/FFmpeg/FFmpeg/issues/23945
3•dclavijo•36m ago•0 comments

What job postings say about AI at work – Live report

https://corvi.careers/reports/ai-job-trends/
1•sp1982•41m ago•0 comments

Ask HN: Could DNA be represented as "an embedding" in an AI model?

3•greenmoonx•41m ago•1 comments

Electric is joining team Neon at Databricks

https://neon.com/blog/electric-joins-neon
2•thunderbong•43m ago•0 comments

Show HN: Copero Game: Free Football Career Simulator

https://coperogame.com/en
1•light001•45m ago•0 comments

A carbon nanotube network combines fracture resistance with extreme hardness

https://www.ibtimes.sg/china-scientists-create-unbreakable-crystal-stronger-diamond-how-it-works-...
1•yogthos•49m ago•0 comments

What happens when the AI bubble pops?

https://thehustle.co/originals/what-happens-when-the-ai-bubble-pops
2•paulpauper•52m ago•1 comments

Shopping Is Impossible

https://www.theatlantic.com/technology/2026/08/online-shopping-inescapable/688254/
2•paulpauper•52m ago•0 comments

We selected the next vector database at Booking.com

https://booking.ai/how-we-selected-the-next-vector-database-at-booking-com-1e738a5e3bb0
3•bobvanluijt•55m ago•0 comments

The Artificially Intelligent Dog

https://arnoldkling.substack.com/p/the-artificially-intelligent-dog
1•paulpauper•56m ago•0 comments

Two LLM calls beat one: 67% cheaper and 100% vs. 72% extraction accuracy

https://github.com/tauansloboda/semantic-thermodynamics
2•tauanvinicius•58m ago•0 comments

The Human Is the Loop

https://brentfitzgerald.com/posts/the-human-is-the-loop/
2•burnto•1h ago•0 comments

MiniMax H3: An Open Model Breaking the Boundaries Between Tasks and Modalities

https://twitter.com/MiniMax_AI/status/2083008095488516262
2•gmays•1h ago•0 comments

Review of Studies on the Level of Cannabis Use and Risk of Psychosis

https://pmc.ncbi.nlm.nih.gov/articles/PMC4988731/
2•thisislife2•1h ago•0 comments

Company Offering '100% Human-Written, Never AI' Medical Research Is 100% AI

https://www.404media.co/company-offering-100-human-written-never-ai-peer-review-is-entirely-ai/
16•Anon84•1h ago•2 comments

SignalCaster

https://signalcaster.app/
2•abdoghamlouch•1h 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.