frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

State Department issues warning in Japan after bears kill 13 since April

https://thehill.com/policy/international/travel-warnings/5604616-us-travelers-alert-japan-bears/
1•jameslk•1m ago•0 comments

All 13 fentanyl precursors banned to public

https://www.scmp.com/news/china/diplomacy/article/3332240/china-tightens-controls-fentanyl-precur...
1•hereme888•1m ago•1 comments

Naked mole-rat's DNA repair secret revealed

https://longevity.technology/news/naked-mole-rats-dna-repair-secret-revealed/
1•Bender•2m ago•0 comments

China Plans to Limit How Fast Your Car Accelerates to 62 MPH at Startup

https://www.carscoops.com/2025/11/china-plans-to-limit-car-acceleration-at-startup/
1•jnord•3m ago•0 comments

iPhone 16e Has Apparently 'Failed' Just Like iPhone Air

https://www.macrumors.com/2025/11/13/iphone-16e-failed-like-iphone-air/
1•mgh2•7m ago•0 comments

You can't tell people anything (2004)

https://habitatchronicles.com/2004/04/you-cant-tell-people-anything/
3•andai•7m ago•1 comments

Architecting for Multitenancy

https://www.gouthamve.dev/architecting-for-multitenancy/
2•gouthamve•7m ago•0 comments

Unique shape of star's explosion revealed just a day after detection

https://www.eso.org/public/news/eso2520/
1•susam•8m ago•0 comments

Riff: AI management accounting and strategist

https://www.letsriff.ai/
1•yeti-winter•9m ago•0 comments

Mysterious black ring spotted over Disneyland

https://ktla.com/news/local-news/mysterious-black-ring-spotted-over-disneyland/
2•Bender•10m ago•0 comments

Mechanical Neural Network learns Addition through Gravity with pebbles

https://twitter.com/hive_echo/status/1986383820632039572
1•echohive42•11m ago•0 comments

sandwine 5.0.0 adds support for Wayland and PipeWire

https://github.com/hartwork/sandwine/releases/tag/5.0.0
1•spyc•11m ago•0 comments

To 'Infinity' and beyond: MX Linux 25 has arrived

https://www.theregister.com/2025/11/13/mx_linux_25_infinity_released/
1•Bender•12m ago•0 comments

China's reusable rocket Zhuque-3 to make maiden flight this year

https://www.globaltimes.cn/page/202511/1347871.shtml
1•JumpCrisscross•12m ago•0 comments

Show HN: V0 for Svelte (svelte0), a Svelte UI generator

https://svelte0.com/
1•dimelotony•13m ago•0 comments

Looking for Feedback on Our "Wellness Intelligence" product

https://www.goodfella.app/
1•roniths•14m ago•1 comments

Show HN: Trace.taxi – easy agent messages visualization

1•thomasahle•15m ago•0 comments

Declining Accessibility in Pokémon Games

https://everything2.com/title/Declining%20Accessibility%20in%20Pok%C3%A9mon%20Games?author_id=201...
3•hackermatic•16m ago•0 comments

How AI is breaking cover letters

https://www.economist.com/finance-and-economics/2025/11/13/how-ai-is-breaking-cover-letters
2•jnord•18m ago•1 comments

Murati's Thinking Machines in Funding Talks at $50B

https://www.bloomberg.com/news/articles/2025-11-13/murati-s-thinking-machines-in-funding-talks-at...
2•songeater•20m ago•1 comments

GitHub no longer uses toasts because of their accessibility and usability issues

https://primer.style/accessibility/toasts/
4•davidbarker•24m ago•0 comments

Bayesian A/B testing is not immune to peeking

https://www.alexmolas.com/2025/10/30/bayesian-ab-test-peeking.html
2•alexmolas•25m ago•0 comments

Sam Altman is the Christopher Columbus of our time

https://cosmographia.substack.com/p/sam-altman-is-the-christopher-columbus
3•merothwell•26m ago•0 comments

The advice I would give on a mentorship call

https://www.avitalbalwit.com/post/the-advice-i-would-give-on-a-mentorship-call
3•sebg•31m ago•1 comments

Native Python Implementation of Apache Iceberg

https://github.com/rodmena-limited/DataShard
1•rodmena•34m ago•0 comments

OpenRouter's Polaris Alpha = GPT 5.1

https://twitter.com/OpenRouterAI/status/1989045044121334258
1•denysvitali•35m ago•0 comments

Ask HN: When is it ok to drop support for a platform?

1•navs•35m ago•0 comments

Show HN: US Publicly Traded Companies probabilities of default with public data

https://credit.quantra.io/
3•melenaboija•36m ago•0 comments

Kubernetes Ingress Nginx is retiring

https://www.kubernetes.dev/blog/2025/11/12/ingress-nginx-retirement/
2•TheApplicant•37m ago•0 comments

Advent of Compiler Optimisations 2025

https://xania.org/202511/advent-of-compiler-optimisation
2•hasheddan•41m ago•0 comments
Open in hackernews

Show HN: YAML Validator –A simple Docker-based YAML checker

2•pooyanazad•1h ago
Hi HN,

I made a tiny tool called YAML Validator that checks your YAML files with one Docker command — no installs, no setup, no excuses.

It does:

- Syntax checks

- yamllint linting

- checkov security scanning

- All in one lightweight, zero-config container

---------------------------------------------------------

How to use:

docker run -v "$(pwd):/data" pooyanazad/yaml-checker <yaml-file>

Optional alias (for .bashrc / .zshrc):

alias ytest='docker run -v "$(pwd):/data" pooyanazad/yaml-checker'

Then simply call:

ytest sample.yaml

YAML powers CI/CD, configs, infra ,and breaking it is too easy. This aims to catch syntax, style, and security issues early with minimal friction.

I’d love feedback, ideas, or edge cases to test.

---------------------------------------------------------

GitHub: https://github.com/pooyanazad/YAML-validator

---------------------------------------------------------

Thanks for reading!

Pooyan