HackerTrans
TopNewTrendsCommentsPastAskShowJobs

F-W-M

no profile record

Submissions

[untitled]

1 points·by F-W-M·4 months ago·0 comments

comments

F-W-M
·3 months ago·discuss
I know what a vtable is, but what is vtable-based effect programming?
F-W-M
·4 months ago·discuss
How does this relate to e.g. the research around https://docs.rs/adapton/latest/adapton/ or https://github.com/janestreet/incremental?
F-W-M
·4 months ago·discuss
Thanks alot.

How easy one can debug such a systems easily outweighs the costs, if you have a low number of separate services.
F-W-M
·5 months ago·discuss
How do you structure your program to do this?

I had huge success writing a trading system where everything went through the same `on_event(Inputs) -> Outputs` function of the core and a thin shell was translating everything to inputs and the outputs to actions. I actually had a handful of these components communicating via message passing.

This worked rather well as most of the input is async messages anyway, but building anything else this way feels very tiresome.
F-W-M
·5 months ago·discuss
I think I read here on hackernews that the Mona Lisa doesn't look at all like it did when it was freshly made. If I look at the restored copy https://en.wikipedia.org/wiki/Mona_Lisa_(Prado)#, I at least find the silk very nice.
F-W-M
·5 months ago·discuss
I guess it's just a bad translation and means IT sector. German word: "IT-Branche"
F-W-M
·5 months ago·discuss
If you need to support multiple versions at the same time, you need to extend TBD in some way.

We just cherry-picked stuff back to release branches, if we needed a fix.
F-W-M
·10 months ago·discuss
I have all of it on my keyboard: neo-layout.org
F-W-M
·last year·discuss
Wehrmacht was mostly supplied by horses.
F-W-M
·2 years ago·discuss
> DDD is against the idea of having a single unified model; instead it divides a large system into bounded contexts, each of which have their own model.

If you have a large system it makes sense to divide it into smaller independent pieces. If you have a (micro)-service architecture you have distinct services, in a monolith you might have modules.

It is a hard problem to know where exactly the boundaries between services or modules should be, in any case DDD calls the things that make sense to decouple bounded contexts.