frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Visit to id Software (November 1993)

https://www.youtube.com/watch?v=HpEBUV_g9vU
1•_tk_•33s ago•0 comments

What if Palantir's logo was square?

https://www.jasonwu.ink/signals/2026-06-18-palantir-square
1•whiteblossom•36s ago•0 comments

The Rapture of the Programming Languages

https://fogknife.com/2026-06-19-the-rapture-of-the-programming-languages.html
1•doodpants•2m ago•0 comments

Hallucinating Canary

https://github.com/marinus/hallucinating-canary
2•marinusva•4m ago•1 comments

The Download: AI bottleneck debates, and BCI trials take off

https://www.technologyreview.com/2026/06/19/1139327/the-download-llms-bottleneck-breakthrough-bci...
1•joozio•5m ago•0 comments

Artery Embolization W Resorbable Gelatin Microspheres in Osteorthritic Knee Pain

https://pubs.rsna.org/doi/10.1148/radiol.253312
1•bookofjoe•7m ago•0 comments

Anthropic "pauses" token-based billing for its Claude Agent SDK

https://arstechnica.com/ai/2026/06/anthropic-pauses-token-based-billing-for-its-claude-agent-sdk/
1•mikhael•7m ago•0 comments

How I Work from Anywhere Without Losing My Place

https://micro.webology.dev/2026/06/13/how-i-work-from-anywhere/
1•speckx•8m ago•0 comments

AURpocalypse now: a look at the recent AUR attacks

https://lwn.net/SubscriberLink/1077619/f7b07c5489fdd43a/
1•jwilk•8m ago•0 comments

Show HN: No-install, end-to-end encrypted HTML artifact sharing for agents

https://askhuman.app/
1•rvcdbn•12m ago•0 comments

Repo-Jacking Anthropic's Claude Community Plugins (and the SHAs That Saved Them)

https://johnstawinski.com/2026/06/18/repo-jacking-anthropics-claude-community-plugins-and-the-sha...
1•cyberbender•12m ago•0 comments

The False Sense of Productivity

https://blog.ngxson.com/the-false-sense-of-productivity
1•ngxson•12m ago•0 comments

Experiments with Scripting and User-Interface Languages (1998)

https://web.archive.org/web/20070210194816/http://inferno.bell-labs.com/cm/cs/who/bwk/interps/pap...
1•tosh•13m ago•0 comments

MiniMax M3 vs. GLM 5.2: Codegen comparison across autonomous coding tasks

https://thinkwright.ai/minimax-m3-vs-glm-5-2-coding-benchmark
2•oceanwaves•14m ago•1 comments

Show HN: Find the right stack for your AI use case

https://inferlay.com/
1•ibbie•18m ago•0 comments

Turn Citi Bike receipt emails into Strava rides, with the real route

https://github.com/erikleon/citibike2strava
2•ekarwatowski•18m ago•0 comments

MCP isn't dead: the 'MCP is dead' wave measures the wrong axis

https://prashamhtrivedi.in/mcp-isnt-dead/
1•prash2488•19m ago•0 comments

The noisy neighbor problem: serving LLMs

https://cohere.com/blog/serving-fairness
1•_josh_meyer_•20m ago•0 comments

Why Temporal Isn't Enough

https://www.diagrid.io/blog/verifiable-execution-lineage-agent-workflows
1•yaronsc•21m ago•0 comments

PhD_fleet – Manage a virtual research lab of AI PhD students via Slack

https://github.com/canatara/phd_fleet
1•canatara•21m ago•1 comments

Basic Markdown Syntax Guide

https://www.markdownguide.org/basic-syntax/
1•nanfinitum•22m ago•0 comments

I'd like to sell my time today

https://based.press/e/i-d-like-to-sell-my-time-today-ua8c1a8/
1•pro_methe5•22m ago•0 comments

AI-gateway product that cuts LLM API TOKEN costs by 40-70%

1•arnab777•22m ago•0 comments

DiffsHub: View code changes from any public GitHub diff with a freaking-fast UI

1•maxloh•22m ago•1 comments

Code Is Not a Product, Product Is Not a Startup

https://pawelbrodzinski.substack.com/p/code-is-not-a-product-product-is
1•flail•28m ago•0 comments

Microsoft Shareholders Sue over $357B Stock Wipeout

https://www.gadgetreview.com/microsoft-shareholders-sue-over-357-billion-stock-wipeout
4•speckx•30m ago•0 comments

Manna announces 'strategic pause' that grounds drone deliveries in Ireland

https://www.irishtimes.com/business/2026/06/19/manna-announces-strategic-pause-that-grounds-drone...
1•trusche•32m ago•0 comments

How I turned World Cup data into posters

https://zehfernandes.com/posts/how-i-turned-world-cup-data-into-posters
1•zehfernandes•32m ago•1 comments

Open-source AI skills that make Claude/ChatGPT produce real work, eval-scored

https://github.com/mohitagw15856/pm-claude-skills
1•mohitagw•33m ago•0 comments

A Shallow Introduction to the K Programming Language (2002)

https://web.archive.org/web/20070519112242/http://www.kuro5hin.org/story/2002/11/14/22741/791
1•tosh•33m 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.