frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The specter of AI-enabled bioweapons is a wake-up call for biotech

https://www.technologyreview.com/2026/09/18/1144329/the-specter-of-ai-enabled-bioweapons-is-a-wak...
1•joozio•1m ago•0 comments

Warren Buffett Steps Down as Berkshire Chairman, Names Son to Replace Him

https://www.nytimes.com/2026/09/18/business/warren-buffett-berkshire-chairman.html
1•saimiam•2m ago•0 comments

I benchmarked 25 models against doing nothing. None of them won

https://github.com/kaustubhspatil/beatnothing
2•kaustubhspatil•4m ago•0 comments

Anthropic and OpenAI hunt for smaller data center deals

https://www.cnbc.com/2026/09/18/anthropic-openai-small-ai-data-center-deals.html
2•cebert•5m ago•0 comments

D-Robotics Closes $400M in Series C Funding to Boom the Robotics Industry

https://en.d-robotics.cc/blog/d-robotics-completes-400-million-in-series-c-funding-driving-the-ro...
1•Bella-Xiang•7m ago•0 comments

Mastercard Joins Visa in Letting AI Bots Do Your Shopping

https://www.wsj.com/tech/ai/mastercard-inks-deal-as-payment-giants-brace-for-new-era-of-ai-shoppi...
2•watchdogtimer•8m ago•0 comments

Fredy: Letting an LLM create a search without letting it invent the data

https://github.com/orangecoding/fredy
1•orangecoding•9m ago•0 comments

Much Ado About Noising: Dispelling the Myths of Generative Robotic Control

https://arxiv.org/abs/2512.01809
1•porridgeraisin•12m ago•0 comments

E2E: The open source AI testing framework

https://tester.army/e2e
1•handfuloflight•13m ago•0 comments

A Calendar of Smells

https://worldsensorium.com/a-calendar-of-smells/
1•dnetesn•17m ago•0 comments

Ask HN: Help choosing between AWS ECS and EKS

2•pigradish•17m ago•0 comments

The Fossil Logic of the Industrial and AI Revolutions

https://blue-continuum.com/fossil-logic
1•dnetesn•18m ago•0 comments

Sorting Algorithms Visualized (50k Elements) [video]

https://www.youtube.com/watch?v=M3OuTtW662Y
2•ColinWright•19m ago•0 comments

King Charles warns of 'existential danger' of AI falling into wrong hands

https://www.bbc.co.uk/news/articles/c65ymj7njvl7o
2•edward•19m ago•0 comments

Jay Leno's Law – celebrating and preserving California's classic car heritage

https://www.gov.ca.gov/2026/09/16/governor-newsom-visits-jay-lenos-garage-to-sign-legislation-cel...
1•Kaibeezy•19m ago•0 comments

Qxotic: AI Sovereignty for the JVM

https://qxotic.ai/
1•tomaytotomato•21m ago•0 comments

TypeSafe AI's "Meaningful Intelligence"

https://docs.typesafe.ai/introduction/machine-learning-primer
1•seeksilence•23m ago•0 comments

One Theme, Four Portfolios: Monopoly ETFs and the Stocks Behind Their Returns

https://mplymoat.com/research/monopoly-etf-portfolios/
1•Heshamus•25m ago•0 comments

Measuring Starlink Aviation Around the World

https://github.com/clarkzjw/IMC26-Starlink-Aviation
1•uneven9434•27m ago•0 comments

An early-access test of TypeSafe's Jev: calibrated judgments for half a cent

https://lindfors.no/blog/a-first-look-at-typesafes-jev/
1•Depurator•27m ago•0 comments

ZCode, the GLM coding agent, silently uploads your Git history

https://tokenstead.ai/guides/zcode-silent-git-history-upload
3•cdnsteve•28m ago•0 comments

Why Robot Brains Should Live in the Cloud

https://www.dreamscalelabs.com/blog/why/
1•jinqueeny•28m ago•0 comments

What we learned using OPFS for browser video storage

https://www.reactvideoeditor.com/blog/why-we-use-opfs-for-browser-video-storage
1•sebh123•32m ago•0 comments

ClickHouse permission system has a trivial bypass

https://zimzi.substack.com/p/clickhouse-permission-system-has
2•zielmicha•34m ago•0 comments

Top Chinese AI models make 10% of OpenAI

https://www.scmp.com/tech/big-tech/article/3367991/top-chinese-ai-models-make-10-openai-anthropic...
1•01-_-•35m ago•0 comments

Getting Freaky in the Age of AI

https://www.iankduncan.com/engineering/2026-08-07-getting-freaky-in-the-age-of-ai/
1•jbyers•36m ago•0 comments

Europe's Most Valuable Startup Gave Data to a Scammer

https://www.wsj.com/tech/cybersecurity/europes-most-valuable-startup-gave-data-to-a-scammer-now-i...
2•01-_-•38m ago•0 comments

How can a jigsaw have two distinct solutions? [video]

https://www.youtube.com/watch?v=b5nElEbbnfU
1•ColinWright•41m ago•0 comments

Google illegally retains customer data,and I am taking legal action against them

https://medium.com/@istokovicsgyorgy79/google-illegally-retains-customer-data-and-i-am-taking-leg...
4•Bitu79•45m ago•0 comments

Anthropic sets up biology lab as it ramps AI drug program

https://www.reuters.com/world/anthropic-quietly-sets-up-biology-lab-it-ramps-ai-drug-program-2026...
2•bcks•46m ago•1 comments
Open in hackernews

Ask HN: Why is big O often used in CS when omega or theta should be used?

2•amichail•1y ago
Do most people not know about omega and theta or perhaps they intentionally misuse asymptotic notation?

Comments

adrianN•1y ago
Finding lower bounds is generally more difficult.
amichail•1y ago
People often use big O notation in all cases including for lower bounds.
adrianN•1y ago
BigO for lower bounds is plain wrong
numpad0•1y ago
Those aren't in the ASCII table.
compressedgas•1y ago
I've found some people on a well known QA site to be so strict with big-O notation that I don't use it anymore and instead only refer to constant, linear, quadratic time and so on. Even when O(1), O(n), O(n^2) would be actually easier to write even if they are technically wrong.