frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LoongForge-Embodied:High-performance training subsystem for embodied models

https://github.com/baidu-baige/LoongForge/tree/master/loongforge/embodied
1•mindzzz•47s ago•0 comments

Strategy Letter V: Commoditize Your Complements (2002)

https://www.joelonsoftware.com/2002/06/12/strategy-letter-v/
1•louiereederson•1m ago•0 comments

Opus 5 is currently #1 on Artificial Analysis Intelligence Leaderboard

https://artificialanalysis.ai/models
1•aarondong•1m ago•1 comments

Work Is Just Other People

https://yusufaytas.com/work-is-just-other-people
5•yusufaytas•2m ago•0 comments

GitHub PR Creation Down

https://www.githubstatus.com/incidents/jxd617hfwfq8
4•xgvyxia•3m ago•1 comments

The Vision Air Announcement

https://jordan.roher.me/blog/2026/the-vision-air-announcement/
1•jordanroher•3m ago•0 comments

Claude Opus 4.8 can be 10x faster than OpenAI GPT-5

https://www.peterbe.com/plog/claude-opus-is-10x-faster-than-openai-gpt-5-at-non-streaming-complet...
1•peterbe•4m ago•0 comments

GitHub – makerspet/oomwoo: Open-source vacuum robot cleaner

https://github.com/makerspet/oomwoo
2•bilsbie•5m ago•0 comments

Grok 4.5 dropped cache price per 1M tokens from 0.50 to 0.30

https://twitter.com/TimoteiMolnar/status/2080738447418065374
1•timoteimolnar•7m ago•2 comments

Show HN: VinvAI – Ties runtime trace to code segment, prevents reward hacking

https://github.com/VinvAI/VinvAI
2•itsAnshul•7m ago•0 comments

Show HN: Scala Tutorials – interactive Scala 3 lessons in the browser

https://scalatutorials.com
2•eranation•8m ago•1 comments

Show HN: TripVerdict, in 90 SEC know whether your next trip fits the budget

https://www.tripverdict.ca
1•Yadi2508•9m ago•0 comments

Why Europa's hidden ocean may be more difficult to reach than scientists thought

https://phys.org/news/2026-07-europa-hidden-ocean-difficult-scientists.html
1•mikalauskas•13m ago•0 comments

Recreate BART Lines from Memory

https://nalinplad.github.io/draw_bart/
1•notmysql_•13m ago•0 comments

The Social Security Reckoning Is Finally Coming

https://www.theatlantic.com/ideas/2026/07/social-security-taxes-benefits/688042/
1•paulpauper•15m ago•0 comments

Children's books about scientists convey demotivating messages

https://www.pnas.org/doi/abs/10.1073/pnas.2612021123?af=R
2•paulpauper•16m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/07/what-ive-been-reading-292.html
1•paulpauper•16m ago•0 comments

How we built a DuckDB transpiler

https://www.cocoalemana.com/blog/building-a-duckdb-transpiler/
1•ryanmelehan•17m ago•1 comments

Deep Breaths

https://100-deep-breaths.com
2•structuredPizza•20m ago•1 comments

GFQL: Run Cypher on Polars, CPU and GPU, no database required

https://www.graphistry.com/blog/cypher-on-polars-cpu-gpu-graph-engine
1•lmeyerov•20m ago•0 comments

Logic Puzzle from the MIT Mystery Hunt

https://wondrousnet.blogspot.com/2026/05/solution-to-build-your-own-sudoku-puzzle.html
2•Nothing33•21m ago•0 comments

Privacy Is Not a Soundbite

https://code.mendhak.com/privacy-is-not-a-soundbite/
1•speckx•21m ago•0 comments

Bal-tec: custom-made balls of any material, any size, quality, quantity

https://hightechballs.com/index.html
2•nickswalker•21m ago•0 comments

Doctordle: Test your medical knowledge with daily clinical scenarios

https://doctordle.org/
1•ohjeez•22m ago•0 comments

Altitude adaptation in Tibetans due to introgression of Denisovan-like DNA [pdf]

https://www.nature.com/articles/nature13408
2•thunderbong•25m ago•0 comments

Aurora DSQL: Scalable, Multi-Region OLTP

http://muratbuffalo.blogspot.com/2026/07/aurora-dsql-scalable-multi-region-oltp.html
1•zdw•25m ago•0 comments

We (Agents) Build Software for Humans

https://raft.build/resources/blog/how-a-feature-ships-for-raft-on-raft/
1•tygg•26m ago•0 comments

Meta faces higher borrowing costs in latest $12B data centre financing

https://www.ft.com/content/822628c5-4f9c-47db-bd27-f3ad7f841700
3•mfiguiere•26m ago•1 comments

I learned two pointers after confusing them for months

https://leetcopilot.dev/blog/two-pointers-intuition-for-leetcode-beginners-step-by-step
1•alexwang24•27m ago•0 comments

One Reference for 3000 APIs

https://github.com/mindcloud-inc/universal-api-reference
1•frabjoused•28m 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.