frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

U.S. Military Turned GPS into a Global "Numbers Station"

https://www.404media.co/the-u-s-military-quietly-turned-gps-into-a-global-numbers-station-evidenc...
1•awkwardpotato•2m ago•0 comments

Vibe Justice System – AI Courts convened in pursuit of correctness

https://github.com/wlilley93/vibe-justice-system
2•wlilley93•2m ago•0 comments

Alien hunters update guidance on sharing news of possible intelligent life

https://www.theguardian.com/science/2026/jun/05/alien-hunters-seti-guidance-signals-intelligent-life
2•root-parent•2m ago•0 comments

10k Lines Later: When a Tool Became a Compiler [video]

https://www.youtube.com/watch?v=wVQLEAHrwrI
2•robspairpears•2m ago•0 comments

Suppression of the integrated stress response extends lifespan in the fly

https://www.pnas.org/doi/10.1073/pnas.2518812123
2•PaulHoule•4m ago•0 comments

Software Engineering is the new Manufacturing Engineering

https://halecraft.org/software-engineering-is-the-new-manufacturing-engineering/
4•canadaduane•5m ago•0 comments

Building Xbox Games with Godot: A New Sample to Get You Started Faster

https://developer.microsoft.com/en-us/games/articles/2026/06/building-xbox-games-with-godot/
3•HelloUsername•6m ago•0 comments

AI must foster 'maternal instincts' or we risk extinction, warns Geoffrey Hinton

https://www.cbc.ca/radio/ideas/geoffrey-hinton-maternal-instincts-9.7094116
4•geox•6m ago•1 comments

U.S. attorney says election fraud probes are underway in California

https://ktla.com/news/local-news/u-s-attorney-says-election-fraud-probes-are-underway-in-california/
2•Bender•6m ago•1 comments

A healthier gut may be key to cancer care

https://www.cnn.com/2026/06/05/health/gut-microbiome-immunity-cancer-ghrc
3•Bender•8m ago•0 comments

The largest cannabis study ever: It may make anxiety, depression and PTSD worse

https://thesciverse.org/the-largest-cannabis-study-ever-conducted-found-no-evidence-it-helps-anxi...
3•RickJWagner•8m ago•0 comments

pg_durable: Microsoft open sources in-database durable execution

https://github.com/microsoft/pg_durable
8•coffeemug•8m ago•0 comments

Machine-verified proof that M3P ∈ P and P = NP via Pedigree Polytopes

https://github.com/TiruArt/Pedigree-Polytopes-Lean4
3•carlsverre•8m ago•2 comments

Public transport network partially shut–down bosses forgot to pay internet bill

https://www.dailymail.com/news/article-15876799/san-francisco-bart-shutdown-clipper-internet-bill...
2•Bender•10m ago•1 comments

Here's why I created a travel website for robots

https://alexpanetta.substack.com/p/heres-why-i-created-a-travel-website
1•throw0101a•11m ago•0 comments

Tips to get the most out of OpenCode

https://byandrev.dev/en/blog/10-best-practices-for-opencode
2•mcormik•12m ago•0 comments

Flood of AI 'garbage' is pushing open-source developers to the limit

https://www.newscientist.com/article/2527761-flood-of-ai-garbage-is-pushing-open-source-developer...
1•mattsparkes•14m ago•1 comments

Configuration flags are where software goes to rot

https://00f.net/2026/04/11/config-flags/
2•birdculture•15m ago•0 comments

CrankGPT: A human-powered local and private AI solution

https://crankgpt.com/
3•_ihaque•16m ago•0 comments

Show HN: Group of Death – WorldCup bracket predictor with shareable URLs

https://groupofdeath.gg/
4•sparc24•16m ago•1 comments

FeOS: A 16-Bit OS Written in ASM (and a custom language)

https://github.com/anhumandev/feos
1•anhuman•18m ago•1 comments

Neural-somatic simulations of history's greatest minds

https://www.opendria.com/
1•opendria•18m ago•0 comments

Understanding why autism symptoms sometimes improve amid fever

https://news.mit.edu/2024/understanding-why-autism-symptoms-sometimes-improve-amid-fever-0523
3•thunderbong•19m ago•0 comments

</> Htmx – Code is Cheap(er)

https://htmx.org/essays/code-is-cheap/
5•leephillips•22m ago•0 comments

The circus freaks of open source

https://drewdevault.com/blog/Circus-freaks-of-FOSS/
2•Tomte•23m ago•0 comments

The round-the-world escape from Pearl Harbor

https://signoregalilei.com/2026/05/17/the-round-the-world-escape-from-pearl-harbor/
1•surprisetalk•23m ago•0 comments

SignalScout

https://signalscout.be
2•AIGENIZE•23m ago•0 comments

My thoughts on the "focusgroup" attribute proposal

https://www.stevefrenzel.dev/posts/my-thoughts-on-the-focusgroup-attribute-proposal/
1•speckx•27m ago•0 comments

A curated list of AI for developers

https://github.com/ai-for-developers/awesome-ai-coding-tools
2•dariubs•29m ago•0 comments

Stop Using Conventional Commits

https://sumnerevans.com/posts/software-engineering/stop-using-conventional-commits/
27•jsve•29m ago•8 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.