frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Brief Retrospective on the Sprite Network Operating System

https://github.com/OSPreservProject/sprite/blob/master/sprite.txt
1•EvanAnderson•1m ago•0 comments

How I manage my agents

https://arslan.io/2026/09/11/how-i-manage-my-agents/
1•ingve•1m ago•0 comments

AltStore Classic 2.3rc: Get Onboard Remote AltServer

https://www.patreon.com/rileyshane/posts/altstore-classic-169262530
1•pzmarzly•2m ago•0 comments

I lost track of what my agents were doing, So I gave them a shared notebook

https://tskulbru.dev/posts/beads-local-shadow-for-agent-work/
1•tskulbru•3m ago•0 comments

How LLMs work, with interactive simulations

https://fazamhd.com/mental-models/llm/
1•faza•3m ago•0 comments

Show HN: HungryGPU – Track local AI models, patches and recipes by hardware

https://hungrygpu.com
1•clawterminal•4m ago•0 comments

Txt: A fast, keyboard-driven terminal text editor for engineers

https://txt.hellman.io/
1•jlundberg•7m ago•0 comments

Easter Egg in Liquid Glass Settings

https://www.reddit.com/r/iOSBeta/s/MBAMJ4zZVu
1•frizlab•9m ago•0 comments

MLIR Project Lighthouse – Update

https://discourse.llvm.org/t/mlir-project-lighthouse-update/91790
1•matt_d•9m ago•0 comments

Just one drink a day ups the risk of dying from at least 10 types of cancer

https://www.cnn.com/2026/09/03/health/alcohol-impact-cancer-deaths-wellness
1•ivewonyoung•11m ago•0 comments

Show HN: Package your compose app for airgap K8s

https://github.com/defenseunicorns/compose-bridge-uds
1•willswire•12m ago•0 comments

Meeting C++ weekly Blogroll 545

https://www.meetingcpp.com/blog/blogroll/items/Meeting-Cpp-weekly-Blogroll-545.html
1•dalvrosa•12m ago•0 comments

MSVC C++23: constexpr cmath with LLVM Libc

https://devblogs.microsoft.com/cppblog/msvc-c23-constexpr-cmath-with-llvm-libc/
1•dalvrosa•13m ago•0 comments

Show HN: Pi-sync` syncs your pi agent configuration across hosts

https://github.com/say4n/pi-sync
1•metahost•14m ago•0 comments

My3dhouse.app – turn photos of your house into a 3D model

https://my3dhouse.app
1•marcusgg•15m ago•0 comments

MoCA 2.5 Home Network Setup Guide

https://github.com/Preston-Landers/MoCA-setup-guide
1•cf100clunk•16m ago•0 comments

Judges mock lawyer who filed appeal full of AI-generated 'witnesses'

https://www.rnz.co.nz/news/world/1349763/judges-mock-lawyer-who-filed-appeal-full-of-ai-generated...
4•billybuckwheat•17m ago•0 comments

Claude AI used for missile, influence projects in UAE, Iran, Yemen: Anthropic

https://www.al-monitor.com/originals/2026/09/claude-ai-used-missile-influence-projects-uae-iran-y...
7•jmyeet•18m ago•1 comments

A New Kind of Creative Poverty

https://www.noemamag.com/a-new-kind-of-creative-poverty/
3•mkprc•19m ago•0 comments

Show HN: TubeMerger – Local-first desktop app to merge YouTube playlists offline

https://github.com/hashamtanveer-41/tubemerger
2•hashamtanvr42•19m ago•0 comments

Memories of 9/11

https://4s.bearblog.dev/memories-of-911/
2•saikatsg•22m ago•0 comments

Tech Billionaires and Science Fiction

https://www.theatlantic.com/books/2026/08/silicon-valley-science-fiction-jill-lepore-book-review/...
4•keiferski•24m ago•0 comments

Show HN: Jira Project Health Auditor (MCP Server)

https://github.com/Avtandil-abu/jira-ai-auditor
2•Avtandil45•24m ago•0 comments

Open source needs to be preserved, not protected

https://usebottles.com/blog/2026-09-11-release-2021.7.28.md
2•ckardaris•25m ago•0 comments

What 350 different theories of consciousness reveal about reality (2025)

https://www.newscientist.com/article/2498968-what-350-different-theories-of-consciousness-reveal-...
5•rendx•26m ago•1 comments

Creatine improves muscle mass and cognitive function even without exercise

https://www.psypost.org/creatine-improves-muscle-mass-and-cognitive-function-in-older-adults-even...
8•geox•29m ago•1 comments

Autoresearch for Optimizing Elliptic-Curve Point Addition in Shor's Algorithm

https://arxiv.org/abs/2609.09582
1•simonpure•34m ago•0 comments

From Lisp at JPL to Building AdWords at Google

https://corecursive.com/inside-early-google/
1•oumua_don17•36m ago•0 comments

Show HN: Caffenol, a darkroom simulation photo editing toy

https://caffenol.app/
1•vintagevibe•37m ago•0 comments

The Intelligence Asymptote

https://joshhawthorne.substack.com/p/the-intelligence-asymptote
2•JoHawth31•38m 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.