frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cloud server CPU performance comparison (2019)

https://jan.rychter.com/enblog/cloud-server-cpu-performance-comparison-2019-12-12
1•nfriedly•45s ago•0 comments

The next AI breakthrough: learning on the job

https://medium.com/@rviragh/the-next-ai-breakthrough-learning-on-the-job-fc20fba4d906
1•logicallee•1m ago•2 comments

What is mirror life? Scientists are sounding the alarm

https://www.cnn.com/2025/10/17/science/mirror-cell-life-dangers
1•bwb•3m ago•1 comments

Kanban .md

https://lecaro.me/20251008-kanbanmd.html
1•freediver•5m ago•1 comments

Astrocyte Activity Linked to How Long-Term Memories Are Formed in Mice

https://www.genengnews.com/topics/translational-medicine/astrocyte-activity-linked-to-how-long-te...
1•gmays•5m ago•0 comments

General purpose agentic loop in 40 lines of Python

https://softwaredoug.com/blog/2025/10/15/a-simple-agentic-loop-with-just-python-functions.html
1•freediver•5m ago•0 comments

Quiet UI is now open source

https://www.abeautifulsite.net/posts/quiet-ui-is-now-open-source/
1•claviska•7m ago•0 comments

Zorin OS 18

https://blog.zorin.com/2025/10/14/zorin-os-18-has-arrived/
3•pentagrama•12m ago•0 comments

Software Can Be Finished

https://rosswintle.uk/2025/10/software-can-be-finished/
1•ChrisArchitect•12m ago•0 comments

Metropolis 1998 lets you design every building in an isometric, pixel-art city

https://arstechnica.com/gaming/2024/08/metropolis-1998-lets-you-design-every-building-in-an-isome...
6•YesBox•12m ago•1 comments

Show HN: JPlus – The Java Superset Language

https://github.com/nieuwmijnleven/JPlus
1•nieuwmijnleven•15m ago•1 comments

Matthew Belloni Interviews Eddy Cue on 'The Town'

https://www.theringer.com/podcasts/the-town-with-matthew-belloni/2025/10/14/apples-true-intention...
1•Bogdanp•16m ago•0 comments

Sourcegraph Amp is now free

https://twitter.com/sqs/status/1978521044194398713
1•tosh•16m ago•1 comments

Students with Hearing and Vision Loss Get Funding Back

https://www.propublica.org/article/trump-education-department-deafblind-students-funding-reversal
1•petethomas•20m ago•0 comments

Comprehensive information about any company in just minutes

https://infowizer.com/
1•meix•20m ago•0 comments

The End of Aid

https://fixthenews.com/p/the-end-of-aid
1•andsoitis•21m ago•0 comments

Apple is the exclusive new broadcast partner for Formula 1 in the U.S.

https://www.apple.com/newsroom/2025/10/apple-is-the-exclusive-new-broadcast-partner-for-formula-1...
3•tosh•21m ago•0 comments

BBC Gaza documentary a 'serious' breach of rules, Ofcom says

https://www.bbc.com/news/articles/c629j5m2n01o
2•mpweiher•24m ago•0 comments

Understanding SigLIP

https://medium.com/self-supervised-learning/understanding-siglip-the-more-efficient-vision-encode...
1•flehn•27m ago•0 comments

Apple TV becomes Formula One's exclusive U.S. broadcaster, starting in 2026

https://www.nytimes.com/athletic/6723310/2025/10/17/f1-apple-tv-formula-one-streaming-rights/
1•jbredeche•27m ago•0 comments

You Can Cool Chips with Lasers

https://spectrum.ieee.org/laser-cooling-chips
1•pseudolus•28m ago•0 comments

Building API with a Single Click?

1•Slowrodreguez•29m ago•0 comments

Europe Can't Defend Democracy on US Servers

https://werd.io/europe-cant-defend-democracy-on-us-servers/
4•groseje•29m ago•0 comments

Windows 11 24H2 activated a dormant bug in GTA: San Andreas [video]

https://www.youtube.com/watch?v=poEo0GrQTtQ
1•Unai•29m ago•0 comments

List of banned video games by country

https://en.wikipedia.org/wiki/List_of_banned_video_games_by_country
1•nomilk•31m ago•0 comments

Europe Can't Defend Democracy on US Servers

https://www.techpolicy.press/europe-cant-defend-democracy-on-us-servers/
6•benwerd•33m ago•0 comments

Four arrested as France thwarts assassination attempt on Russian Putin opponent

https://novayagazeta.eu/articles/2025/10/17/four-arrested-as-france-thwarts-assassination-attempt...
1•dralley•34m ago•0 comments

Meeting or Deleting Constraints

https://www.jasonthorsness.com/33
1•jasonthorsness•37m ago•0 comments

The rat with the big balls and the enormous

https://scienceintegritydigest.com/2024/02/15/the-rat-with-the-big-balls-and-enormous-penis-how-f...
2•cratermoon•37m ago•0 comments

GitHub code review is nigh unusable

2•herpdyderp•37m ago•4 comments
Open in hackernews

KDL: A small document language with node semantics

https://kdl.dev
1•xpe•2h ago

Comments

xpe•2h ago
I recently came across KDL when searching for a data language that makes it easy to compactly write out a structured document. It seems likely it isn't widely known about, at least among general HN readers, so I wanted to share it.

If you haven't seen it before, you might be tempted to think "how is this different than e.g. JSON?", but I suggest it will make more sense if you think about it as "XML without the baggage".

The most recent top-level mention on HN I found is here: https://news.ycombinator.com/item?id=37249430

xpe•2h ago
Even if you don't use KDL, you might enjoy seeing its use of "slashdash comments" -- this is a great idea to steal if you ever write your own language! [1]

    package
      name my-pkg
      version "1.2.3"

      // ... rest of example at https://kdl.dev

      // "Slashdash" comments operate at the node level,
      // with just `/-`.
      /-this-is-commented {
        this entire node {
          is gone
        }
      }
    }
KDL v2 spec : slashdash comments: https://github.com/kdl-org/kdl/blob/main/draft-marchan-kdl2....

[1] Other languages have it -- this first one that comes to mind is Clojure which allows commenting out of an expression with `#_` (a reader macro): https://clojure.org/reference/reader#_dispatch