frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Federal prosecutors > Trump administration's claims of vandalism were false

https://www.nytimes.com/2026/07/31/us/david-hearn-reflecting-pool-vandalism-charges.html
1•mgav•1m ago•1 comments

86,359 Queries in One Request: An Outage Where Every Dashboard Was Green

https://vladthe.dev/blog/86-359-queries-in-one-request-an-outage-where-every-dashboard-was-green
1•pacMakaveli•2m ago•0 comments

Charlie Stross – On the non-use of AI in my writing process

https://www.antipope.org/charlie/blog-static/2026/08/on-the-non-use-of-ai-in-my-wri.html
1•jwx48•3m ago•0 comments

Show HN: Agent Architect Skill for building agentic systems

https://github.com/anyaa-labs/agent-skills
1•shikharja•10m ago•0 comments

Don't Start a Travel Startup

https://skift.com/2026/07/30/dont-start-a-travel-startup/
2•mgav•15m ago•1 comments

U.S. exempts SpaceX's Starlink from FCC ban on foreign-made routers

https://arstechnica.com/tech-policy/2026/07/starlink-gets-exemption-from-fcc-ban-on-routers-made-...
2•JumpCrisscross•16m ago•0 comments

RFC 10023: The "_for-sale" Underscored and Globally Scoped DNS Node Name

https://www.rfc-editor.org/info/rfc10023/
2•jruohonen•16m ago•0 comments

Centralization as the Solution

https://jiranihub.com/
2•jiranihub•20m ago•1 comments

A Field Guide to the AI Security Market

https://zeltser.com/ai-security-market-field-guide
2•882542F3884314B•21m ago•0 comments

Vercel Passport is now generally available

https://vercel.com/changelog/vercel-passport-generally-available
2•flyaway123•21m ago•0 comments

July 2026 in AI

https://howmachinesthink.substack.com/p/july-2026-in-ai-what-actually-mattered
2•abhaysinghr516•22m ago•0 comments

Google AI Overviews have gone from appearing in 15% of searches to 43% now

https://techcrunch.com/2026/07/27/googles-ai-search-is-rapidly-becoming-the-default-new-data-shows/
2•qikouki•24m ago•0 comments

RipGrep musl binaries occasionally segfault during very-large searches

https://github.com/BurntSushi/ripgrep/issues/3494
31•throwaway2037•26m ago•11 comments

Test the Email Verification Protocol with an origin trial

https://developer.chrome.com/blog/email-verification-protocol-origin-trial
2•eatonphil•26m ago•0 comments

Unreleased OpenAI model solves 10 major mathematical problems

https://twitter.com/polynoamial/status/2083467194663571701
2•crhulls•26m ago•0 comments

Hurricanes Make Lizards Evolve Bigger Toe Pads (2020)

https://www.smithsonianmag.com/smart-news/hurricanes-make-lizards-evolve-bigger-toe-pads-180974772/
1•EndXA•26m ago•0 comments

Pull Request Now Means Pull and Test

https://hec.works/blog/pull-request-now-means-pull-test/
1•dividedcomet•27m ago•0 comments

Integrate LLM into your Python runtime

https://github.com/MiskaKan/thinair
1•ObviousDecline•28m ago•0 comments

You are building a better future – NO PROMOTION AT ALL

1•silisleek•29m ago•0 comments

Show HN: Minimal LLM Post-Training Experiments on an 8GB GPU (SFT, DPO, GRPO)

https://github.com/pochenai/nano-llm-posttraining
2•popopanda•30m ago•0 comments

Building a local positioning system to track runners using Ultra-Wideband

https://zeus.ugent.be/blog/25-26/12urenloop-uwb/
1•robinpdev•30m ago•0 comments

China begins mass production of DUV chipmaking machines in major breakthrough

https://www.tomshardware.com/tech-industry/semiconductors/china-begins-mass-production-of-domesti...
4•JumpCrisscross•31m ago•1 comments

Judge orders Waymo to stop overnight charging in Santa Monica

https://arstechnica.com/tech-policy/2026/08/after-noise-complaints-judge-orders-waymo-to-stop-ove...
1•SockThief•31m ago•0 comments

Revenge of the Simps

https://www.thecut.com/article/cam-girls-webcam-pimp.html
1•t-3•32m ago•0 comments

Tech buyers are baking in sovereignty from day one, says Forrester

https://www.theregister.com/ai-and-ml/2026/07/31/tech-buyers-are-baking-in-sovereignty-from-day-o...
2•mark336•37m ago•0 comments

Playbooks, plagiarism and a pig's head: claims surrounding Cambridge professor

https://www.theguardian.com/education/ng-interactive/2026/aug/01/playbooks-plagiarism-pigs-head-n...
2•jimnotgym•38m ago•0 comments

Excel was my database for 15 years, and Postgres ended that in a weekend

https://www.makeuseof.com/excel-database-15-years-postgres-ended-in-weekend/
2•Anon84•40m ago•2 comments

Unreleased Amiga Concepts

https://www.gamesthatwerent.com/2016/04/unreleased-amiga-concepts/
2•Bluestein•42m ago•0 comments

Astro Loop

https://pubdeer.com/
1•BaseBaal•42m ago•0 comments

ANA Airlines Internet Purchasing uses live key on test env

https://claude.ai/code/artifact/581f6337-1c6a-4931-bfa2-b938a25eb3a7?via=auto_preview
1•rryoung98•43m ago•1 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.