frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LLMs pass a standard three-party Turing test

https://www.pnas.org/doi/10.1073/pnas.2524472123
1•mustaphah•3m ago•0 comments

WiFi Spatial Sensing

https://github.com/ruvnet/RuView
1•ustad•3m ago•0 comments

Learning VIM while playing a game

https://vim-adventures.com/
1•juliangoetze•9m ago•0 comments

Places to Launch Your Startup

https://indiehunt.io/100-places-to-launch-your-startup
3•praneetbrar•9m ago•1 comments

The Quadratic Sandwich

https://fedemagnani.github.io/math/2026/04/08/the-quadratic-sandwich.html
1•cpp_frog•9m ago•0 comments

The mental load of understanding code we didn't write

https://eduardmoldovan.com/posts/the-mental-load-of-taking-responsibility-for-code-you-didnt-write
1•edimoldovan•12m ago•1 comments

Toto 2.0: Time series forecasting enters the scaling era

https://www.datadoghq.com/blog/ai/toto-2/
1•gmays•12m ago•0 comments

What it takes to get approved on the Zoom App Marketplace

https://www.sponja.ai/blog/zoom-app-marketplace-approval
1•roee_tsur•13m ago•0 comments

Saying Goodbye to Asm.js

https://spidermonkey.dev/blog/2026/05/20/saying-goodbye-to-asmjs.html
2•eqrion•14m ago•0 comments

D-Mail and Context Checkpoints

https://deepwiki.com/MoonshotAI/kimi-cli/7.4-d-mail-and-context-checkpoints
1•ankitg12•15m ago•0 comments

Drivers&mechanisms:convergent forelimb reduction in non-avian theropod dinosaurs

https://royalsocietypublishing.org/rspb/article/293/2071/20260528/481779/Drivers-and-mechanisms-o...
1•bookofjoe•15m ago•0 comments

Barnes and Noble CEO says the bookstore will stock AI-written books

https://www.fastcompany.com/91544722/barnes-noble-ceo-selling-ai-generated-books-comment-social-m...
1•jslakro•15m ago•0 comments

Changes to Gemini model access and limits

https://support.google.com/gemini/answer/17004136?hl=en
2•sidewndr46•16m ago•0 comments

Comparing an LZ4 Decompressor on Four Legacy CPUs

https://bumbershootsoft.wordpress.com/2026/05/09/comparing-an-lz4-decompressor-on-four-legacy-cpus/
1•tosh•17m ago•0 comments

VictoriaTraces: Tracing, Observability, and OpenTelemetry0

https://rtfm.co.ua/en/victoriatraces-tracing-observability-and-opentelemetry/
2•valyala•20m ago•0 comments

Show HN: Pay-as-you-play game servers from Discord (£2/mo, four games)

https://github.com/jdmcgrath/steam-server-on-demand
1•joebi•20m ago•0 comments

Google Antigravity Built an OS and agent teams

https://antigravity.google/blog/google-antigravity-built-an-os
1•oscarfr•23m ago•0 comments

Shipped Ask AI in Aura++ in all project's page

https://auraplusplus.com
1•praneetbrar•23m ago•1 comments

Not All Software Systems Are Agent Friendly

https://yassi.dev/posts/not_all_software_systems_are_agent_friendly/
2•yassi_dev•24m ago•1 comments

College students drown out AI-praising commencement speeches with boos

https://www.tomshardware.com/tech-industry/artificial-intelligence/college-students-drown-out-ai-...
7•iancmceachern•24m ago•2 comments

I built a tool that shows which parts might break your supply chain

https://partfinder.dev/
2•jeffreyporterpf•25m ago•1 comments

Microsoft is quietly shopping for an OpenAI replacement

https://thenextweb.com/news/microsoft-startup-deals-life-after-openai
1•gmays•27m ago•0 comments

Fail-closed AI audit for a plugin registry (Workers AI and D1)

https://emdashcms.org/
1•chrisjohnleah•27m ago•0 comments

Let Copilot handle your local Azure setup via MCP

https://topaz.thecloudtheory.com/blog/topaz-mcp-github-copilot/
1•kamilmrzyglod•29m ago•0 comments

The impossible maths of the AI boom

https://www.ft.com/content/32bf8935-8d21-4689-ae34-8b4d3d5f6d93
3•disgruntledphd2•32m ago•1 comments

Google Search Is Becoming an AI Agent

https://surfacedby.com/blog/google-search-is-becoming-an-ai-agent
1•startages•35m ago•0 comments

EU Cloud Provider News Roundup (Feb–May 2026)

https://www.eucloudcost.com/blog/eu-cloud-news-feb-may-2026/
1•mixxor•35m ago•1 comments

We replaced Redis with MySQL for inventory reservations – and it scaled

https://shopify.engineering/scaling-inventory-reservations
1•mlenol•38m ago•0 comments

Pythagorean Addition in the Head

https://entropicthoughts.com/pythagorean-addition
1•crescit_eundo•41m ago•0 comments

Rust Database from Scratch

https://github.com/ayoubnabil/aiondb
1•ayoubnabil•43m ago•0 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.