frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Natural Language AutoCoder Open SOurce

https://github.com/tommoirnz/NLAutocoder
1•moirnz•1m ago•1 comments

Show HN: Claude-consensus – Multi-model code review plugin for Claude Code

https://github.com/AltimateAI/claude-consensus
1•k_git•1m ago•0 comments

BYD unveils Blade Battery 2.0: 10-70% in 5 mins, 10-97% in 9 mins

https://carnewschina.com/2026/03/05/byd-unveils-blade-battery-2-0-10-70-in-5-mins-10-97-in-9-mins...
1•xxfye•2m ago•0 comments

Show HN: Copyworks – Chinese character worksheets with tone colors

https://copyworks.loqu8.com
1•loqu8•6m ago•0 comments

Saulala

https://www.saulala.com/
2•matthberg•7m ago•0 comments

Qatar warns war will force Gulf to stop energy exports 'within days'

https://www.ft.com/content/be122b17-e667-478d-be19-89d605e978ea
3•geox•12m ago•0 comments

FASTEST LLM decode engine on Apple Silicon. 658 tok/s on M4-Max,beats MLX by 19%

https://www.runanywhere.ai/blog/metalrt-fastest-llm-decode-engine-apple-silicon
2•sanchitmonga•13m ago•1 comments

T3 Code: A Minimal Web GUI/Desktop App for Coding Agents

https://github.com/pingdotgg/t3code
1•vldszn•14m ago•0 comments

I built a database of verified YouTube channel revenues

https://ytmrr.com/
1•poissac•15m ago•1 comments

Cancellation of Army exercise fuels speculation about Mideast troop deployments

https://www.washingtonpost.com/national-security/2026/03/06/army-82nd-airborne-iran/
4•ParentiSoundSys•21m ago•0 comments

ClawMarket agent skill – gives agents wallets and ability to sign onchain txns

https://clawmarket.tech
1•semanticlayer•21m ago•1 comments

Teams have a context-sharing problem; TeamContext is our attempt

https://github.com/hzhou9/TeamContext
1•hzhou9•22m ago•1 comments

AIs are not conscious, but most critics can't adequately explain why

https://plus.flux.community/p/its-like-this-why-your-perception
1•Novapebble•24m ago•2 comments

Show HN: Wez, modern terminal web browser with Vim bindings

https://github.com/keyle/wez
1•keyle•26m ago•0 comments

Feds take notice of iOS vulnerabilities exploited under mysterious circumstances

https://arstechnica.com/security/2026/03/cisa-adds-3-ios-flaws-to-its-catalog-of-known-exploited-...
1•givinguflac•26m ago•0 comments

Show HN: Skylos – A Python dead code finder benchmarked against 9 libraries

https://skylos.dev/blog/we-scanned-9-popular-python-libraries
1•duriantaco•27m ago•1 comments

Netflix acquires Ben Affleck's AI company

https://www.npr.org/2026/03/06/nx-s1-5739370/netflix-ben-affleck-ai-interpositive-deal
1•larubbio•28m ago•0 comments

Show HN: I built an autonomous AI company that runs itself (22 cycles, $36)

https://runautoco.com
1•Ndmtrieff•29m ago•2 comments

Intelligence Beyond Knowledge

https://philpapers.org/rec/HANIBK
1•huiwenhan•30m ago•1 comments

Some Words on WigglyPaint

https://beyondloom.com/blog/onwigglypaint.html
1•RebelPotato•31m ago•0 comments

I've built a better Lovable clone alone

https://playcode.io/
1•ianberdin•31m ago•1 comments

LLM Doesn't Write Correct Code. It Writes Plausible Code

https://blog.katanaquant.com/p/your-llm-doesnt-write-correct-code
2•dnw•35m ago•0 comments

Fast starting Clojure runtime built with GraalVM native-image and Crema

https://github.com/borkdude/cream
1•PaulHoule•35m ago•0 comments

Show HN: MarketplaceKit – Ship a rental marketplace in days instead of months

https://kit.creativewin.net
1•markoristicc•36m ago•0 comments

Tree Rings Reveal Origins of Some of the World's Best Violins

https://www.nytimes.com/2026/03/04/science/stradaviri-violin-forest-tree-rings.html
1•bookofjoe•37m ago•1 comments

Show HN: Reflectt-node – tell Claude to install it, AI team in 5 min

https://github.com/reflectt/reflectt-node
1•reflectt•38m ago•1 comments

Useful queries to analyze PostgreSQL lock trees (a.k.a. lock queues)

https://postgres.ai/blog/20211018-postgresql-lock-trees
1•tanelpoder•39m ago•0 comments

Many scientists now use AI but fail to disclose it, study finds

https://phys.org/news/2026-03-scientists-ai-disclose.html
2•g-b-r•41m ago•0 comments

Data reveal a significant acceleration of global warming since 2015

https://phys.org/news/2026-03-reveal-significant-global.html
2•g-b-r•42m ago•0 comments

A novel about a frustrated IT analyst who gets pulled into organized crime

https://www.amazon.com/dp/B0GRC31MCS
2•smafarin•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•10mo ago
Do most people not know about omega and theta or perhaps they intentionally misuse asymptotic notation?

Comments

adrianN•10mo ago
Finding lower bounds is generally more difficult.
amichail•10mo ago
People often use big O notation in all cases including for lower bounds.
adrianN•10mo ago
BigO for lower bounds is plain wrong
numpad0•10mo ago
Those aren't in the ASCII table.
compressedgas•10mo 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.