frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Galactic Empires May Live at the Center of Our Galaxy, Hence Why We Don't Hear

https://www.universetoday.com/articles/galactic-empires-may-live-at-the-center-of-our-galaxy-henc...
1•atilimcetin•2m ago•1 comments

Saint Pierre and Miquelon

https://en.wikipedia.org/wiki/Saint_Pierre_and_Miquelon
1•derbOac•3m ago•0 comments

Opportunistic Mutation in Roc

https://www.roc-lang.org/functional#opportunistic-mutation
1•coffeeaddict1•5m ago•0 comments

Online outages: Q3 2025 Internet disruption summary

https://blog.cloudflare.com/q3-2025-internet-disruption-summary/
1•corvad•7m ago•0 comments

Show HN: Monitor on Your Chess Addiction

https://chess-stats.alexboden.ca/
2•alexboden•8m ago•0 comments

Red Hat to Distribute Nvidia CUDA Across RHEL, Red Hat AI and OpenShift

https://www.phoronix.com/news/Red-Hat-Distribute-CUDA-RHEL
2•ashvardanian•8m ago•0 comments

Ask HN: Are the tech levels now diluted post-pandemic (Google/Meta)

2•alpb•11m ago•0 comments

Show HN: Sonura Studio: AI music production built for collaboration

https://sonurastudio.com/
1•kindred•13m ago•0 comments

Discovering state-of-the-art reinforcement learning algorithms

https://www.nature.com/articles/s41586-025-09761-x
2•lawrenceyan•15m ago•0 comments

X-59 Soars: A New Era in Supersonic Flight Begins – Oct 28, 2025

https://news.lockheedmartin.com/2025-10-28-X-59-Soars-A-New-Era-in-Supersonic-Flight-Begins
2•bpierre•19m ago•0 comments

Database backups, dump files and restic

https://strugglers.net/posts/2025/database-backups-dump-files-and-restic/
3•todsacerdoti•22m ago•0 comments

Pearl: A Foundation Model for Placing Every Atom in the Right Location [pdf]

https://genesis.ml/wp-content/uploads/2025/10/pearl_technical_report.pdf
3•daedalus2718•22m ago•0 comments

Show HN: OXH AI – Open-Source AI Crypto Signal Platform with Real-Time Analysis

https://www.oxher.com
1•oxhai•30m ago•0 comments

Show HN: Created a Live Anime Channel, no server necessary

https://animaxreboot.pages.dev/
2•LandOfMightDev•31m ago•3 comments

Westinghouse is claiming a nuclear deal would see $80B of new reactors

https://arstechnica.com/science/2025/10/westinghouse-is-claiming-a-nuclear-deal-would-see-80b-of-...
5•atilimcetin•36m ago•1 comments

AMZN Layoffs show what AI is coming for our jobs, whether its good enough or not

https://www.amazonclimatejustice.org/open-letter
1•todchavez•39m ago•2 comments

Trial investigates how smart flooring could protect from fall-related injuries

https://www.surrey.ac.uk/news/new-trial-investigates-how-smart-flooring-could-protect-older-adult...
2•1659447091•40m ago•1 comments

DataGrip Is Now Free for Non-Commercial Use

https://blog.jetbrains.com/datagrip/2025/10/01/datagrip-is-now-free-for-non-commercial-use/
3•achristmascarl•40m ago•0 comments

Daily-Verse

https://github.com/patlehmann1/daily-verse
1•lehmann_dev•44m ago•0 comments

Can a Startup Make Computer Chips Cheaper Than the Industry's Giants?

https://www.nytimes.com/2025/10/28/business/can-a-start-up-make-computer-chips-cheaper-than-the-i...
1•ripe•52m ago•0 comments

Applied Keynesian Psychology

https://fi-le.net/keynes/
1•fi-le•52m ago•0 comments

Granite 4.0 Nano: Just how small can you go?

https://huggingface.co/blog/ibm-granite/granite-4-nano
1•CharlesW•54m ago•0 comments

Volunteers Step in to Help Understaffed NOAA Track Hurricane Melissa

https://www.nytimes.com/2025/10/28/climate/noaa-volunteers-hurricane-melissa.html
9•perihelions•56m ago•0 comments

The spillover effects of AI on open source software development

2•jennjwang•57m ago•0 comments

Ask HN: AI has changed my job for the worse

6•yodsanklai•58m ago•4 comments

Bananas in smoothies block flavanol absorption by up to 84%

https://www.sciencedaily.com/releases/2025/10/251027224844.htm
3•Gaishan•59m ago•1 comments

Walking 15 min lowers cardiovascular risk by up to 2/3 compared to short walks

https://www.sciencedaily.com/releases/2025/10/251027224829.htm
10•Gaishan•1h ago•5 comments

Encryption using SSH Keys with age in Linux

https://ittavern.com/encryption-using-ssh-keys-with-age-in-linux/
1•birdculture•1h ago•0 comments

When O3 is 2x slower than O2

https://cat-solstice.github.io/test-pqueue/
1•keyle•1h ago•0 comments

An ex-Intel CEO's mission to build a Christian AI: Hasten the return of Christ

https://www.theguardian.com/technology/2025/oct/28/patrick-gelsinger-christian-ai-gloo-silicon-va...
10•teleforce•1h ago•4 comments
Open in hackernews

ArkRegex: A drop in replacement for new RegExp() with types

https://arktype.io/docs/blog/arkregex
5•ssalbdivad•8h ago

Comments

wredcoll•8h ago
Sure, now make it work without having to type "\\w"
ssalbdivad•7h ago
Yes, there are limits on what string literals can precisely represent, but we've tried to be pragmatic about trade offs around clarity, concision and performance.

Subexpressions like `\\w` or `[a-Z]` would just be inferred as `${string}`, but that doesn't mean the inference won't be useful. For example:

expression: regex("^\\w+@\\w+\\.\\w+$") type: Regex<`${string}@${string}.${string}`>

wredcoll•5h ago
Can't you use tagged literals to do something similar?
ssalbdivad•3h ago
Not sure exactly what you mean by "something similar".
wredcoll•14m ago
The issue is not being able to type actual regexes: /\w+[a-z]$/ becomes something different when enclosed in double quotes.