frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Stacks and Queues in Python – Python Morsels

https://www.pythonmorsels.com/stacks-and-queues/
1•rbanffy•2m ago•0 comments

Unsupervised Representation Learning with Deep Convolutional GANs

https://arxiv.org/abs/1511.06434
1•ronfriedhaber•4m ago•0 comments

Why Git Is the Memory Solution for the ADLC [pdf]

https://github.com/rekal-dev/rekal-cli/blob/main/docs/research/paper/rekal-paper.pdf
1•guocongwudi•5m ago•0 comments

Climate free fall: why the biggest risk to our economies is yet to be recognized

https://www.nature.com/articles/d41586-026-02154-8
1•doener•7m ago•0 comments

Show HN: Webround - an API-first e-commerce platform

https://webround.com/en
1•LucaSiviero•7m ago•0 comments

America pays workers just 27% of what its wealth allows – the worst in the OECD

https://fortune.com/2026/07/13/us-worst-oecd-fair-pay-score/
2•robtherobber•8m ago•0 comments

Conway's Law: Silos are the natural enemy of a good product

https://www.tobiasreithmeier.de/en/blog/silos-kontext-produktentwicklung
1•JuriKeller•8m ago•0 comments

Nvidia, Oxide, and tinygrad through a Wardley lens

https://magistr.me/blog/nvidia-oxide-tinygrad-wardley-lens/
1•yla92•14m ago•0 comments

Turning High-Frequency Data into Daily Factors

https://medium.com/@DolphinDB_Inc/how-to-make-high-frequency-market-data-work-for-mid-and-low-fre...
1•yiweileng•14m ago•0 comments

Catnip lotion as effective as Deet at repelling mosquitoes, study finds

https://www.theguardian.com/global-development/2026/jul/07/catnip-lotion-as-effective-as-deet-at-...
3•rbanffy•17m ago•1 comments

Which Doc Format Is Best for AI Specifications?

http://blog.vanillajava.blog/2026/07/which-doc-format-is-best-for-ai.html
1•peter_lawrey•18m ago•1 comments

Be using a meta harness for agents

https://garrit.xyz/posts/2026-07-15-you-should-be-using-a-meta-harness-for-agents
4•garritfra•21m ago•0 comments

Ask HN: How are you productive with GPT 5.6 Sol?

1•hk__2•21m ago•0 comments

Write in your native language, ship in English

https://www.echoo.ai/blog/write-2x-faster-in-your-native-language
1•mike-el•22m ago•0 comments

Show HN: VSCode Inline Comments with MCP

https://github.com/gabi-a/inline-comments
1•gabia•24m ago•0 comments

Good ol' SAST to keep your token usage from spiraling

https://blog.codacy.com/deterministic-static-analysis-for-ai-coding-workflows-how-to-cut-token-co...
1•claudiacsf•26m ago•1 comments

AIDE²: First Evidence of Recursive Self-Improvement

https://www.weco.ai/blog/first-evidence-of-recursive-self-improvement
3•EvgeniyZh•27m ago•0 comments

What Is RDMA over Converged Ethernet (RoCE)?

https://ubuntu.com/blog/what-is-rdma-over-converged-ethernet-roce
1•ankitg12•29m ago•0 comments

Poka-Yoke

https://en.wikipedia.org/wiki/Poka-yoke
1•kesor•30m ago•0 comments

Sealed Tomb Filled with Paintings and Inscriptions Discovered in Egypt

https://www.labrujulaverde.com/en/2026/07/sealed-tomb-of-a-high-official-or-priest-filled-with-pa...
3•isaacfrond•31m ago•0 comments

Show HN: EzTranslate – Photo Translator Specifically for ZH-TW Speaker

https://eztranslate.com.tw/
1•sebjones•34m ago•0 comments

I'm building a project rn that shares ad revenue with users. What do you think?

2•jezzwar•35m ago•4 comments

Primes of the form x^2 + n y^2

https://github.com/rahulsudhu/primes_of_the_form
2•rsuds211•35m ago•0 comments

Free File Converter: How I build it

https://convert.bz/en
1•GemsGame•36m ago•0 comments

Pluto – a new app engine for reMarkable devices

https://twitter.com/mikediarmid/status/2077308240035979353
1•salakar•37m ago•0 comments

RAG system isn't hallucinating. It never found the answer

https://artifipedia.com/blog/rag-retrieval-not-generation
1•stoicstoic•40m ago•0 comments

Show HN: DTAP – test and text anything protocol

https://github.com/melezhik/doubletap
1•melezhik•46m ago•0 comments

Porting nanochat to a TPU: what carries over from PyTorch, and what breaks

https://github.com/tucan9389/nanochat-jax/discussions/1
2•tucan9389•48m ago•0 comments

The State of Age Verification in 2026

https://aztec-labs.com/blog/age-verification-state-2026
1•rzk•55m ago•0 comments

How to Build 1-Minute OHLC Bars from Non-Uniform Market Snapshot Data

https://medium.com/@DolphinDB_Inc/how-to-build-1-minute-ohlc-bars-from-non-uniform-market-snapsho...
2•yiweileng•55m 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•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.