This is the eleventh part of the Async Wandering series. For your convenience you can find other parts in the table of contents in Part 1 – Why creating Form from WinForms in unit tests breaks async? We continue exploring async code. Last time we saw how to use fibers to wait tasks. This effectively … Continue reading Async Wandering Part 11 — Wrapping fibers in context
Month: December 2020
Rx — Custom traffic shaper
Regular Rx Buffer(200) emits data every 200 milliseconds. Let’s implement an operator which will emit data each 200 milliseconds or immediately if nothing was emitted in last interval. It’s like a traffic shaper which will give you data as soon as possible bot not more often than each 200 millis. Sample implementation: Output: This is … Continue reading Rx — Custom traffic shaper
Changing user password from command line in Windows
If you search the Internet how to change the password in Windows using command line you’ll easily find command like one below: DO NOT USE IT! It doesn’t change the password, it resets it. When you reset the password this way, all things encrypted with user password are no longer accessible (unless you have the … Continue reading Changing user password from command line in Windows
Chatterbox Part 8 — Integrations
This is the eighth part of the Chatterbox series. For your convenience you can find other parts in the table of contents in Part 1 – Origins When working with software we typically need to integrate with other components — whether some external software like database, or some libraries we incorporate and use in our … Continue reading Chatterbox Part 8 — Integrations