Alexander Prokhorov

Results 81 comments of Alexander Prokhorov

My changes to the algorithm don't restrict removal of long sequences of actual duplicates. An actual sequence with duplicates would look like this: 1, 20, 40, 50, **100, 101, 98,...

@paulmelnikow Like I said, they have: 1. Badge API which generates SVG containing all necessary data (I think it's either "passing" or "failing", haven't seen other statuses). 2. Actual API...

@paulmelnikow Their badge provides no options like text, icon, colors etc. I rely on [data URIs to generate pretty badges](https://github.com/Athari/CsConsoleFormat#csconsoleformat-advanced-formatting-of-console-output-for-net), so I miss icon option in particular. (Before you ask...

### Samples Checked the sources... The process list sample tries to set buffer and window width, but only in debug mode with an attached debugger and ignores if it throws...

Hm... Something is wrong specifically with the `ConsoleTest` app. The `ProcessManager` app works fine at any window size.

Replaced setting with getting: ```c# Console.WriteLine($"Console.BufferWidth = {Console.BufferWidth}"); Console.WriteLine($"Console.WindowWidth = {Console.WindowWidth}"); ``` There's a problem with the Windows Terminal app. Sometimes it forgets to resize the buffer and .NET sees...

Update answers once API stabilizes.

Please post a complete example which reproduces the problem ([MCVE](https://stackoverflow.com/help/mcve)). In case you've put the element with negative margins at the root, you won't get the library to output text...

What you need is a horizonal stacking container: ```c# var doc = new Document( new Stack { Orientation = Horizontal, Children = { resultsHeaderSpan, resultsTableWithCountDiv, }, } ); ``` You...

@wangshuai-007 The library assumes a monospace font as it's the only way to reliably align text using spaces. The font on your screen is kinda-monospace-but-not-really, with Chinese characters being exactly...