frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Let's Reinvent the Scroll Wheel

https://scrollpods.app/blog/lets-reinvent-the-scroll-wheel
1•tippa123•52s ago•0 comments

Same Query, Three Results: Benchmarking ParadeDB and Postgres FTS

https://www.paradedb.com/blog/benchmarker-iteration
1•jamesgresql•3m ago•0 comments

Reinforcement Learning with Metacognitive Feedback Elicits Uncertainty in LLMs

https://arxiv.org/abs/2606.32032
1•jonnonz•4m ago•0 comments

Show HN: Ex Situ, open-source spatial index of displaced cultural artifacts

https://exsitu.app/map
1•hbyel•4m ago•0 comments

Secure Unix ancestor KSOS did type safety before Rust made it cool

https://www.theregister.com/os-platforms/2026/07/06/secure-unix-ancestor-ksos-did-type-safety-bef...
1•rbanffy•4m ago•0 comments

Bridg.fun – A minimal, zero-knowledge text and file bridge between devices

https://bridg.fun
1•peeposaur•6m ago•0 comments

The Event-Sourced Domain Modeling Language Is Now Open-Source

https://www.esdm.io/
1•goloroden•7m ago•0 comments

Show HN: Disguise any article as VS Code, Excel or Slack – with a boss key

https://sneakread.com/
1•blacktechnology•9m ago•0 comments

World's only skydiving DC-9 jet [video]

https://www.youtube.com/watch?v=I1Gdar72rMU
1•jasoncartwright•10m ago•0 comments

Dear You: Beijing puts on movie night for diplomats

https://www.scmp.com/news/china/diplomacy/article/3359714/dear-you-beijing-puts-movie-night-diplo...
1•Alien1Being•12m ago•0 comments

Microsoft Can Track Users via a Windows Device ID

https://www.pcmag.com/news/a-hackers-arrest-reveals-microsoft-can-track-users-via-a-windows-device
4•ifh-hn•12m ago•0 comments

We're Living Through the AI Utopia and Can't See It

https://twitter.com/christofsalis/status/2073375047939395671
2•evizero•14m ago•0 comments

Show HN: Access-aware text-to-SQL – stop LLM agents overfetching data

https://github.com/sparklingneuronics/access-aware-text-to-sql
1•dimitarst•15m ago•0 comments

Verbalizable Representations Form a Global Workspace in Language Models

https://transformer-circuits.pub/2026/workspace/index.html
2•matthewsinclair•22m ago•1 comments

Show HN: A router that drops costs by roughly 45%

https://www.flexinference.com
1•Aperswal•25m ago•1 comments

YC CEO says he ships 37K LoC AI code per day. A developer looked under the hood

https://www.fastcompany.com/91520702/y-combinator-garry-tan-agentic-ai-social-media
21•theanonymousone•27m ago•2 comments

Show HN: Shadow Web – Cut 64–97% of web page tokens for LLM agents

https://github.com/ulinycoin/shadow-web
1•ulinycoin•28m ago•0 comments

The first AI safety letter was sent in 1949

https://vanuan.github.io/blog/2026-02-28-wiener/
1•indynz•28m ago•0 comments

The Ant Catalog Leak – Inside the NSA's Covert Hacking Program (CC) [video]

https://www.youtube.com/watch?v=FDiIC_NJ2a8
1•ary27x•30m ago•0 comments

GitHub abandons offer to burn repos on CD

https://www.theregister.com/devops/2026/07/06/github-cuts-short-offer-to-burn-repos-on-cd-after-m...
2•Alien1Being•30m ago•0 comments

Collapse of AMOC ocean current may be locked in

https://institutions.newscientist.com/article/2533017-collapse-of-amoc-ocean-current-may-already-...
2•sieste•32m ago•0 comments

Wall Street warms to SpaceX ahead of Nasdaq 100 inclusion

https://www.reuters.com/business/wall-street-warms-spacex-ahead-nasdaq-100-inclusion-2026-07-07/
2•adithyaharish•39m ago•0 comments

Oikoumene: Autonomous Agent Civilization Simulator

https://github.com/GeoLambdaAI/oikoumene/tree/main
2•Gtombri•41m ago•0 comments

CVE-2026-8451: Citrix NetScaler SAML Memory Overread

https://www.lupovis.io/lupovis-insights/
2•noktec•45m ago•0 comments

Posthorn – A self-contained email pen-pal daemon for slow, self-hosted LLMs

https://tangled.org/clee.sh/posthorn
2•circularfoyers•47m ago•0 comments

Why you should not have Managers in your class name

https://karankurani.com/writing/post/170793461763/why-you-should-not-have-managers-in-your-class/
2•BIackSwan•49m ago•1 comments

Ryzen AI Developer Platform: AMD's Own Linux Distribution Built Atop Debian

https://www.phoronix.com/review/ryzen-ai-linux-os
1•rbanffy•49m ago•0 comments

Supreme Court allows Texas to require age verification for mobile apps

https://www.cnn.com/2026/07/06/politics/supreme-court-allows-texas-to-require-age-verification-fo...
1•austin-cheney•49m ago•0 comments

Show HN: Fast, native Mac file manager (filters, fuzzy find, 9 MB, no Electron)

https://whimfiles.com
3•whimbyte•54m ago•0 comments

Microsoft admits a Windows 11 bug is eating up to 500GB of storage

https://www.windowslatest.com/2026/07/06/microsoft-admits-a-windows-11-bug-is-eating-up-to-500gb-...
6•vidyesh•54m 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.