Mike Finch

Results 13 comments of Mike Finch

@nelsonic I found this trying to resolve the codecov badge showing unknown in Github, when codecov.io has coverage metrics, and I noticed the dwyl/stars#3 also shows codecov status as unknown....

Thanks, this pointed me in the correct direction. I just had to add ?token=:graph_token to the end of my request. https://docs.codecov.io/reference#about-graphs

I am also seeing this issue: https://stackoverflow.com/questions/65643865/modulenotfounderror-no-module-named-azure-storage-azure-function/65645973#65645973

I don't know how valuable it is to confirm the example. The goal of exercism is to help people write better code, and most people never see the example. Would...

I am seeing the same thing on Windows10 with dotnet6 isolated-process and a real storage queue. Fixing the URI resolved. https://github.com/microsoftdocs/azure-docs/issues/83529

I am facing the same issue on Windows10. Using the samples in the sdk. dotnet build MSBuild version 17.3.2+561848881 for .NET Determining projects to restore... All projects are up-to-date for...

> sessionInfo() R version 3.4.3 (2017-11-30) Platform: x86_64-apple-darwin15.6.0 (64-bit) Running under: macOS Sierra 10.12.6 Matrix products: default BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] stats graphics...

I'll try, but isn't the expected result that if you try to compare two large numbers beyond the size of an Integer you lose precision?

> sessionInfo() R version 3.5.1 (2018-07-02) Platform: x86_64-apple-darwin15.6.0 (64-bit) Running under: macOS Sierra 10.12.6 Matrix products: default BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib LAPACK: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libRlapack.dylib locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] stats graphics...

Same behavior, this should fail. library(testthat) > expect_equal(18446744073709551616, 18446744073709551615) The solution is: library("gmp") library("testthat") expect_equal(as.bigz(2)^64, as.bigz(2)^64-1) Error: as.bigz(2)^64 not equal to as.bigz(2)^64 - 1. 'target'(bigz) and 'current' differ