frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

My story on how I created my own open source project

1•packetsniffer•10s ago•0 comments

Google is first hyperscaler to promise GW-scale power demand response

https://blog.google/innovation-and-ai/infrastructure-and-cloud/global-network/demand-response-dat...
1•khofo•6m ago•1 comments

Show HN: BallotGuessr – Guess the 2024 election margin from a Street View photo

https://ballotguessr.com
2•jiratickets•7m ago•0 comments

Constructing an LLM-Computer

https://www.percepta.ai/blog/constructing-llm-computer
1•Philpax•8m ago•0 comments

Show HN: Stella Foster – iMessage on Any Phone

https://stellafoster.com/
1•jacobgc•8m ago•0 comments

An open source benchmarking framework for IT automation

https://github.com/itbench-hub/ITBench
1•pranay01•9m ago•0 comments

A Former Anthropology Student from Los Angeles Might Be the George Lucas of AI

https://www.hollywoodreporter.com/movies/movie-news/gossip-goblin-zack-london-ai-films-watch-1236...
2•Kaibeezy•10m ago•0 comments

Air Force tanker tore up asphalt at Alaska airport with engine test

https://taskandpurpose.com/news/air-force-tanker-asphalt-accident/
1•ilamont•13m ago•0 comments

Making React ProseMirror Fast

https://handlewithcare.dev/blog/making_react_prosemirror_really_really_fast/
1•smoores•16m ago•1 comments

5 AIs. One Answer on iOS

https://apps.apple.com/us/app/pingpongit/id6758229301
1•husky8•18m ago•0 comments

Show HN: Rick – Open-source AI CEO that autonomously runs your startup

https://meetrick.ai
1•MeetRickAI•18m ago•0 comments

Running Tesla Model 3's Computer on My Desk Using Parts from Crashed Cars

https://bugs.xdavidhu.me/tesla/2026/03/23/running-tesla-model-3s-computer-on-my-desk-using-parts-...
3•driesdep•18m ago•0 comments

Ancient DNA reveals 4000 years of grapevine diversity and viticulture in France

https://www.nature.com/articles/s41467-026-70166-z
1•layer8•28m ago•0 comments

The Military Failures of Fascism

https://acoup.blog/2024/02/23/fireside-friday-february-23-2024-on-the-military-failures-of-fascism/
2•JumpCrisscross•28m ago•0 comments

Brad Feld – Quality (Essay on Zen and the Art of Motorcycle Maintenance)

https://feld.com/archives/2026/03/quality/
1•rmason•30m ago•0 comments

Health NZ staff told to stop using ChatGPT to write clinical notes

https://www.rnz.co.nz/news/national/590645/health-nz-staff-told-to-stop-using-chatgpt-to-write-cl...
14•billybuckwheat•32m ago•1 comments

Specula: A framework for finding deep bugs in system code using TLA+

https://github.com/specula-org/Specula
1•matt_d•33m ago•0 comments

Nonfiction Publishing, Under Threat, Is More Important

https://newrepublic.com/article/207659/non-fiction-publishing-threat-important-ever
1•Hooke•34m ago•0 comments

Show HN: Text2troff – automatically converts plain text to TROFF format

https://github.com/jazzfan2/text2troff
1•robtoscani•34m ago•0 comments

Silence is the KPI: agents that don't talk

https://diegodella1.github.io/chango-daily/2026/03/03/silence-is-the-kpi-agents-that-do-not-talk/
1•changobot_dg•34m ago•0 comments

China is mass-producing hypersonic missiles for $99,000

https://kdwalmsley.substack.com/p/on-sale-now-china-is-mass-producing
34•zdw•35m ago•3 comments

RedSwarm Adversarial AI security scanner, one file, zero deps

https://github.com/beee003/redswarm
1•bee003•36m ago•1 comments

UK bans crypto donations to political parties in bid to curb foreign influence

https://apnews.com/article/uk-political-donations-cryptocurrency-ban-4deae8e71d664a042363fa79d617...
2•toomuchtodo•36m ago•1 comments

FairPhone: Industry First Nature Report

https://www.fairphone.com/stories/we-just-released-the-industrys-first-ever-nature-report
1•kruffalon•37m ago•1 comments

A lawyer won Anthropic's hackathon – what everyone missed

https://hadleylab.org/blogs/2026-03-22-the-lawyer-who-won/
2•idrdex•37m ago•1 comments

Creating Your First React Component Is Easy

https://www.youtube.com/watch?v=lVzYw35oRrk
1•stormsidali2001•37m ago•1 comments

Moon: The Lonely Life of a Man on the Moon

https://reactormag.com/moon-the-lonely-life-of-a-man-on-the-moon/
1•mindracer•38m ago•0 comments

Supreme Court rules ISPs aren't liable for subscribers' music piracy

https://www.engadget.com/entertainment/streaming/supreme-court-rules-isps-arent-liable-for-subscr...
6•zdw•38m ago•1 comments

Show HN: Whorl – Fingerprinting LLMs as horrible password generators

http://bountyplz.xyz/ai,/security/2026/03/15/Model-Fingerprinting-With-Whorl.html
1•tehryanx•39m ago•0 comments

Meta Lays Off 700 Employees, While Rewarding Top Executives

https://www.nytimes.com/2026/03/25/technology/meta-layoffs-ai-executives.html
4•nickvec•41m ago•3 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.