frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Rendering Arabic typography and its technical debt, an interactive introduction

https://lr0.org/blog/p/arabic/
1•SSLy•1m ago•0 comments

The Slow Death of Simplenote

https://zoia.org/posts/the-slow-death-of-simplenote/
1•Leftium•2m ago•0 comments

Sofle Pico Split Keyboard

https://www.soflepico.com/
1•igoose1•4m ago•0 comments

Evaluating LLM-generated code for domain-specific languages

https://www.sciencedirect.com/science/article/abs/pii/S0927025626003587
1•librasteve•8m ago•1 comments

SSL Certificate Expiry

https://medium.com/@thesuperrepemail/ssl-certificate-expiry-1fa4d69246bc
1•rajsuper123•12m ago•2 comments

Show HN: Bananagrams Tiles Word Game Online

https://www.bananagrams.org
1•code-less•18m ago•0 comments

Ask HN: Temporal Awareness in LLM?

1•Pamar•18m ago•0 comments

Anthropic makes Fable 5's invisible safeguards visible after backlash

https://xcancel.com/ClaudeDevs/status/2064949876463645026
1•frb•19m ago•0 comments

Run OSINT investigations from chat via MCP/OpenClaw

https://github.com/snuri00/osint-mcp
1•sn001•21m ago•0 comments

The DIY trap: I see founders spending $6k to save $240/year. Can we talk?

https://www.indiehackers.com/post/the-diy-infrastructure-trap-i-see-founders-spending-6k-to-save-...
1•DharmendraJago•22m ago•0 comments

CountryLink – guess what two random countries have in common across 8 categories

https://learn.enviro.org.au/countrylink.php
1•symonssss•22m ago•0 comments

Only One Input – Social media with the social part removed

https://onlyoneinput.com/
1•smyczek•22m ago•0 comments

Why AI hasn't replaced software engineers, and won't

https://www.normaltech.ai/p/why-ai-hasnt-replaced-software-engineers
1•trueduke•23m ago•0 comments

Streaming HTML

https://olliewilliams.xyz/blog/streaming-html/
1•thunderbong•23m ago•0 comments

Discussion: Fable 5 is weak at flagging prompts correctly

1•eckelhesten•24m ago•0 comments

Stack Overflow for Agents

https://agents.stackoverflow.com
1•CommonGuy•27m ago•0 comments

Quarks Are Time

https://as.oooooooooo.se/paper/
2•mbinatorom•32m ago•1 comments

Dutch mass claim states that Steam makes customers pay too much for games

https://gameclaim.consumercompetitionclaims.com/en/
2•HelloUsername•32m ago•0 comments

Bootproof – runs a repo and signs proof of whether it booted

https://github.com/bootproof/bootproof
1•bootproof•33m ago•0 comments

LumoSQL – Add features to SQLite for security, privacy, speed and measurability

https://lumosql.org/
1•smartmic•34m ago•0 comments

The Largest Number Representable in 64 Bits

https://www.mdpi.com/1099-4300/28/5/494
1•rowbin•34m ago•0 comments

Show HN: Conduit, a local-first SSH, Mosh and SFTP client for Android

https://github.com/gwitko/Conduit
1•gwitko•37m ago•0 comments

The number of possible chess games exceeds the number of atoms in the universe

https://spacedaily.com/d-the-total-number-of-possible-chess-games-is-so-large-that-it-exceeds-the...
1•arizen•39m ago•0 comments

Sweet Jeebus, macOS 27 Golden Gate Removes the Dumb Icons from Menu Items

https://daringfireball.net/2026/06/macos_27_golden_gate_removes_the_dumb_icons_from_menu_items
4•epaga•39m ago•1 comments

Accusations of 'AI Slop' Don't Screen for AI Text

https://arxiv.org/abs/2606.12073
3•igortru•41m ago•0 comments

Omarchy on Asahi creator lost access to his GitHub account two weeks ago

https://twitter.com/dhh/status/2064969863840276732
2•raybb•44m ago•0 comments

Local firewall for AI agents – blocks secret leaks and cuts API costs by 40–70%

https://github.com/ashp15205/guardian-runtime
3•ashp15•44m ago•0 comments

Open-source Linux tray app for tracking Claude Code and Codex usage

https://github.com/openusage-community/openusage
1•symonbaikov•45m ago•1 comments

Hate using Granola? Here is a free local version

https://github.com/emberscribe/hobnob
1•polemos•48m ago•0 comments

Publication trends for any academic journal

https://journaltrends.com/
1•ilreb•57m 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.