frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Sick as a Dog

https://privatebank.jpmorgan.com/nam/en/insights/latest-and-featured/eotm/sick-as-a-dog
1•johntfella•3m ago•0 comments

Why operating system package maintainers matter

https://briancallahan.net/blog/20250813.html
2•LorenDB•7m ago•0 comments

Structured binding packs in GCC 16

https://old.reddit.com/r/cpp/comments/1moebfm/structured_binding_packs_in_gcc_16/
2•ibobev•10m ago•0 comments

Show HN: Cromulant

https://github.com/madprops/cromulant/blob/main/screenshots.md
2•Toby1VC•11m ago•0 comments

Reflections on LeetCode and LSAT in my 30s

https://andreagao.com/posts/reflection-standardized-tests/
2•gytrcrt•12m ago•0 comments

China Uses the Cppcc to Conduct "United Front Diplomacy" with North Korea

https://www.38north.org/2025/08/keeping-the-door-open-how-china-uses-the-cppcc-to-conduct-united-front-diplomacy-with-north-korea/
2•EA-3167•14m ago•0 comments

Great Ideas in Theoretical Computer Science

https://ocw.mit.edu/courses/6-080-great-ideas-in-theoretical-computer-science-spring-2008/
2•ibobev•14m ago•0 comments

A poet's long-forgotten daughter created the first algorithm

https://adamgrant.micro.blog/2025/08/13/how-a-poets-longforgotten-daughter.html
2•hidelooktropic•15m ago•3 comments

sshrc: Bring your .bashrc, .vimrc, etc. with you when you SSH

https://github.com/cdown/sshrc
2•thunderbong•18m ago•0 comments

Kubernetes will solve YAML headaches with KYAML

https://thenewstack.io/kubernetes-is-getting-a-better-yaml/
2•thecosmicfrog•18m ago•0 comments

A virtual machine with native AI instructions

3•noreplydev•18m ago•0 comments

Realbotix

https://www.realbotix.com/
2•fcpguru•21m ago•0 comments

Ask HN: What's stopping Guix from building static binaries for various targets?

2•tetris11•22m ago•0 comments

Vibe Coding Awareness Month

https://hellotonic.com/blog/vibe-coding
1•chadmckenna•25m ago•1 comments

Management of IP numbers by peg-DHCP (1998)

https://datatracker.ietf.org/doc/html/rfc2322
1•sjmulder•31m ago•0 comments

Max Read's 'A Literary History of Fake Texts in Apple's Marketing Materials'

https://daringfireball.net/2025/08/max_read_literary_history_fake_apple_texts
1•Bogdanp•34m ago•0 comments

Z-Wave Reborn – Home Assistant Connect ZWA-2

https://www.home-assistant.io/blog/2025/08/13/home-assistant-connect-zwa-2/
2•mike-cardwell•34m ago•0 comments

Is McKinsey losing its crown to AI? [video]

https://www.youtube.com/watch?v=QXAXNcRs7gQ
2•mgh2•37m ago•1 comments

Amazon Ads Multi-Touch Attribution

https://arxiv.org/abs/2508.08209
1•dakial1•38m ago•0 comments

Show HN: Cinematic Rolplay with Wan 2.2

https://www.reveriedr.com
1•amit0365•38m ago•0 comments

Ask HN: Is there an AI that can read code aloud and explain it?

2•djfobbz•39m ago•0 comments

Evals as Code: CI for LLMs with Dagger

https://dagger.io/blog/evals-as-code
2•shad42•41m ago•1 comments

Ask HN: Is https://web.whatsapp.com/ loading for you atm?

2•gjvc•41m ago•2 comments

A Good Find

https://justinjackson.ca/good-find
1•mooreds•43m ago•0 comments

If You Could Fix One Thing About AI Search, What Would It Be?

1•zyruh•44m ago•2 comments

Eca: Editor Code Assistant – AI pair programming capabilities agnostic of editor

https://github.com/editor-code-assistant/eca
17•simonpure•45m ago•0 comments

Show HN: Deploy Any Web App Directly from Claude Code

https://disco.cloud/blog/deploy-any-web-app-directly-from-claude-code/
1•gregsadetsky•47m ago•0 comments

The Tulpa in Your Pocket

https://default.blog/p/the-tulpa-in-your-pocket
1•exolymph•48m ago•0 comments

Water Cremation (Alkaline Hydrolysis)

https://en.wikipedia.org/wiki/Water_cremation
3•1659447091•48m ago•1 comments

Temporary tattoo could detect an unwanted drug in your drink

https://phys.org/news/2025-07-temporary-tattoo-unwanted-drug.html
3•wglb•53m ago•1 comments
Open in hackernews

ManagedCode.Communication – a complete Result Pattern project for .NET

https://github.com/managedcode/Communication
7•managedcode•13h ago

Comments

managedcode•13h ago
At Managed Code, we’ve built ManagedCode.Communication with a clear goal — to provide a full-featured, production-ready Result Pattern implementation in .NET, all in a single project. The project contains multiple NuGet packages for specific scenarios (core library, ASP.NET Core integration, Orleans integration, SignalR integration), but they all share the same foundation and philosophy.

Instead of throwing exceptions, your methods return Result or Result<T> — explicit, type-safe outcomes that are easy to compose with Map, Bind, Match, Tap, and other railway-oriented methods. For web APIs, failures can be automatically converted into RFC 7807 Problem Details responses, providing clients with structured error information (type, title, detail, status, plus custom extensions). For collections, CollectionResult<T> combines data with paging metadata in a single, consistent return type.

The idea is to have everything you might need for Result Pattern development in one place: functional composition methods, rich error modeling, ready-to-use framework integrations — without having to stitch together multiple third-party libraries or hand-roll adapters for production.

On the roadmap: first-class support for commands (command handlers working directly with Result types), idempotency strategies for safe retries in distributed systems, and extended logging to trace a result’s journey through complex workflows (API → SignalR → Orleans → client).

We’re looking for honest feedback from developers who use Result Patterns in real projects. What’s missing? What would make this your go-to solution instead of writing your own?

jerleth•11h ago
I just glanced at the page, so I might be off, but to me it looks like this is only a solution for the special case of exceptions?

Why would I want to use this instead of a more general approach to discriminated unions, eg. like: https://github.com/mcintyre321/OneOf

If I would use your library I would need a separate solution for every other case.

Take care, Martin