frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open-weight models take 56% of token volume

https://vercel.com/blog/ai-gateway-production-index-september-2026
1•mgdo•4m ago•0 comments

Tokens Too Cheap to Meter

https://jyn.dev/tokens-too-cheap-to-meter/
2•benjaminclauss•7m ago•0 comments

Trump says US will henceforth call AI 'super intelligence'

https://www.reuters.com/legal/government/trump-says-us-will-henceforth-call-ai-super-intelligence...
2•OuterVale•8m ago•0 comments

Show HN: I generated 21k astrology pages with Swiss Ephemeris, open sourced

https://github.com/feifeizhao25-ship-it/astrology-pseo-generator
1•tianji-astrolog•9m ago•0 comments

Weak models write tool calls as prose. We started executing them

https://fiit.ai/engineering/tool-calls-as-prose
1•airbai•10m ago•0 comments

Formal methods can start small

https://www.yovico.ai/blog/formal-methods-can-start-small/
1•siberiankot•11m ago•0 comments

Z.ai uploading local code repos to overseas cloud without consent

https://www.reuters.com/legal/litigation/chinas-zai-disables-ai-coding-assistant-features-after-s...
1•txscdn•16m ago•1 comments

Strands harness: frontier performance with 28% lower token cost

https://strandsagents.com/blog/introducing-strands-harness/
2•fourfire•21m ago•0 comments

Can the US Build a DJI? A Teardown of Two DJI Drones

https://www.arenaphysica.com/publications/dji-teardown
1•tristanj•22m ago•0 comments

NASA-Funded Research Finds Complex Life Defying Record Heat

https://science.nasa.gov/science-research/planetary-science/nasa-funded-research-finds-complex-li...
1•Jimmc414•25m ago•1 comments

I'm sick of Claudisms, & what will happen next in AI-boosted software dev

https://www.polso.info/im-sick-of-claudisms-future-ai-software-development
1•rizsyed1•26m ago•1 comments

AQAB: Anti-fascist blocklist QAnon, conspiracy, fake news, far-right, hate sites

https://codeberg.org/NotaInutilis/AQAB
2•Baljhin•34m ago•0 comments

Trump administration attacks Australia optout algorithm law in rare intervention

https://www.abc.net.au/news/2026-09-22/trump-administration-slams-digital-duty-of-care-bill/10718...
1•jyhrow•35m ago•0 comments

Fun: First-Class Functions, Currying, and a Surprise

https://blog.tinyinterpreters.dev/posts/fun-first-class-functions/
1•TheWiggles•46m ago•0 comments

Meta admits Muse's likeness to OpenClaw isn't a coincidence

https://techcrunch.com/2026/09/22/meta-admits-muses-likeness-to-openclaw-isnt-a-coincidence/
1•sbulaev•47m ago•1 comments

Cities across US oppose Trump FCC plan to preempt local broadband rules

https://arstechnica.com/tech-policy/2026/09/cities-across-us-oppose-trump-fcc-plan-to-preempt-loc...
5•pseudolus•48m ago•0 comments

Web-based IBM 1620 emulator and IPL-V from 1963

https://github.com/pkimpel/retro-1620
1•abrax3141•48m ago•1 comments

Ask HN: What do people do with Android phones once security updates end?

1•trombuance•49m ago•2 comments

Show HN: Birthed, a daily board of what mattered that locks at midnight

https://github.com/jasonepage/Birthed
1•jpage2•53m ago•1 comments

Reflections on object oriented design patterns (2026)

1•kooi•1h ago•1 comments

The new CC, an AI agent built for families

https://blog.google/innovation-and-ai/models-and-research/google-labs/cc-expanding-to-groups/
11•grigy•1h ago•3 comments

What anaesthetics are revealing about consciousness

https://www.bbc.com/future/article/20260921-what-general-anaesthetic-reveals-about-our-brains
3•nhatcher•1h ago•1 comments

NIST Crypto Reading Club

https://csrc.nist.gov/Projects/crypto-reading-club
2•segfaultbuserr•1h ago•0 comments

A 1996 dial-up chat room simulator (lolchat.rip)

https://lolchat.rip/
2•henrychannel•1h ago•1 comments

The ruble markup on AI tokens

https://infertrail.com/blog/ruble-markup-ai-tokens/
1•whitef0x•1h ago•0 comments

Temporal Straightening for Latent Planning

https://arxiv.org/abs/2603.12231
2•gmays•1h ago•0 comments

Sovereign Substrate Appliance: Layer-1 Edge Node on ARM64

https://richardkugel.substack.com/p/sovereign-substrate-appliance-re
1•drawono•1h ago•0 comments

Anyone using a Wispr Flow alternative that is non-cloud?

5•itsjeremiahs•1h ago•2 comments

MacPad: Touch Mac in iPad

https://github.com/dcmmc/macpad
1•dadoum•1h ago•1 comments

Ant Group releases finance-focused Ling-3.0-flash-Fin

https://artificialanalysis.ai/articles/ant-group-releases-finance-focused-ling-3-0-flash-fin
1•gmays•1h ago•0 comments
Open in hackernews

Reflections on object oriented design patterns (2026)

1•kooi•1h ago
We've been working on a embedded IoT many to many data pipeline and my past week's time has chasing down a gut feeling of "code smells" at the architectural level.

I've been wanting to extend the system, but have been running into way to many over-abstractions that did not sit well with me. With other team members also, there's a feeling of "how can this be better". FUD.

Sure, I could throw an LLM at it and it would create the right abstractions/de-abstrations and things would work. But that feels like putting band-aids on top of band-aids.

What were these code smells? It was a proliferation of these Rust micro traits which adjust a struct's interface to work with a variety of data channels.

Okay, but that's an observation and not yet a diagnosis.

I decided to pull out my hardcopy of Design Patterns which my mentor had me learn back in the day. (Do we still have mentors in a world of LLMs?)

Flipping through I found the diagnosis: Traits and over generalization had resulted in over "decoratorized" development.

The issues were concisely outlined in The Book:

" 1. A decorator and its component aren’t identical. A decorator acts as a transparent enclosure. But from an object identity point of view, a decorated component is not identical to the component itself. Hence you shouldn’t rely on object identity when you use decorators.

2. Lots of little objects. A design that uses Decorator often results in systems composed of lots of little objects that all look alike. The objects differ only in the way they are interconnected, not in their class or in the value of their variables. Although these systems are easy to customize by those who understand them, they can be hard to learn and debug."

Wow. These are the two smells I've been seeing:

1. A struct gets decorated via a trait impl in order to conform to an interface, but then the original struct information is lost.

2. So many structs, so many traits, so many generics.

So I have my diagnosis. Now the remediation. We need a central place to define data transformation and packet protocol between many heterogenous modules. Luckily I find the Mediator pattern later on in The Book.

"You can avoid these problems by encapsulating collective behavior in a separate mediator object. A mediator is responsible for controlling and coordinating the interactions of a group of objects. The mediator serves as an intermediary that keeps objects in the group from referring to each other explicitly. The objects only know the mediator, thereby reducing the number of interconnections."

So, today I've been drawing out the object diagram. Now I have clarity of the project in my head. Presented to the team. This cleared out the FUD for other as well...which is important to do as a team lead.

Some might say " Well, duh, just don't code bad in the first place. Design patterns are lame are over prescriptive."

Well, in the real world, especially with agile development, progress is made with architecture being a side thought or even an emergent property.

Sometimes that emergence is smelly.

Comments

MiroslavPokorny•24m ago
> Sure, I could throw an LLM at it and it would create the right abstractions/de-abstrations and things would work. But that feels like putting band-aids on top of band-aids.

A lot of assumptions and if you believe them to be true, why dont you follow thru ?