frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Electric Vehicle vs. Gas Car Calculator

https://www.nytimes.com/interactive/2025/08/27/upshot/ev-vs-gas-calculator.html
1•mooreds•1m ago•0 comments

Home Assistant and Ubiquiti and AI = Home Automation Magic

https://www.troyhunt.com/home-assistant-ubiquiti-ai-home-automation-magic/
1•LorenDB•2m ago•0 comments

Why Use Lucky?

https://luckyframework.org/guides/getting-started/why-lucky
1•mooreds•2m ago•0 comments

Beyond the Terminal: Gemini CLI Comes to Zed Blog

https://developers.googleblog.com/pt-br/gemini-cli-is-now-integrated-into-zed/
1•dmmalam•3m ago•0 comments

Show HN: React Web Camera – Fix <input type=file> single-photo limit

https://shivantra.com/react-web-camera/
1•painternishant•3m ago•0 comments

Let's Make Sure GitHub Doesn't Become the Only Option

https://blog.edwardloveall.com/lets-make-sure-github-doesnt-become-the-only-option
1•freediver•3m ago•0 comments

Ask HN: How to convince parents that half-hearted MS is worthless?

2•shivajikobardan•3m ago•0 comments

Fabric8Labs ECAM Enabled Thermal Solutions at Hot Chips 2025

https://www.servethehome.com/fabric8labs-ecam-enabled-thermal-solutions-at-hot-chips-2025/
1•ksec•4m ago•0 comments

Google's Ironwood TPU Swings for Reasoning Model Leadership at Hot Chips 2025

https://www.servethehome.com/googles-ironwood-tpu-swings-for-reasoning-model-leadership-at-hot-ch...
1•ksec•4m ago•1 comments

Inside Zig's New Writer

https://joegm.github.io/blog/inside-zigs-new-writer-interface/
2•joemck•4m ago•0 comments

What Is Included in a Stock Price?

https://www.six-group.com/en/blog/more-than-just-a-price.html
1•mooreds•5m ago•0 comments

JWST detection of a carbon dioxide dominated gas coma surrounding 3I/ATLAS

https://zenodo.org/records/16941949
1•belter•6m ago•0 comments

Beyond the terminal: Gemini CLI comes to Zed

https://developers.googleblog.com/en/gemini-cli-is-now-integrated-into-zed/
1•u8_•7m ago•0 comments

AI Bubble 2027

https://www.wheresyoured.at/ai-bubble-2027/
2•speckx•8m ago•0 comments

How do tenant protections impact rents?

https://twitter.com/jayparsons/status/1960343706386506096
2•MrBuddyCasino•8m ago•0 comments

Marvell Shows Dense SRAM Custom HBM and CXL with Arm Compute at Hot Chips 2025

https://www.servethehome.com/marvell-shows-dense-sram-custom-hbm-and-cxl-with-arm-compute-at-hot-...
1•ksec•8m ago•1 comments

I built an open-source CSV importer

https://github.com/importcsv/importcsv
1•aray07•9m ago•1 comments

Why Relying on LLMs for Code Can Be a Security Nightmare

https://blog.himanshuanand.com/posts/2025-08-22-llm-vibe-coding-security-nightmare/
2•unknownhad•10m ago•0 comments

Shared_ptr<T>: the (not always) atomic reference counted smart pointer

https://snf.github.io/2019/02/13/shared-ptr-optimization/
2•klaussilveira•11m ago•0 comments

15-Fold increase in solar thermoelectric generator performance

https://www.nature.com/articles/s41377-025-01916-9
1•rbanffy•11m ago•0 comments

Arecibo Wow II: Revised Properties of the Wow Signal from Archival SETI Data

https://arxiv.org/abs/2508.10657
1•rbanffy•12m ago•0 comments

From Python to Go: Why We Rewrote Our Ingest Pipeline at Telemetry Harbor

https://telemetryharbor.com/blog/from-python-to-go-why-we-rewrote-our-ingest-pipeline-at-telemetr...
1•vinhnx•13m ago•0 comments

Ask HN: Did modern AI's coding abilities make you lose interest in programming?

3•amichail•17m ago•2 comments

Show HN: I built a robot that draws caricatures with a Sharpie

https://www.caricature-bot.com/
1•ringerapps•17m ago•0 comments

Ask HN: Any other Google Fiber uses having issues

1•nodesocket•18m ago•2 comments

Mantic: Automating Judgemental Forecasting

https://www.mantic.com/launch
2•enjeeneer•19m ago•0 comments

Show HN: Dsa.rb: Practice core dsa in Ruby from the command line

https://github.com/carter2099/dsa.rb
3•carter2099•20m ago•0 comments

Python Namespace Packages are a pain

https://joshcannon.me/2025/08/16/py-namespace-packages.html
2•rbanffy•20m ago•0 comments

How Will AI Impact Higher Ed?

https://jamesgmartin.center/2025/08/how-will-ai-impact-higher-ed/
1•Bostonian•24m ago•0 comments

UserScript that shows a "Search on Perplexity" button on Google Search

https://gist.github.com/overflowy/628223ea43782c3bd102dfe3b9163a34
1•niux•25m ago•1 comments
Open in hackernews

Know why you don't like OOP

https://zylinski.se/posts/know-why-you-dont-like-oop/
2•ibobev•2h ago

Comments

meheleventyone•27m ago
For an article aimed at juniors to understand good arguments about these concepts I wish it was better thought out.

For example interfaces can be extremely bad when they are overused and make a codebase hard to navigate because understanding what concretely exists can sometimes only be figured out at runtime. Dynamic languages suffer from this as well because duck typing becomes a freeform interface.

The argument against inheritence could also be stronger. The example seems contrived and even with a small bit of thought you can see other ways of laying out data other than just newing every element. Inheritance largely doesn't mandate a data layout and there should really be mention of dynamic dispatch as another negative in the example as well!

Where inheritance does go wrong more commonly is in deep inheritence hierachies where the modelling approach not only makes functionality hard to understand because it'd smeared over multiple classes but leads to functionality getting pushed down so different trees can share it leading to bloat across every object in the hierarchy that has access to functionality it then might not need. Classic OOP game hierarchies like UObject and AActor in Unreal typify this.