frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'AI refuser' quit her dream job, and hopes others follow

https://www.smh.com.au/technology/this-ai-refuser-quit-her-dream-job-and-hopes-others-follow-2026...
1•mcapodici•7m ago•0 comments

Debt Apple owes to CIA (through NeXT)

https://www.wsj.com/tech/steve-jobs-apple-next-cia-161b65f9
2•krackout•20m ago•2 comments

Your Open Source Model Could Have a Hidden Time-Release Backdoor

https://morgin.ai/articles/your-open-source-model-could-have-a-hidden-time-release-backdoor.html
2•chknlttle•21m ago•1 comments

Why do Canadians call the last letter of the alphabet Zed?

https://www.cbc.ca/news/canada/newfoundland-labrador/zed-explained-canadians-9.7315717
2•theanonymousone•25m ago•1 comments

Zcomplete – Shell Typo Correction

https://github.com/omarfakih1/zcomplete
1•omarfakih•29m ago•1 comments

AI datasets (2.6k entries) – automated collection, updated daily

https://huggingface.co/gemmozero
2•LegionAPI•31m ago•0 comments

Programming Language Semantics and Memory Safety

https://burakemir.ch/post/formal-semantics/
2•birdculture•37m ago•0 comments

Show HN: Budgethole.com – Close the US federal deficit yourself

https://budgethole.com
1•polocode•38m ago•1 comments

US corporate AI debt surge tests investor limits as fatigue emerges

https://www.reuters.com/legal/transactional/us-corporate-ai-debt-surge-tests-investor-limits-fati...
4•1vuio0pswjnm7•38m ago•1 comments

Show HN: 26-node n8n workflow for scoring and routing B2B leads

https://n8n.io/workflows/18528-score-and-route-b2b-website-leads-with-google-sheets-and-gmail/
1•tinyopsstudio•39m ago•0 comments

Austrian mountain town [Leoben] finds niche in AI boom

https://techxplore.com/news/2026-08-austrian-mountain-town-niche-ai.html
1•mdp2021•40m ago•0 comments

Meta is latest "tech" giant to land in her courtroom. Meet YGR

https://www.cnbc.com/2026/08/22/meet-yvonne-gonzalez-rogers-judge-taking-on-meta.html
1•1vuio0pswjnm7•42m ago•0 comments

Show HN: Kloni – Keyboard-first mind mapping for macOS with tasks built in

https://kloni.app/
1•maketrueco•45m ago•0 comments

Sydney Marathon medal mistakenly depicts Munich stadium

https://www.bbc.com/news/articles/cvg92y1wzn8o
1•epestr•47m ago•0 comments

Destiny Installers Ds-TV installers

https://destinyinstallers.co.za/
1•takundagava•52m ago•1 comments

NYTimes opinion article proposes default as a way to deal with US National debt

https://www.nytimes.com/2026/08/22/opinion/us-debt-40-trillion.html
2•killingtime74•52m ago•1 comments

Show HN: SpotWarp – Zero-loss failover & backup for Spot GPUs

https://github.com/enplabs/spotwarp
1•choi5844•55m ago•0 comments

How Big Tech Captured American Schools

https://www.nytimes.com/2026/08/23/business/schools-big-tech-google-microsoft.html
3•sbulaev•55m ago•2 comments

Iranian hackers shut down UK power plant for 4 days

https://www.telegraph.co.uk/news/2026/08/22/iranian-hackers-shut-down-uk-power-plant/
2•giuliomagnifico•59m ago•0 comments

I gave Qwen 3.8 27B a reverse-engineering job and it finished in 30 minutes

https://www.xda-developers.com/qwen-3-8-27b-reverse-engineering-job-frontier-model/
3•raybb•59m ago•0 comments

I Made the First "Link Compressor"

https://www.youtube.com/watch?v=TOr1Vvji6jA
1•conferza•1h ago•0 comments

25 Years of Mixxx Intergalactic DJ Contest

https://mixxx.org/news/2026-08-23-25_years_of_mixxx_dj_contest/
1•SamWhited•1h ago•0 comments

What if coding agents didn't have to read code?

https://benzi.fly.dev/about
1•showhz•1h ago•1 comments

AI Writing Without the Slop

https://sfactory.dev
1•jasfi•1h ago•1 comments

Show HN: Gibbous – Hide the useless parts of GitHub UI

https://netanel-haber.github.io/gibbous/
1•yikestra•1h ago•0 comments

Ptrclassify – guessing usage and location from reverse-DNS PTR hostnames

https://github.com/adulau/ptrclassify
1•adulau•1h ago•0 comments

Canada now 'at war' with United States over trade, Prime Minister says

https://www.theglobeandmail.com/canada/article-canada-us-trade-deal-tariffs-mark-carney-donald-tr...
6•Fellwaa•1h ago•1 comments

Show HN: ArchSentry – Deterministic architectural enforcement for CI

https://github.com/comerade2134/archsentry
2•light82083•1h ago•0 comments

Mature Optimization: An Introduction

https://carlos.bueno.org/optimization/
2•luispa•1h ago•0 comments

The Strange Foods

https://medium.com/luminasticity/the-strange-foods-0624e47c11f4
1•bryanrasmussen•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.