Johann Dirry

Results 95 comments of Johann Dirry

Verbose output: ```powershell Install-Module posh-git -Scope CurrentUser -Force -Verbose ``` ```txt VERBOSE: Using the provider 'PowerShellGet' for searching packages. VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all...

I am against replacing a NaN result simply with a 0. This is because in some cases the result really should be NaN: when one of the values in the...

engineering notation can be helpful in such cases. ie. ``` 0.000036/7 ``` results in 5.142,857 • 10-6 which is easier to comprehend and still compact.

> I was trying to estimate the period of a signal in microseconds, so 0.0003898... would have been much more intuitive at a glance. I think that the engineering presentation...

indeed they should. However, it might cause a breaking change. You would have to ensure that the code still compiles after changing something. I'd recommend to produce a warning rather...

Assuming that the reformatting happens at a solution-wide scale, the `InternalsVisibleToAttribute` shouldn't be a problem. But that is not guaranteed. Reformatting of public and internal names is always a problem....

I guess the support for OAuth App Credentials might be required, because the credentials of the bot have the proper access rights. #3

I am unsure if logging of every request in case of an DDoS attack is really the best idea. Maybe it is acceptable to just count the number of such...

Instead of a default timeout, there should be - no eager execution. the user needs to explicitly apply an `Expression.simplify` function - calculations should be done with `CancellationToken` support Using...

I am wondering if we could compile [SymPy](http://www.sympy.org/) to .NET using [IronPython](http://ironpython.net/). This would erase the need for the user to install a Python Environment (which is not possible on...