frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beijing makes AI education compulsory in public schools

https://global.chinadaily.com.cn/a/202510/21/WS68f6d9bea310f735438b601e.html
1•algoghostf•5m ago•0 comments

Trump, 79, Has Dementia Just Like His Father: Niece

https://vechron.com/2025/11/trump-has-dementia-just-like-his-father-says-niece/
2•ashishgupta2209•6m ago•0 comments

AI slop security engineering: Okta's NextJS-0auth troubles

https://joshua.hu/ai-slop-okta-nextjs-0auth-security-vulnerability
1•ramimac•6m ago•0 comments

Google fixes new Chrome zero-day flaw exploited in attacks

https://www.bleepingcomputer.com/news/security/google-fixes-new-chrome-zero-day-flaw-exploited-in...
1•fleahunter•10m ago•0 comments

Strace-macOS: A clone of the strace command for macOS

https://github.com/Mic92/strace-macos
1•signa11•12m ago•0 comments

Show HN: iCloud Find My GPS Logger

https://chromewebstore.google.com/detail/icloud-find-my-gps-logger/doafcollkgnpicaijnokdnblahkdmgbb
1•buibuibui•13m ago•0 comments

InboxWhiz: Declutter Your Gmail Inbox

https://github.com/InboxWhiz/gmail-declutter-extension
1•shikharbhardwaj•15m ago•0 comments

Post-Cortex – Persistent memory for AI assistants with local semantic search

https://github.com/julymetodiev/post-cortex
1•juliusml•16m ago•0 comments

'I awoke at ½ past 7' – Self-monitoring and optimisation started before big tech

https://aeon.co/essays/victorian-diary-writers-kicked-off-our-age-of-self-optimisation
1•robtherobber•17m ago•0 comments

A.I. Video Is Threatening Our Ability to Trust Documentaries

https://www.nytimes.com/2025/11/18/movies/documentary-filmmaking-ai-trust.html
3•fleahunter•18m ago•0 comments

Microsoft: Windows 10 KB5072653 OOB update fixes ESU install errors

1•iamtech•19m ago•0 comments

RFC 9458 Oblivious HTTP

https://www.ietf.org/rfc/rfc9458.html
1•mrcsharp•23m ago•0 comments

Marjorie Taylor Greene Seeking to End H-1B Visa Program [video]

https://www.youtube.com/watch?v=jzj9HDiEoWY
2•thelastgallon•25m ago•0 comments

Install Nothing

https://github.com/buyukakyuz/install-nothing
3•sbt567•25m ago•1 comments

Workplace Surveillance Is Here, Counting Your Mouse Clicks and Bathroom Breaks

https://thewalrus.ca/workplace-surveillance/
2•thm•26m ago•0 comments

Replacing Markowitz: A Quantum Approach to Portfolio Optimization

https://soma.biz/
3•Hellene•29m ago•1 comments

A Revised Three-Dimensional Visualization of the Local Group of Galaxies

https://iopscience.iop.org/article/10.3847/2515-5172/ae1efc
1•bryanrasmussen•29m ago•0 comments

Agent-Based Systems for Modeling Wealth Distribution

https://philippdubach.com/2025/08/30/agent-based-systems-for-modeling-wealth-distribution/
1•7777777phil•31m ago•0 comments

Leaked documents shed light into how much OpenAI pays Microsoft

https://techcrunch.com/2025/11/14/leaked-documents-shed-light-into-how-much-openai-pays-microsoft/
5•zerosizedweasle•32m ago•1 comments

Crawl4AI: Open-Source LLM Friendly Web Crawler and Scraper

https://github.com/unclecode/crawl4ai
1•zoooey•34m ago•0 comments

Elevated error rates to Sonnet 4.5 on Claude Code

https://status.claude.com/incidents/4bvvh93qjl25
1•croemer•34m ago•0 comments

Playing a hardware synth through Claude Code

https://vaclav.synacek.com/blog/2025/11/18/claude-sonnet-plays-hw-synth-roland-t8/
1•ngcazz•34m ago•0 comments

It's Getting Crowded in Here

https://medium.com/luminasticity/its-getting-crowded-in-here-80b934027239
1•bryanrasmussen•36m ago•0 comments

Yahoo Finance's breakdown of free PDF editors and alternatives

https://finance.yahoo.com/news/best-free-pdf-editor-alternative-214500590.html
1•pdftips•37m ago•1 comments

Cyberlib – Endpoint Hardening Made Easy

https://cyberlib.io/
1•romainfaye•37m ago•0 comments

Google Jobs API

https://apify.com/johnvc/google-jobs-scraper
1•johncole•41m ago•0 comments

Google boss warns 'no company is going to be immune' if AI bubble bursts

https://www.bbc.com/news/articles/cwyegl8q80do
4•choult•41m ago•3 comments

OpenTelemetry Incremental Adoption Strategies

https://blog.fornasa.it/posts/opentelemetry-incremental-adoption-strategies/
3•mfornasa•42m ago•0 comments

Show HN: RAG-chunk 0.2.0 – Now on PyPI with tiktoken support

https://github.com/messkan/rag-chunk
1•messkan•43m ago•0 comments

Idiot Plot

https://en.wikipedia.org/wiki/Idiot_plot
2•efilife•43m ago•0 comments
Open in hackernews

Skelet – Minimalist, Thread-Safe Config Library for Python

https://github.com/pomponchik/skelet
1•pomponchik•1h ago

Comments

pomponchik•1h ago
Skelet is a new config storage/validation library for Python. The goal is to provide a minimal API for collecting settings in one place, while ensuring thread safety, transactionality, and type/value correctness. Configs can be loaded and validated from TOML, YAML, JSON, and environment variables.

Most libraries like pydantic-settings or dynaconf are great for model-based settings, but they aren’t thread-safe out of the box and don’t handle config mutation atomically. Skelet manages assignments under per-field mutexes (so you won’t see half-applied values or race conditions in concurrent apps), and it supports field-level docs, validation, secret fields (hiding any type), and hooks for value changes.

Meant for production scenarios where config safety matters (services, CLI tools, distributed systems), but also handy for scripts that need explicit config handling.