|
You are here |
coder-mike.com | ||
| | | | |
www.nequalsonelifestyle.com
|
|
| | | | | Last year as I really got into doing Dart and Flutter programming I decided I needed a library that got me the same behaviors I had with the Result Monad library I had in Kotlin. In November I published the 1.x version of it which I wrote about in this post . There were some aspects which I thought were a little clunky even then. As I have been using this on a bigger project now I found some other shortcomings as well. This was the impetus needed for making those improvements and pushing out a 2.0 version of the library. This post goes through those improvements. The library source code and issue tracker is here with the pub.dev entry here . | |
| | | | |
fvsch.com
|
|
| | | | | I've been wanting to learn XState, a JavaScript state machine library. I had one exercise in mind: porting the hand-rolled state code in the small click precision game I built last year, if possible. | |
| | | | |
dmitripavlutin.com
|
|
| | | | | A pure function always returns the same value for the same arguments and produces no side effects. | |
| | | | |
gpfault.net
|
|
| | | [AI summary] The text provides a comprehensive implementation of a dependency injection system using C++11 and variadic templates. The system allows clients to define services and their dependencies, then automatically creates and injects the services in the correct order using topological sorting. Key components include the `injector` class for managing service instances, the `di_config` class for configuring dependencies, and the `generic_instance_factory` for simplifying service creation. | ||