frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Critical Approach of ChatGPT's Impact on Everyday Life

https://link.springer.com/chapter/10.1007/978-3-032-31732-2_9
1•geox•2m ago•0 comments

Optimal NYC Neighborhood Locator

https://www.jean.land/nyc-apts
1•imustachyou•3m ago•0 comments

FlowG: Turning Your Logs into Metrics

https://flowg.cloud/blog/logs-into-metrics
1•linkdd•3m ago•0 comments

Show HN: Play Tetris in the terminal (solo and pvp)

https://github.com/backnotprop/tuitetris
1•ramoz•4m ago•0 comments

New x86 CPUID Entry For "EVOLUTIONARY"

https://sandpile.org/x86/cpuid.htm#leaf_0000_0000h
1•ruik•5m ago•0 comments

Hypotheses

https://hypotheses.org/
2•jruohonen•6m ago•0 comments

Interviews with key Python developers from the first 25 years

https://gvanrossum.github.io/interviews/index.html
2•tosh•11m ago•0 comments

Devs to Anthropic, OpenAI, Cursor, and friends Make security and privacy default

https://www.theregister.com/ai-and-ml/2026/08/08/devs-to-anthropic-openai-cursor-and-friends-make...
1•Bender•13m ago•0 comments

Show HN: Rollcall – Simulated Film Development on iPhone with Shared Rolls

https://rollcall.nicksavarese.com/
1•nickooo•14m ago•0 comments

Show HN: AURcade – A tiny self-hosted Git service using cgit and SSH

https://github.com/skorotkiewicz/aurcade
1•modinfo•15m ago•0 comments

Keeping Master Green at Scale

https://dl.acm.org/doi/10.1145/3302424.3303970
2•handfuloflight•17m ago•0 comments

Do the scoring rules decide the winner? 211,080 predictions re-scored five ways

https://beteamapp.com/research/prediction-league-scoring-systems/
1•beteam555•20m ago•0 comments

Pokemon Red/Blue/Yellow native recompilation with mods

https://github.com/bryanthaboi/gen1recomp
1•satvikpendem•22m ago•1 comments

Flock CEO Tailed by PI to Ensure No Crimes or Cheating on Wife

https://ipvm.com/reports/priv-invest-flock-ceo
2•jhonovich•24m ago•0 comments

AI Is on Its Last Legs [video]

https://www.youtube.com/watch?v=zdsoe_OsnHw
1•Bender•25m ago•0 comments

Hims and Hers sent user health data to social media giants bombshell FTC lawsuit

https://nypost.com/2026/07/29/business/hims-hers-sent-users-health-data-to-social-media-giants-de...
4•randycupertino•26m ago•1 comments

Barry's Economics: The Science of the Immigration Grift [video]

https://www.youtube.com/watch?v=_OWqzhwsWXM
1•kklisura•27m ago•0 comments

Jorge – minimal site generator with Markdown and org-mode support

https://github.com/facundoolano/jorge
1•facundo_olano•28m ago•0 comments

Large-Scale Code Refactoring with AI

https://swiftace.org/posts/large-scale-code-refactoring-with-ai
1•aakashns•28m ago•0 comments

Can you make ChatGPT follow instructions?

https://ramblingafter.substack.com/p/can-you-make-chatgpt-follow-instructions
1•paulpauper•29m ago•0 comments

Towards a Liberatory Technology, Murray Bookchin (1965)

https://theanarchistlibrary.org/library/lewis-herber-murray-bookchin-towards-a-liberatory-technology
1•mxmilkiib•30m ago•0 comments

The Seam Is the Label

https://vuvko.net/blog/patched-objects/
1•vuvko•31m ago•0 comments

AI Workers Ask U.S. Government for Tools to Slow AI Before a Crisis

https://www.ainews.com/p/ai-workers-us-government-tools-slow-ai-before-crisis
1•ashurandi•32m ago•0 comments

Fibonacci Recursion Drone Synthesizer

https://github.com/wraithsys/fibonacci-synth
2•wraithsys•35m ago•0 comments

What I did in the hedonium shockwave, by Emma, age six and a half

https://www.lesswrong.com/posts/rgXQuG8KXtxugSG6H/what-i-did-in-the-hedonium-shockwave-by-emma-ag...
2•paulpauper•37m ago•0 comments

5% public sample of provenanced OT/ICS security training datasets

https://huggingface.co/datasets/Lateos/Defensive-LLM
2•leochong•38m ago•0 comments

Semiconductor Fabs IV: The Safety

https://nomagicpill.substack.com/p/semiconductor-fabs-iv-the-safety
2•paulpauper•39m ago•0 comments

A Philosophy for AI Agents

https://ideal.iroha1203.dev/a-philosophy-for-ai-agents-1d743e970853
2•iroha1203•39m ago•0 comments

How to lead engineers who don't report to you

https://www.softwareengineeringtimes.com/p/how-to-lead-engineers-who-dont-report
2•RyanSMurphyTech•39m ago•3 comments

New Observatory Captures More Than Half a Million Galaxies in a Single Image

https://nautil.us/new-observatory-captures-more-than-half-a-million-galaxies-in-a-single-image-12...
3•Brajeshwar•40m 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.