HackerTrans
TopNewTrendsCommentsPastAskShowJobs

SamLeBarbare

no profile record

Submissions

Ask HN: Is Blazor a bad choice in 2026 for a new .NET product UI?

alexaka1.dev
2 points·by SamLeBarbare·hace 6 meses·1 comments

Sampling and structured outputs in LLMs

parthsareen.com
234 points·by SamLeBarbare·hace 10 meses·92 comments

comments

SamLeBarbare
·hace 3 meses·discuss
Conway’s law still applies.

Good architecture, actor models, and collaboration patterns do not emerge magically from “more agents”.

Maybe what’s missing is the architect’s role.
SamLeBarbare
·hace 4 meses·discuss
I really like the framing here (via Richard Sennett / Roland van der Vorst): craft is a relationship with the material. In software, that “material consciousness” is built by touching the system—writing code, feeling the resistance of constraints, refactoring, modeling the domain until it clicks.

If we outsource the whole “hands that think” loop to agents, we may ship faster… but we also risk losing the embodied understanding that lets us explain why something is hard, where the edges are, and how to invent a better architecture instead of accepting “computer says no.”

I hope we keep making room for “luxury software”: not in price, but in care—the Swiss-watch mentality. Clean mechanisms, legible invariants, debuggable behavior, and the joy of building something you can trust and maintain for years. Hacker News needs more of that energy.
SamLeBarbare
·hace 6 meses·discuss
Hi HN,

I’m evaluating UI options for a new .NET product and I’m struggling to find balanced, experience-based pros/cons about Blazor (Server / WASM / Hybrid) compared to alternatives (React/Vue/Angular + API, MAUI/WinUI/WPF, etc.).

I’ve seen critical takes like this one: https://alexaka1.dev/blog/blazor-sucks

…but I’d love to hear from people who have actually shipped and maintained Blazor apps.

A few questions I’m trying to answer:

In practice, where does Blazor shine (team composition, product type, deployment model)?

What are the real pain points after 6–18 months (tooling, performance, debugging, interop, upgrades)?

Any “gotchas” that only appear at scale (large component trees, state management, long-lived connections, memory)?

If you had to start a new product today, would you pick Blazor again? If not, what would you choose and why?

Context: this is a long-lived product (multi-year), typical CRUD + some rich interactions, and we care about maintainability and developer velocity.

Thanks for any first-hand advice.
SamLeBarbare
·hace 6 meses·discuss
sqlite + FTS + sqlite-vec + local LLM for reranking results (reasoning model)
SamLeBarbare
·hace 8 meses·discuss
We add holes for USA only, because 39% of taxes on our exportations.
SamLeBarbare
·hace 9 meses·discuss
Mix-up in title... it's not the Australian gov. Albanian mix-up, again, "arrêter de vous trump'er svp"
SamLeBarbare
·hace 10 meses·discuss
This post dives into that "black magic" layer, especially in the context of emerging thinking models and tools like Ollama or GPT-OSS. It’s a thoughtful look at why sampling, formatting, and standardization are not just implementation details, but core to the future of working with LLMs.
SamLeBarbare
·hace 10 meses·discuss
CRDTs and HLCs often feel like over-engineering. In most business/management apps, it’s rare for two people to edit the same piece of data at the exact same time.

A simpler approach works surprisingly well:

Store atomic mutations locally (Redux-like) in SQLite.

Sync those mutations to a central server that merges with last-writer-wins.

Handle the few conflicts that do occur through clear ownership rules and some UI/UX design.

This makes local-first behave more like Git: clients work offline, push their “commits,” and the server decides the truth. Most of the complexity disappears if the data model is designed with collaboration and ownership in mind.